Add geoip_country_ex, mark geoip_country as deprecated, and do some cleanup

This commit is contained in:
Arkshine 2015-02-07 16:18:39 +01:00
parent 51adb7385c
commit 5241fdf673
3 changed files with 85 additions and 59 deletions

View File

@ -44,7 +44,7 @@ void OnGeoipCommand()
{ {
if (!HandleDB.filename) if (!HandleDB.filename)
{ {
printf("\n Database is not loaded.\n"); MF_PrintSrvConsole("\n Database is not loaded.\n");
return; return;
} }
@ -96,7 +96,7 @@ void OnGeoipCommand()
{ {
if (!HandleDB.filename) if (!HandleDB.filename)
{ {
printf("\n Database is not loaded.\n\n"); MF_PrintSrvConsole("\n Database is not loaded.\n\n");
return; return;
} }
@ -104,7 +104,7 @@ void OnGeoipCommand()
if (num_args < 3) if (num_args < 3)
{ {
printf("\n An IP address must be provided.\n\n"); MF_PrintSrvConsole("\n An IP address must be provided.\n\n");
return; return;
} }
@ -117,7 +117,7 @@ void OnGeoipCommand()
if (gai_error != 0 || mmdb_error != MMDB_SUCCESS || !result.found_entry) if (gai_error != 0 || mmdb_error != MMDB_SUCCESS || !result.found_entry)
{ {
printf("\n Either look up failed or no found result.\n\n"); MF_PrintSrvConsole("\n Either look up failed or no found result.\n\n");
return; return;
} }
@ -126,7 +126,7 @@ void OnGeoipCommand()
if ((status = MMDB_get_entry_data_list(&result.entry, &entry_data_list)) != MMDB_SUCCESS || entry_data_list == NULL) if ((status = MMDB_get_entry_data_list(&result.entry, &entry_data_list)) != MMDB_SUCCESS || entry_data_list == NULL)
{ {
printf("\n Could not retrieve data list - %s.\n\n", MMDB_strerror(status)); MF_PrintSrvConsole("\n Could not retrieve data list - %s.\n\n", MMDB_strerror(status));
return; return;
} }
@ -158,13 +158,13 @@ void OnGeoipCommand()
} }
else else
{ {
printf("\n"); MF_PrintSrvConsole("\n");
printf(" Usage: geoip <command> [argument]\n"); MF_PrintSrvConsole(" Usage: geoip <command> [argument]\n");
printf(" Commands:\n"); MF_PrintSrvConsole(" Commands:\n");
printf(" version - display geoip database metadata\n"); MF_PrintSrvConsole(" version - display geoip database metadata\n");
printf(" dump <ip> [output file] - dump all data from an IP address formatted in a JSON-ish fashion.\n"); MF_PrintSrvConsole(" dump <ip> [output file] - dump all data from an IP address formatted in a JSON-ish fashion.\n");
printf(" An output file is mod-based and if not provided, it will print in the console.\n"); MF_PrintSrvConsole(" An output file is mod-based and if not provided, it will print in the console.\n");
printf("\n"); MF_PrintSrvConsole("\n");
} }
} }

View File

