ddnet/src/engine/server/sql_string_helpers.cpp
2017-08-04 22:38:22 +02:00

147 lines
2.4 KiB
C++

#include <cmath>
#include <cstring>
#include <ctime>
#include <base/system.h>
#include "sql_string_helpers.h"
void sqlstr::FuzzyString(char *pString, int size)
{
char * newString = new char [size * 4 - 1];
int pos = 0;
for(int i = 0; i < size; i++)
{
if(!pString[i])
break;
newString[pos++] = pString[i];
if (pString[i] != '\\' && str_utf8_isstart(pString[i+1]))
newString[pos++] = '%';
}
newString[pos] = '\0';
str_copy(pString, newString, size);
delete [] newString;
}
// anti SQL injection
void sqlstr::ClearString(char *pString, int size)
{
char *newString = new char [size * 2 - 1];
int pos = 0;
for(int i = 0; i < size; i++)
{
if(pString[i] == '\\')
{
newString[pos++] = '\\';
newString[pos++] = '\\';
}
else if(pString[i] == '\'')
{
newString[pos++] = '\\';
newString[pos++] = '\'';
}
else if(pString[i] == '"')
{
newString[pos++] = '\\';
newString[pos++] = '"';
}
else
{
newString[pos++] = pString[i];
}
}
newString[pos] = '\0';
str_copy(pString, newString, size);
delete [] newString;
}
void sqlstr::AgoTimeToString(int AgoTime, char *pAgoString)
{
char aBuf[20];
int aTimes[7] =
{
60 * 60 * 24 * 365 ,
60 * 60 * 24 * 30 ,
60 * 60 * 24 * 7,
60 * 60 * 24 ,
60 * 60 ,
60 ,
1
};
char aaNames[7][6] =
{
"year",
"month",
"week",
"day",
"hour",
"min",
"sec"
};
int Seconds = 0;
char aName[6];
int Count = 0;
int i = 0;
// finding biggest match
for(i = 0; i < 7; i++)
{
Seconds = aTimes[i];
strcpy(aName, aaNames[i]);
Count = floor((float)AgoTime/(float)Seconds);
if(Count != 0)
{
break;
}
}
if(Count == 1)
{
str_format(aBuf, sizeof(aBuf), "%d %s", 1 , aName);
}
else
{
str_format(aBuf, sizeof(aBuf), "%d %ss", Count , aName);
}
strcat(pAgoString, aBuf);
if (i + 1 < 7)
{
// getting second piece now
int Seconds2 = aTimes[i+1];
char aName2[6];
strcpy(aName2, aaNames[i+1]);
// add second piece if it's greater than 0
int Count2 = floor((float)(AgoTime - (Seconds * Count)) / (float)Seconds2);
if (Count2 != 0)
{
if(Count2 == 1)
{
str_format(aBuf, sizeof(aBuf), " and %d %s", 1 , aName2);
}
else
{
str_format(aBuf, sizeof(aBuf), " and %d %ss", Count2 , aName2);
}
strcat(pAgoString, aBuf);
}
}
}
void sqlstr::GetTimeStamp(char *pDest, unsigned int Size)
{
std::time_t Rawtime;
std::time(&Rawtime);
str_timestamp_ex(Rawtime, pDest, Size, FORMAT_SPACE);
}