added some more sqlx stocks
upgraded admin.sma to sqlx fixed various amx_Addadmin bugs
This commit is contained in:
parent
ad0eafe66a
commit
dafc10d878
@ -38,7 +38,7 @@
|
||||
#include <amxmodx>
|
||||
#include <amxmisc>
|
||||
#if defined USING_SQL
|
||||
#include <dbi>
|
||||
#include <sqlx>
|
||||
#endif
|
||||
|
||||
#define MAX_ADMINS 64
|
||||
@ -90,6 +90,7 @@ public plugin_init()
|
||||
register_cvar("amx_sql_user", "root")
|
||||
register_cvar("amx_sql_pass", "")
|
||||
register_cvar("amx_sql_db", "amx")
|
||||
register_cvar("amx_sql_type", "mysql")
|
||||
|
||||
register_concmd("amx_reloadadmins", "cmdReload", ADMIN_CFG)
|
||||
register_concmd("amx_addadmin", "addadminfn", ADMIN_RCON, "<playername|auth> <accessflags> [password] [authtype] - automatically add specified player as an admin to users.ini")
|
||||
@ -120,7 +121,7 @@ public addadminfn(id, level, cid)
|
||||
|
||||
new idtype = ADMIN_STEAM | ADMIN_LOOKUP
|
||||
|
||||
if (read_argc() > 4)
|
||||
if (read_argc() >= 5)
|
||||
{
|
||||
new t_arg[16]
|
||||
read_argv(4, t_arg, 15)
|
||||
@ -136,6 +137,9 @@ public addadminfn(id, level, cid)
|
||||
else if (equali(t_arg, "name") || equali(t_arg, "nick"))
|
||||
{
|
||||
idtype = ADMIN_NAME
|
||||
|
||||
if (equali(t_arg, "name"))
|
||||
idtype |= ADMIN_LOOKUP
|
||||
} else {
|
||||
console_print(id, "[%s] Unknown idtype ^"%s^", use one of: steamid, ip, name", PLUGINNAME, t_arg)
|
||||
return PLUGIN_HANDLED
|
||||
@ -168,6 +172,10 @@ public addadminfn(id, level, cid)
|
||||
break
|
||||
}
|
||||
}
|
||||
if (player < 1)
|
||||
{
|
||||
idtype &= ~ADMIN_LOOKUP
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (idtype & ADMIN_NAME)
|
||||
@ -176,6 +184,8 @@ public addadminfn(id, level, cid)
|
||||
|
||||
if (player)
|
||||
idtype |= ADMIN_LOOKUP
|
||||
else
|
||||
idtype &= ~ADMIN_LOOKUP
|
||||
}
|
||||
else if (idtype & ADMIN_IPADDR)
|
||||
{
|
||||
@ -215,7 +225,7 @@ public addadminfn(id, level, cid)
|
||||
read_argv(2, flags, 63)
|
||||
|
||||
new password[64]
|
||||
if (read_argc() == 4)
|
||||
if (read_argc() >= 4)
|
||||
read_argv(3, password, 63)
|
||||
|
||||
new auth[33]
|
||||
@ -265,18 +275,12 @@ public addadminfn(id, level, cid)
|
||||
AddAdmin(id, auth[], accessflags[], password[], flags[])
|
||||
{
|
||||
#if defined USING_SQL
|
||||
new host[64], user[32], pass[32], db[128], table[32], error[128], dbType[7]
|
||||
new error[128], errno
|
||||
|
||||
dbi_type(dbType, 6)
|
||||
get_cvar_string("amx_sql_host", host, 63)
|
||||
get_cvar_string("amx_sql_user", user, 31)
|
||||
get_cvar_string("amx_sql_pass", pass, 31)
|
||||
get_cvar_string("amx_sql_db", db, 127)
|
||||
get_cvar_string("amx_sql_table", table, 31)
|
||||
new Handle:info = SQL_MakeStdTuple()
|
||||
new Handle:sql = SQL_Connect(info, errno, error, 127)
|
||||
|
||||
new Sql:sql = dbi_connect(host, user, pass, db, error, 127)
|
||||
|
||||
if (sql <= SQL_FAILED)
|
||||
if (sql == Empty_Handle)
|
||||
{
|
||||
server_print("[AMXX] %L", LANG_SERVER, "SQL_CANT_CON", error)
|
||||
//backup to users.ini
|
||||
@ -325,30 +329,29 @@ AddAdmin(id, auth[], accessflags[], password[], flags[])
|
||||
console_print(id, "[%s] Failed writing to %s!", PLUGINNAME, configsDir)
|
||||
#if defined USING_SQL
|
||||
}
|
||||
new Result:Res = dbi_query(sql, "SELECT * FROM `%s` WHERE (`auth` = '%s')", table, auth)
|
||||
|
||||
if (Res == RESULT_FAILED)
|
||||
new table[32]
|
||||
|
||||
get_cvar_string("amx_sql_table", table, 31)
|
||||
|
||||
new Handle:query = SQL_PrepareQuery(sql, "SELECT * FROM `%s` WHERE (`auth` = '%s')", table, auth)
|
||||
|
||||
if (!SQL_Execute(query))
|
||||
{
|
||||
dbi_error(sql, error, 127)
|
||||
SQL_QueryError(query, error, 127)
|
||||
server_print("[AMXX] %L", LANG_SERVER, "SQL_CANT_LOAD_ADMINS", error)
|
||||
console_print(id, "[AMXX] %L", LANG_SERVER, "SQL_CANT_LOAD_ADMINS", error)
|
||||
dbi_close(sql)
|
||||
|
||||
return
|
||||
}
|
||||
else if (Res > RESULT_NONE)
|
||||
{
|
||||
} else if (SQL_NumResults(query)) {
|
||||
console_print(id, "[%s] %s already exists!", PLUGINNAME, auth)
|
||||
dbi_free_result(Res)
|
||||
dbi_close(sql)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
} else {
|
||||
console_print(id, "Adding to database:^n^"%s^" ^"%s^" ^"%s^" ^"%s^"", auth, password, accessflags, flags)
|
||||
|
||||
dbi_query(sql, "REPLACE INTO `%s` (`auth`, `password`, `access`, `flags`) VALUES ('%s', '%s', '%s', '%s')", table, auth, password, accessflags, flags)
|
||||
dbi_close(sql)
|
||||
SQL_QueryAndIgnore(sql, "REPLACE INTO `%s` (`auth`, `password`, `access`, `flags`) VALUES ('%s', '%s', '%s', '%s')", table, auth, password, accessflags, flags)
|
||||
}
|
||||
|
||||
SQL_FreeHandle(query)
|
||||
SQL_FreeHandle(sql)
|
||||
SQL_FreeHandle(info)
|
||||
#endif
|
||||
|
||||
}
|
||||
@ -402,19 +405,16 @@ loadSettings(szFilename[])
|
||||
#if defined USING_SQL
|
||||
public adminSql()
|
||||
{
|
||||
new host[64], user[32], pass[32], db[128], table[32], error[128], dbType[7]
|
||||
new table[32], error[128], type[12], errno
|
||||
|
||||
dbi_type(dbType, 6)
|
||||
new Handle:info = SQL_MakeStdTuple()
|
||||
new Handle:sql = SQL_Connect(info, errno, error, 127)
|
||||
|
||||
get_cvar_string("amx_sql_host", host, 63)
|
||||
get_cvar_string("amx_sql_user", user, 31)
|
||||
get_cvar_string("amx_sql_pass", pass, 31)
|
||||
get_cvar_string("amx_sql_db", db, 127)
|
||||
get_cvar_string("amx_sql_table", table, 31)
|
||||
|
||||
new Sql:sql = dbi_connect(host, user, pass, db, error, 127)
|
||||
SQL_GetAffinity(type, 11)
|
||||
|
||||
if (sql <= SQL_FAILED)
|
||||
if (sql == Empty_Handle)
|
||||
{
|
||||
server_print("[AMXX] %L", LANG_SERVER, "SQL_CANT_CON", error)
|
||||
|
||||
@ -428,54 +428,51 @@ public adminSql()
|
||||
return PLUGIN_HANDLED
|
||||
}
|
||||
|
||||
new Result:Res
|
||||
new Handle:query
|
||||
|
||||
if (equali(dbType, "sqlite"))
|
||||
if (equali(type, "sqlite"))
|
||||
{
|
||||
if (!sqlite_table_exists(sql, table))
|
||||
if (!sqlite_TableExists(sql, table))
|
||||
{
|
||||
dbi_query(sql, "CREATE TABLE %s ( auth TEXT NOT NULL DEFAULT '', password TEXT NOT NULL DEFAULT '', access TEXT NOT NULL DEFAULT '', flags TEXT NOT NULL DEFAULT '' )", table)
|
||||
SQL_QueryAndIgnore(sql, "CREATE TABLE %s ( auth TEXT NOT NULL DEFAULT '', password TEXT NOT NULL DEFAULT '', access TEXT NOT NULL DEFAULT '', flags TEXT NOT NULL DEFAULT '' )", table)
|
||||
}
|
||||
|
||||
Res = dbi_query(sql, "SELECT auth, password, access, flags FROM %s",table)
|
||||
query = SQL_PrepareQuery(sql, "SELECT auth, password, access, flags FROM %s", table)
|
||||
} else {
|
||||
dbi_query(sql,"CREATE TABLE IF NOT EXISTS `%s` ( `auth` VARCHAR( 32 ) NOT NULL, `password` VARCHAR( 32 ) NOT NULL, `access` VARCHAR( 32 ) NOT NULL, `flags` VARCHAR( 32 ) NOT NULL ) COMMENT = 'AMX Mod X Admins'", table)
|
||||
Res = dbi_query(sql,"SELECT `auth`,`password`,`access`,`flags` FROM `%s`", table)
|
||||
SQL_QueryAndIgnore(sql, "CREATE TABLE IF NOT EXISTS `%s` ( `auth` VARCHAR( 32 ) NOT NULL, `password` VARCHAR( 32 ) NOT NULL, `access` VARCHAR( 32 ) NOT NULL, `flags` VARCHAR( 32 ) NOT NULL ) COMMENT = 'AMX Mod X Admins'", table)
|
||||
query = SQL_PrepareQuery(sql,"SELECT `auth`,`password`,`access`,`flags` FROM `%s`", table)
|
||||
}
|
||||
|
||||
if (Res == RESULT_FAILED)
|
||||
if (!SQL_Execute(query))
|
||||
{
|
||||
dbi_error(sql, error, 127)
|
||||
SQL_QueryError(query, error, 127)
|
||||
server_print("[AMXX] %L", LANG_SERVER, "SQL_CANT_LOAD_ADMINS", error)
|
||||
dbi_free_result(Res)
|
||||
dbi_close(sql)
|
||||
|
||||
return PLUGIN_HANDLED
|
||||
}
|
||||
else if (Res == RESULT_NONE)
|
||||
{
|
||||
} else if (!SQL_NumResults(query)) {
|
||||
server_print("[AMXX] %L", LANG_SERVER, "NO_ADMINS")
|
||||
dbi_free_result(Res)
|
||||
dbi_close(sql)
|
||||
|
||||
return PLUGIN_HANDLED
|
||||
}
|
||||
|
||||
} else {
|
||||
new szFlags[32], szAccess[32]
|
||||
|
||||
g_aNum = 0
|
||||
|
||||
while (dbi_nextrow(Res) > 0)
|
||||
/** do this incase people change the query order and forget to modify below */
|
||||
new qcolAuth = SQL_FieldNameToNum(query, "auth")
|
||||
new qcolPass = SQL_FieldNameToNum(query, "password")
|
||||
new qcolAccess = SQL_FieldNameToNum(query, "access")
|
||||
new qcolFlags = SQL_FieldNameToNum(query, "flags")
|
||||
|
||||
while (SQL_MoreResults(query))
|
||||
{
|
||||
dbi_result(Res, "auth", g_aName[g_aNum], 31)
|
||||
dbi_result(Res, "password", g_aPassword[g_aNum], 31)
|
||||
dbi_result(Res, "access", szAccess, 31)
|
||||
dbi_result(Res, "flags", szFlags, 31)
|
||||
SQL_ReadResult(query, qcolAuth, g_aName[g_aNum], 31)
|
||||
SQL_ReadResult(query, qcolPass, g_aPassword[g_aNum], 31)
|
||||
SQL_ReadResult(query, qcolAccess, szAccess, 31)
|
||||
SQL_ReadResult(query, qcolFlags, szFlags, 31)
|
||||
|
||||
g_aAccess[g_aNum] = read_flags(szAccess)
|
||||
|
||||
g_aFlags[g_aNum] = read_flags(szFlags)
|
||||
|
||||
++g_aNum
|
||||
SQL_NextRow(query)
|
||||
}
|
||||
|
||||
if (g_aNum == 1)
|
||||
@ -483,8 +480,10 @@ public adminSql()
|
||||
else
|
||||
server_print("[AMXX] %L", LANG_SERVER, "SQL_LOADED_ADMINS", g_aNum)
|
||||
|
||||
dbi_free_result(Res)
|
||||
dbi_close(sql)
|
||||
SQL_FreeHandle(query)
|
||||
SQL_FreeHandle(sql)
|
||||
SQL_FreeHandle(info)
|
||||
}
|
||||
|
||||
return PLUGIN_HANDLED
|
||||
}
|
||||
|
@ -7,6 +7,9 @@
|
||||
#endif
|
||||
#define _sqlx_included
|
||||
|
||||
//eh..
|
||||
#define SQL_NumRows SQL_NumResults
|
||||
|
||||
#if AMXX_VERSION_NUM >= 175
|
||||
#pragma reqclass sqlx
|
||||
#if !defined AMXMODX_NOAUTOLOAD
|
||||
@ -20,10 +23,13 @@ enum Handle
|
||||
};
|
||||
|
||||
/**
|
||||
* Creates a connection tuple.
|
||||
* Creates a connection information tuple.
|
||||
* This tuple must be passed into connection routines.
|
||||
* Freeing the tuple is not necessary, but is a good idea if you
|
||||
* create many of them. You can cache these handles globally.
|
||||
* !!NOTE!! I have seen most people think that this connects to the DB.
|
||||
* Nowhere does it say this, and in fact it does not. It only caches
|
||||
* the connection information, the host/user/pass/etc.
|
||||
*/
|
||||
native Handle:SQL_MakeDbTuple(const host[], const user[], const pass[], const db[]);
|
||||
|
||||
@ -173,7 +179,9 @@ native SQL_GetAffinity(driver[], maxlen);
|
||||
* Sets driver affinity. You can use this to force a particular
|
||||
* driver implementation. This will automatically change all SQL
|
||||
* natives in your plugin to be "bound" to the module in question.
|
||||
* If no such module is found, it will return 0.
|
||||
* If no such module is found, it will return 0. This isn't necessarily bad -
|
||||
* the user might have typed the wrong driver. Unless your plugin is built
|
||||
* to handle different driver types at once, you should let this error pass.
|
||||
* Note, that using this while you have open handles to another database
|
||||
* type will cause problems. I.e., you cannot open a handle, switch
|
||||
* affinity, then close the handle with a different driver.
|
||||
@ -229,3 +237,55 @@ stock SQL_SimpleQuery(Handle:db, const query[], error[]="", maxlength=0, &rows=0
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
/**
|
||||
* Use this for executing a query and not caring about the error.
|
||||
* Returns -1 on error, >=0 on success (with number of affected rows)
|
||||
*/
|
||||
stock SQL_QueryAndIgnore(Handle:db, const queryfmt[], {Float,_}:...)
|
||||
{
|
||||
static query[4096]
|
||||
new Handle:hQuery
|
||||
new ret
|
||||
|
||||
vformat(query, sizeof(query)-1, queryfmt, 3)
|
||||
|
||||
server_print("simple query: %s", query)
|
||||
|
||||
hQuery = SQL_PrepareQuery(db, "%s", query);
|
||||
|
||||
if (SQL_Execute(hQuery))
|
||||
{
|
||||
ret = SQL_AffectedRows(hQuery)
|
||||
} else {
|
||||
ret = -1
|
||||
}
|
||||
|
||||
SQL_FreeHandle(hQuery)
|
||||
|
||||
return ret
|
||||
}
|
||||
|
||||
stock Handle:SQL_MakeStdTuple()
|
||||
{
|
||||
static host[64], user[32], pass[32], db[128]
|
||||
static get_type[12], set_type[12]
|
||||
|
||||
get_cvar_string("amx_sql_host", host, 63)
|
||||
get_cvar_string("amx_sql_user", user, 31)
|
||||
get_cvar_string("amx_sql_pass", pass, 31)
|
||||
get_cvar_string("amx_sql_type", set_type, 11)
|
||||
get_cvar_string("amx_sql_db", db, 127)
|
||||
|
||||
SQL_GetAffinity(get_type, 12)
|
||||
|
||||
if (!equali(get_type, set_type))
|
||||
{
|
||||
if (!SQL_SetAffinity(set_type))
|
||||
{
|
||||
log_amx("Failed to set affinity from %s to %s.", get_type, set_type)
|
||||
}
|
||||
}
|
||||
|
||||
return SQL_MakeDbTuple(host, user, pass, db)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user