@ -100,12 +100,30 @@ static cell AMX_NATIVE_CALL amx_geoip_code3_ex(AMX *amx, cell *params)
return 1; return 1;
} }
// native geoip_country(const ip[], result[], len, id = -1); // native geoip_country(const ip[], result[], len = 45);
// Deprecated.
static cell AMX_NATIVE_CALL amx_geoip_country(AMX *amx, cell *params) static cell AMX_NATIVE_CALL amx_geoip_country(AMX *amx, cell *params)
{ {
int length; int length;
char *ip = stripPort(MF_GetAmxString(amx, params[1], 0, &length)); char *ip = stripPort(MF_GetAmxString(amx, params[1], 0, &length));
const char *path[] = { "country", "names", "en", NULL };
const char *country = lookupString(ip, path, &length);
if (!country)
{
return MF_SetAmxString(amx, params[2], "error", params[3]);
}
return MF_SetAmxStringUTF8Char(amx, params[2], country, length, params[3] + 1);
}
// native geoip_country_ex(const ip[], result[], len, id = -1);
static cell AMX_NATIVE_CALL amx_geoip_country_ex(AMX *amx, cell *params)
{
int length;
char *ip = stripPort(MF_GetAmxString(amx, params[1], 0, &length));
int id = -1; int id = -1;
if (*params / sizeof(cell) >= 4) if (*params / sizeof(cell) >= 4)
{ {
@ -115,13 +133,7 @@ static cell AMX_NATIVE_CALL amx_geoip_country(AMX *amx, cell *params)
const char *path[] = { "country", "names", getLang(id), NULL }; const char *path[] = { "country", "names", getLang(id), NULL };
const char *country = lookupString(ip, path, &length); const char *country = lookupString(ip, path, &length);
if (!country) return MF_SetAmxStringUTF8Char(amx, params[2], country ? country : "", length, params[3] + 1);
{
MF_SetAmxString(amx, params[2], "error", params[3]); // to keep compatibility with previous version
return 0;
}
return MF_SetAmxStringUTF8Char(amx, params[2], country, length, params[3] + 1);
} }
// native geoip_city(const ip[], result[], len, id = -1); // native geoip_city(const ip[], result[], len, id = -1);
@ -260,13 +272,14 @@ static cell AMX_NATIVE_CALL amx_geoip_continent_name(AMX *amx, cell *params)
AMX_NATIVE_INFO GeoipNatives[] = AMX_NATIVE_INFO GeoipNatives[] =
{ {
{ "geoip_code2", amx_geoip_code2 }, { "geoip_code2" , amx_geoip_code2 }, // Deprecated
{ "geoip_code3", amx_geoip_code3 }, { "geoip_code3" , amx_geoip_code3 }, // Deprecated
{ "geoip_code2_ex" , amx_geoip_code2_ex }, { "geoip_code2_ex" , amx_geoip_code2_ex },
{ "geoip_code3_ex" , amx_geoip_code3_ex }, { "geoip_code3_ex" , amx_geoip_code3_ex },
{ "geoip_country", amx_geoip_country }, { "geoip_country" , amx_geoip_country }, // Deprecated
{ "geoip_country_ex" , amx_geoip_country_ex },
{ "geoip_city" , amx_geoip_city }, { "geoip_city" , amx_geoip_city },
{ "geoip_region_code" , amx_geoip_region_code }, { "geoip_region_code" , amx_geoip_region_code },

View File

@ -52,7 +52,8 @@ native bool:geoip_code2_ex(const ip[], result[3]);
native bool:geoip_code3_ex(const ip[], result[4]); native bool:geoip_code3_ex(const ip[], result[4]);
/** /**
* Lookup the two character country code for a given IP address. * Lookup the two character country code for a given IP address. Sets the buffer to "error" on
* an unsuccessful lookup.
* *
* @deprecated This native will overflow the buffer by one cell on an unknown ip lookup! * @deprecated This native will overflow the buffer by one cell on an unknown ip lookup!
* Use geoip_code2_ex instead. * Use geoip_code2_ex instead.
@ -60,13 +61,14 @@ native bool:geoip_code3_ex(const ip[], result[4]);
* @param ip The IP address to lookup. * @param ip The IP address to lookup.
* @param result The result buffer. * @param result The result buffer.
* *
* @return 1 on a successful lookup, 0 otherwise. * @return The result length.
*/ */
#pragma deprecated Use geoip_code2_ex() instead. #pragma deprecated Use geoip_code2_ex() instead.
native geoip_code2(const ip[], ccode[3]); native geoip_code2(const ip[], ccode[3]);
/** /**
* Lookup the three character country code for a given IP address. * Lookup the three character country code for a given IP address. Sets the buffer to "error" on
* an unsuccessful lookup.
* *
* @deprecated This native will overflow the buffer by one cell on an unknown ip lookup! * @deprecated This native will overflow the buffer by one cell on an unknown ip lookup!
* Use geoip_code3_ex instead. * Use geoip_code3_ex instead.
@ -74,7 +76,7 @@ native geoip_code2(const ip[], ccode[3]);
* @param ip The IP address to lookup. * @param ip The IP address to lookup.
* @param result The result buffer. * @param result The result buffer.
* *
* @return 1 on a successful lookup, 0 otherwise. * @return The result length.
*/ */
#pragma deprecated Use geoip_code3() instead. #pragma deprecated Use geoip_code3() instead.
native geoip_code3(const ip[], result[4]); native geoip_code3(const ip[], result[4]);
@ -86,6 +88,18 @@ native geoip_code3(const ip[], result[4]);
* @param ip The IP address to lookup. * @param ip The IP address to lookup.
* @param result The result of the geoip lookup. * @param result The result of the geoip lookup.
* @param len The maximum length of the result buffer. * @param len The maximum length of the result buffer.
*
* @return The result length.
*/
#pragma deprecated Use geoip_country_ex() instead.
native geoip_country(const ip[], result[], len = 45);
/**
* Lookup the full country name for the given IP address.
*
* @param ip The IP address to lookup.
* @param result The result of the geoip lookup.
* @param len The maximum length of the result buffer.
* @param id An optional player's index in order to return the result * @param id An optional player's index in order to return the result
* in the player's language, if supported. * in the player's language, if supported.
* -1: the default language, which is english. * -1: the default language, which is english.
@ -94,8 +108,7 @@ native geoip_code3(const ip[], result[4]);
* *
* @return The result length on successful lookup, 0 otherwise. * @return The result length on successful lookup, 0 otherwise.
*/ */
native geoip_country(const ip[], result[], len = 45, id = -1); native geoip_country_ex(const ip[], result[], len, id = -1);
/** /**
* Look up the full city name for the given IP address. * Look up the full city name for the given IP address.