amxmodx/plugins/admin_sql.sma

276 lines
8.3 KiB
Plaintext
Raw Normal View History

2004-02-21 22:36:35 +03:00
/* AMX Mod X
2004-04-03 04:57:49 +04:00
* Admin Base for SQL Plugin
*
2004-02-21 22:36:35 +03:00
* by the AMX Mod X Development Team
* originally developed by OLO
2004-01-31 23:56:22 +03:00
*
2004-02-21 22:36:35 +03:00
* This file is part of AMX Mod X.
2004-01-31 23:56:22 +03:00
*
*
2004-02-21 22:36:35 +03:00
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
2004-01-31 23:56:22 +03:00
*
2004-02-21 22:36:35 +03:00
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
2004-01-31 23:56:22 +03:00
*/
2004-03-05 22:35:38 +03:00
#include <amxmodx>
2004-03-07 17:30:53 +03:00
#include <amxmisc>
2004-04-03 04:57:49 +04:00
#include <dbi>
2004-01-31 23:56:22 +03:00
#define MAX_ADMINS 64
2004-01-31 23:56:22 +03:00
new g_aPassword[MAX_ADMINS][32]
new g_aName[MAX_ADMINS][32]
new g_aFlags[MAX_ADMINS]
new g_aAccess[MAX_ADMINS]
2004-04-02 16:36:46 +04:00
new g_aNum
#if !defined NO_STEAM
2004-01-31 23:56:22 +03:00
new g_cmdLoopback[16]
#endif
public plugin_init()
{
2004-04-03 04:57:49 +04:00
register_plugin("Admin Base(SQL)","0.2","AMXX Dev Team")
2004-04-02 15:48:12 +04:00
register_cvar("amx_mode","1")
2004-01-31 23:56:22 +03:00
register_cvar("amx_password_field","_pw")
register_cvar("amx_default_access","")
register_srvcmd("amx_sqladmins","adminSql")
2004-04-03 04:57:49 +04:00
register_cvar("amx_sql_host","127.0.0.1")
register_cvar("amx_sql_user","root")
register_cvar("amx_sql_pass","")
register_cvar("amx_sql_db","amx")
register_cvar("amx_vote_ratio","0.02")
register_cvar("amx_votekick_ratio","0.40")
register_cvar("amx_voteban_ratio","0.40")
register_cvar("amx_votemap_ratio","0.40")
register_cvar("amx_vote_time","10")
register_cvar("amx_vote_answers","1")
register_cvar("amx_vote_delay","60")
register_cvar("amx_last_voting","0")
2004-03-22 09:33:11 +03:00
register_cvar("amx_show_activity","2")
set_cvar_float("amx_last_voting",0.0)
2004-03-07 13:57:57 +03:00
register_concmd("amx_reloadadmins","cmdReload",ADMIN_ADMIN)
2004-01-31 23:56:22 +03:00
#if !defined NO_STEAM
format( g_cmdLoopback, 15, "amxauth%c%c%c%c" ,
random_num('A','Z') , random_num('A','Z') ,random_num('A','Z'),random_num('A','Z') )
register_clcmd( g_cmdLoopback, "ackSignal" )
#endif
2004-01-31 23:56:22 +03:00
remove_user_flags(0,read_flags("z")) // remove 'user' flag from server rights
2004-03-25 19:52:04 +03:00
new configsDir[128]
get_configsdir(configsDir, 127)
server_cmd("exec %s/amxx.cfg", configsDir) // Execute main configuration file
2004-04-03 04:57:49 +04:00
server_cmd("exec %s/sql.cfg;amx_sqladmins", configsDir)
2004-01-31 23:56:22 +03:00
}
2004-03-07 13:57:57 +03:00
public adminSql() {
2004-01-31 23:56:22 +03:00
new host[64],user[32],pass[32],db[32],error[128]
2004-04-03 04:57:49 +04:00
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,31)
2004-01-31 23:56:22 +03:00
2004-04-03 04:57:49 +04:00
new sql = dbi_connect(host,user,pass,db,error,127)
if(sql < 1){
server_print("[AMXX] SQL error: can't connect: '%s'",error)
2004-01-31 23:56:22 +03:00
return PLUGIN_HANDLED
}
2004-04-03 04:57:49 +04:00
dbi_query(sql,"CREATE TABLE IF NOT EXISTS admins ( auth varchar(32) NOT NULL default '', password varchar(32) NOT NULL default '', access varchar(32) NOT NULL default '', flags varchar(32) NOT NULL default '' ) TYPE=MyISAM")
2004-04-03 04:57:49 +04:00
if(dbi_query(sql,"SELECT auth,password,access,flags FROM admins") < 1) {
dbi_error(sql,error,127)
server_print("[AMXX] SQL error: can't load admins: '%s'",error)
2004-01-31 23:56:22 +03:00
return PLUGIN_HANDLED
}
new szFlags[32],szAccess[32]
2004-04-02 16:36:46 +04:00
g_aNum = 0
2004-04-03 04:57:49 +04:00
while( dbi_nextrow(sql) > 0 )
2004-01-31 23:56:22 +03:00
{
2004-04-03 04:57:49 +04:00
dbi_getfield(sql, 1, g_aName[ g_aNum ] ,31)
dbi_getfield(sql, 2, g_aPassword[ g_aNum ] ,31)
dbi_getfield(sql, 3, szAccess,31)
dbi_getfield(sql, 4, szFlags,31)
if ( (containi(szAccess,"z")==-1) && (containi(szAccess,"y")==-1) )
szAccess[strlen(szAccess)] = 'y'
2004-01-31 23:56:22 +03:00
g_aAccess[ g_aNum ] = read_flags( szAccess )
2004-04-03 00:58:12 +04:00
if (!(g_aAccess[g_aNum] & ADMIN_USER) && !(g_aAccess[g_aNum] & ADMIN_ADMIN))
g_aAccess[g_aNum] |= ADMIN_ADMIN
2004-01-31 23:56:22 +03:00
g_aFlags[ g_aNum ] = read_flags( szFlags )
++g_aNum
}
2004-03-24 11:24:19 +03:00
server_print("[AMXX] Loaded %d admin%s from database",g_aNum, (g_aNum == 1) ? "" : "s" )
2004-04-03 04:57:49 +04:00
dbi_close(sql)
2004-01-31 23:56:22 +03:00
return PLUGIN_HANDLED
}
2004-03-07 13:57:57 +03:00
public cmdReload(id,level,cid)
{
if (!cmd_access(id,level,cid,1))
return PLUGIN_HANDLED
adminSql() // Re-Load admins accounts
return PLUGIN_HANDLED
}
2004-01-31 23:56:22 +03:00
getAccess(id,name[],authid[],ip[], password[]){
new index = -1
new result = 0
for(new i = 0; i < g_aNum; ++i) {
if (g_aFlags[i] & FLAG_AUTHID) {
if (equal(authid,g_aName[i])) {
index = i
break
}
}
else if (g_aFlags[i] & FLAG_IP) {
new c = strlen( g_aName[i] )
if ( g_aName[i][ c - 1 ] == '.' ) { /* check if this is not a xxx.xxx. format */
if ( equal( g_aName[i] , ip , c ) ) {
index = i
break
}
} /* in other case an IP must just match */
else if ( equal(ip,g_aName[i]) ){
index = i
break
}
}
else {
if (g_aFlags[i] & FLAG_TAG) {
if (contain(name,g_aName[i])!=-1){
index = i
break
}
}
else if (equal(name,g_aName[i])) {
index = i
break
}
}
}
if (index != -1) {
if (g_aFlags[index] & FLAG_NOPASS){
result |= 8
new sflags[32]
get_flags(g_aAccess[index],sflags,31)
set_user_flags(id,g_aAccess[index])
log_amx("Login: ^"%s<%d><%s><>^" became an admin (account ^"%s^") (access ^"%s^") (address ^"%s^")",
2004-01-31 23:56:22 +03:00
name,get_user_userid(id),authid,g_aName[index] ,sflags,ip)
}
else if (equal(password,g_aPassword[index])) {
result |= 12
set_user_flags(id,g_aAccess[index])
new sflags[32]
get_flags(g_aAccess[index],sflags,31)
log_amx("Login: ^"%s<%d><%s><>^" became an admin (account ^"%s^") (access ^"%s^") (address ^"%s^")",
2004-01-31 23:56:22 +03:00
name,get_user_userid(id),authid,g_aName[index] ,sflags,ip)
}
else {
result |= 1
if (g_aFlags[index] & FLAG_KICK){
result |= 2
log_amx("Login: ^"%s<%d><%s><>^" kicked due to invalid password (account ^"%s^") (address ^"%s^")",
2004-01-31 23:56:22 +03:00
name,get_user_userid(id),authid,g_aName[index],ip)
}
}
}
else if (get_cvar_float("amx_mode")==2.0) {
result |= 2
}
else {
new defaccess[32]
get_cvar_string("amx_default_access",defaccess,31)
if (!defaccess[0])
defaccess[0] = 'z'
2004-01-31 23:56:22 +03:00
new idefaccess = read_flags(defaccess)
if (idefaccess){
result |= 8
set_user_flags(id,idefaccess)
}
}
2004-01-31 23:56:22 +03:00
return result
}
accessUser( id, name[]="" )
{
remove_user_flags(id)
new userip[32],userauthid[32],password[32],passfield[32],username[32]
get_user_ip(id,userip,31,1)
get_user_authid(id,userauthid,31)
if ( name[0] ) copy( username , 31, name)
else get_user_name(id,username,31 )
get_cvar_string("amx_password_field",passfield,31)
get_user_info(id,passfield,password,31)
new result = getAccess(id,username,userauthid,userip,password)
if (result & 1) client_cmd(id,"echo ^"* Invalid Password!^"")
if (result & 2) {
#if !defined NO_STEAM
2004-02-14 00:20:59 +03:00
client_cmd(id,g_cmdLoopback)
2004-01-31 23:56:22 +03:00
#else
client_cmd(id,"echo ^"* You have no entry to the server...^";disconnect")
#endif
return PLUGIN_HANDLED
}
if (result & 4) client_cmd(id,"echo ^"* Password accepted^"")
if (result & 8) client_cmd(id,"echo ^"* Privileges set^"")
return PLUGIN_CONTINUE
}
public client_infochanged(id)
{
if ( !is_user_connected(id) || !get_cvar_num("amx_mode") )
return PLUGIN_CONTINUE
2004-01-31 23:56:22 +03:00
new newname[32], oldname[32]
get_user_name(id,oldname,31)
get_user_info(id,"name",newname,31)
2004-01-31 23:56:22 +03:00
if ( !equal(newname,oldname) )
accessUser( id , newname )
2004-01-31 23:56:22 +03:00
return PLUGIN_CONTINUE
}
#if !defined NO_STEAM
public ackSignal(id)
2004-02-14 00:20:59 +03:00
server_cmd("kick #%d ^"You have no entry to the server...^"", get_user_userid(id) )
2004-01-31 23:56:22 +03:00
public client_authorized(id)
#else
public client_connect(id)
#endif
2004-03-22 09:33:11 +03:00
return get_cvar_num( "amx_mode" ) ? accessUser( id ) : PLUGIN_CONTINUE