amxmodx/plugins/admin.sma

446 lines
13 KiB
Plaintext
Raw Normal View History

2004-08-13 19:02:38 +04:00
/* AMX Mod X script.
2004-02-21 22:36:35 +03:00
* Admin Base Plugin
2004-02-01 21:45:44 +03:00
*
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.
*
*
* 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.
*
* 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-07-29 14:41:55 +04:00
// Uncomment for SQL version
//#define USING_SQL
2004-06-24 11:57:55 +04:00
2004-03-05 22:35:38 +03:00
#include <amxmodx>
2004-03-07 17:30:53 +03:00
#include <amxmisc>
2004-06-24 11:57:55 +04:00
#if defined USING_SQL
#include <dbi>
#endif
2004-01-31 23:56:22 +03:00
#define MAX_ADMINS 64
#define PLUGINNAME "AMX Mod X"
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-03-07 13:57:57 +03:00
new g_aNum = 0
2004-01-31 23:56:22 +03:00
new g_cmdLoopback[16]
2004-08-08 15:05:59 +04:00
public plugin_init() {
2004-06-24 11:57:55 +04:00
#if defined USING_SQL
2004-07-31 03:39:39 +04:00
register_plugin("Admin Base (SQL)",AMXX_VERSION_STR,"AMXX Dev Team")
2004-06-30 04:19:24 +04:00
#else
2004-07-31 03:39:39 +04:00
register_plugin("Admin Base",AMXX_VERSION_STR,"AMXX Dev Team")
2004-06-24 11:57:55 +04:00
#endif
register_dictionary("admin.txt")
2004-08-06 22:44:37 +04:00
register_dictionary("common.txt")
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","")
2004-03-07 13:57:57 +03:00
register_cvar("amx_vote_ratio","0.02")
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:30:37 +03:00
register_cvar("amx_show_activity","2")
2004-06-24 11:57:55 +04:00
register_cvar("amx_votekick_ratio","0.40")
register_cvar("amx_voteban_ratio","0.40")
register_cvar("amx_votemap_ratio","0.40")
set_cvar_float("amx_last_voting",0.0)
2004-08-08 15:05:59 +04:00
2004-06-24 11:57:55 +04:00
#if defined USING_SQL
register_srvcmd("amx_sqladmins","adminSql")
2004-08-31 06:53:06 +04:00
register_cvar("amx_sql_table","admins")
#endif
2004-06-24 11:57:55 +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_concmd("amx_reloadadmins", "cmdReload", ADMIN_CFG)
register_concmd("amx_addadmin", "addadminfn", ADMIN_CFG, "<playername> <flags> [password] - automatically add specified player as an admin to users.ini")
2004-03-07 13:57:57 +03:00
format( g_cmdLoopback, 15, "amxauth%c%c%c%c" ,
2004-01-31 23:56:22 +03:00
random_num('A','Z') , random_num('A','Z') ,random_num('A','Z'),random_num('A','Z') )
2004-08-08 15:05:59 +04:00
2004-01-31 23:56:22 +03:00
register_clcmd( g_cmdLoopback, "ackSignal" )
remove_user_flags(0,read_flags("z")) // Remove 'user' flag from server rights
2004-08-08 15:05:59 +04:00
2004-03-28 20:08:12 +04:00
new configsDir[64]
get_configsdir(configsDir, 63)
2004-03-25 19:52:04 +03:00
server_cmd("exec %s/amxx.cfg", configsDir) // Execute main configuration file
2004-09-01 15:47:20 +04:00
server_cmd("exec %s/sql.cfg", configsDir)
2004-06-24 11:57:55 +04:00
#if defined USING_SQL
2004-09-01 15:47:20 +04:00
server_cmd("amx_sqladmins")
2004-06-24 11:57:55 +04:00
#else
2004-03-28 20:08:12 +04:00
format(configsDir, 63, "%s/users.ini", configsDir)
loadSettings(configsDir) // Load admins accounts
2004-06-24 11:57:55 +04:00
#endif
2004-01-31 23:56:22 +03:00
}
2004-09-10 07:16:30 +04:00
#if defined USING_SQL
public plugin_modules()
{
2004-09-10 09:18:57 +04:00
require_module("DBI")
2004-09-10 07:16:30 +04:00
}
#endif
public addadminfn(id, level, cid) {
if (!cmd_access(id, level, cid, 3))
return PLUGIN_HANDLED
new arg[33]
read_argv(1, arg, 32)
new player = cmd_target(id, arg, 2) // 2 = allow yourself (remove later?) 8 = no bots
if (!player)
return PLUGIN_HANDLED
new flags[64]
read_argv(2, flags, 63)
new password[64]
if (read_argc() == 4)
read_argv(3, password, 63)
new steamid[64]
get_user_authid(player, steamid, 63)
AddAdmin(id, steamid, flags, password)
cmdReload(id, ADMIN_CFG, 0)
return PLUGIN_HANDLED
}
AddAdmin(id, steamid[], accessflags[], password[]) {
// Make sure that the users.ini file exists.
new configsDir[64]
get_configsdir(configsDir, 63)
format(configsDir, 63, "%s/users.ini", configsDir)
if (!file_exists(configsDir)) {
console_print(id, "[%s] File ^"%s^" doesn't exist.", PLUGINNAME, configsDir)
return
}
// Make sure steamid isn't already in file.
new line = 0, textline[256], len
const SIZE = 63
new line_steamid[SIZE + 1], line_password[SIZE + 1], line_accessflags[SIZE + 1], line_flags[SIZE + 1], parsedParams
// <name|ip|steamid> <password> <access flags> <account flags>
while ((line = read_file(configsDir, line, textline, 255, len))) {
if (len == 0 || equal(textline, ";", 1))
continue // comment line
parsedParams = parse(textline, line_steamid, SIZE, line_password, SIZE, line_accessflags, SIZE, line_flags, SIZE)
if (parsedParams != 4)
continue // Send warning/error?
if (containi(line_flags, "c") != -1 && equal(line_steamid, steamid)) {
console_print(id, "[%s] %s already exists!", PLUGINNAME, steamid)
return
}
//console_print(id, "Found: %s, %s, %s, %s", line_steamid, line_password, line_accessflags, line_flags)
}
// If we came here, steamid doesn't exist in users.ini. Add it.
// Find out what flags we need.
new flags[64] = "c" // Always use steamid
new flagslen = strlen(flags)
if (strlen(password) == 0)
flagslen += format(flags[flagslen], 63 - flagslen, "e") // add flag to not check password if password wasn't supplied
new linetoadd[512]
format(linetoadd, 511, "^"%s^" ^"%s^" ^"%s^" ^"%s^"", steamid, password, accessflags, flags)
console_print(id, "Adding:^n%s", linetoadd)
if (!write_file(configsDir, linetoadd))
console_print(id, "[%s] Failed writing to %s!", PLUGINNAME, configsDir)
}
2004-08-13 19:01:14 +04:00
public plugin_cfg() {
2004-06-30 00:17:25 +04:00
new configFile[64],curMap[32]
get_configsdir(configFile,31)
get_mapname(curMap,31)
2004-10-03 11:33:49 +04:00
new len = format(configFile,63,"%s/maps/%s.cfg",configFile,curMap)
2004-06-30 00:17:25 +04:00
if ( file_exists(configFile) )
2004-10-03 11:33:49 +04:00
set_task(6.1,"delayed_load",0,configFile,len+1)
}
public delayed_load(configFile[])
{
server_cmd("exec %s",configFile)
2004-06-30 00:17:25 +04:00
}
2004-08-13 19:01:14 +04:00
loadSettings(szFilename[]) {
2004-01-31 23:56:22 +03:00
if (!file_exists(szFilename)) return 0
2004-08-08 15:05:59 +04:00
2004-01-31 23:56:22 +03:00
new szText[256], szFlags[32], szAccess[32]
2004-04-03 00:58:38 +04:00
new a, pos = 0
2004-08-08 15:05:59 +04:00
while ( g_aNum < MAX_ADMINS && read_file(szFilename,pos++,szText,255,a) )
{
2004-01-31 23:56:22 +03:00
if ( szText[0] == ';' ) continue
2004-08-08 15:05:59 +04:00
2004-03-21 09:32:27 +03:00
if ( parse(szText, g_aName[ g_aNum ] ,31, g_aPassword[ g_aNum ], 31, szAccess,31,szFlags,31 ) < 2 )
continue
2004-08-08 15:05:59 +04:00
2004-04-03 00:58:38 +04:00
g_aAccess[ g_aNum ] = read_flags(szAccess)
g_aFlags[ g_aNum ] = read_flags( szFlags )
2004-01-31 23:56:22 +03:00
++g_aNum
}
if (g_aNum == 1)
server_print("[AMXX] %L", LANG_SERVER, "LOADED_ADMIN" )
else
server_print("[AMXX] %L", LANG_SERVER, "LOADED_ADMINS", g_aNum )
2004-01-31 23:56:22 +03:00
return 1
}
2004-06-24 11:57:55 +04:00
#if defined USING_SQL
public adminSql() {
2004-08-08 15:05:59 +04:00
new host[64],user[32],pass[32],db[32],table[32],error[128]
2004-06-24 11:57:55 +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-08-08 15:05:59 +04:00
get_cvar_string("amx_sql_table",table,31)
2004-07-19 18:33:17 +04:00
new Sql:sql = dbi_connect(host,user,pass,db,error,127)
if (sql <= SQL_FAILED) {
server_print("[AMXX] %L",LANG_SERVER,"SQL_CANT_CON",error)
2004-09-08 22:34:48 +04:00
//backup to users.ini
2004-09-08 22:34:48 +04:00
new configsDir[64]
get_configsdir(configsDir, 63)
format(configsDir, 63, "%s/users.ini", configsDir)
loadSettings(configsDir) // Load admins accounts
return PLUGIN_HANDLED
2004-06-24 11:57:55 +04:00
}
2004-08-13 19:01:14 +04:00
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)
2004-08-08 15:05:59 +04:00
new Result:Res = dbi_query(sql,"SELECT `auth`,`password`,`access`,`flags` FROM `%s`",table)
2004-06-24 11:57:55 +04:00
2004-07-23 23:52:55 +04:00
if (Res == RESULT_FAILED) {
2004-06-24 11:57:55 +04:00
dbi_error(sql,error,127)
server_print("[AMXX] %L",LANG_SERVER,"SQL_CANT_LOAD_ADMINS",error)
2004-07-23 23:52:55 +04:00
dbi_free_result(Res)
2004-08-30 04:07:55 +04:00
dbi_close(sql)
2004-07-23 23:52:55 +04:00
return PLUGIN_HANDLED
}
else if (Res == RESULT_NONE) {
server_print("[AMXX] %L",LANG_SERVER,"NO_ADMINS")
2004-07-23 23:52:55 +04:00
dbi_free_result(Res)
2004-08-30 04:07:55 +04:00
dbi_close(sql)
2004-06-24 11:57:55 +04:00
return PLUGIN_HANDLED
}
new szFlags[32],szAccess[32]
g_aNum = 0
2004-08-08 15:05:59 +04:00
while( dbi_nextrow(Res) > 0 ) {
2004-07-23 23:52:55 +04:00
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)
2004-06-24 11:57:55 +04:00
g_aAccess[ g_aNum ] = read_flags( szAccess )
g_aFlags[ g_aNum ] = read_flags( szFlags )
++g_aNum
}
if (g_aNum == 1)
2004-08-18 20:08:16 +04:00
server_print("[AMXX] %L", LANG_SERVER, "SQL_LOADED_ADMIN" )
else
2004-08-18 20:08:16 +04:00
server_print("[AMXX] %L", LANG_SERVER, "SQL_LOADED_ADMINS", g_aNum )
2004-07-19 18:33:17 +04:00
dbi_free_result(Res)
2004-06-24 11:57:55 +04:00
dbi_close(sql)
return PLUGIN_HANDLED
}
#endif
2004-01-31 23:56:22 +03:00
2004-08-08 15:05:59 +04:00
public cmdReload(id,level,cid) {
2004-03-07 13:57:57 +03:00
if (!cmd_access(id,level,cid,1))
return PLUGIN_HANDLED
2004-09-13 10:17:47 +04:00
//strip original flags (patch submitted by mrhunt)
remove_user_flags(0,read_flags("z"))
2004-06-24 11:57:55 +04:00
#if !defined USING_SQL
2004-03-25 19:52:04 +03:00
new filename[128]
get_configsdir(filename,127)
format(filename,63,"%s/users.ini", filename)
2004-03-07 13:57:57 +03:00
g_aNum = 0
loadSettings(filename) // Re-Load admins accounts
2004-08-21 01:40:17 +04:00
if (id != 0) {
if (g_aNum == 1)
console_print(id,"[AMXX] %L", LANG_SERVER, "LOADED_ADMIN" )
else
console_print(id,"[AMXX] %L", LANG_SERVER, "LOADED_ADMINS", g_aNum )
}
2004-06-24 11:57:55 +04:00
#else
g_aNum = 0
2004-06-24 11:57:55 +04:00
adminSql()
2004-03-07 13:57:57 +03:00
2004-08-21 01:40:17 +04:00
if (id != 0) {
if (g_aNum == 1)
console_print(id,"[AMXX] %L", LANG_SERVER, "SQL_LOADED_ADMIN" )
else
console_print(id,"[AMXX] %L", LANG_SERVER, "SQL_LOADED_ADMINS", g_aNum )
}
#endif
2004-08-20 02:21:53 +04:00
2004-03-07 13:57:57 +03:00
return PLUGIN_HANDLED
}
2004-08-08 15:05:59 +04:00
getAccess(id,name[],authid[],ip[], password[]) {
2004-01-31 23:56:22 +03:00
new index = -1
new result = 0
2004-08-13 19:01:14 +04:00
for (new i = 0; i < g_aNum; ++i) {
2004-01-31 23:56:22 +03:00
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)
2004-03-21 09:32:27 +03:00
if (!strlen(defaccess))
copy(defaccess, 32, "z")
2004-01-31 23:56:22 +03:00
new idefaccess = read_flags(defaccess)
2004-08-20 02:21:53 +04:00
if (idefaccess) {
2004-01-31 23:56:22 +03:00
result |= 8
set_user_flags(id,idefaccess)
}
2004-08-08 15:05:59 +04:00
}
2004-01-31 23:56:22 +03:00
return result
}
2004-08-08 15:05:59 +04:00
accessUser( id, name[] = "" ) {
2004-01-31 23:56:22 +03:00
remove_user_flags(id)
new userip[32],userauthid[32],password[32],passfield[32],username[32]
get_user_ip(id,userip,31,1)
2004-01-31 23:56:22 +03:00
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 ^"* %L^"",id,"INV_PAS")
2004-01-31 23:56:22 +03:00
if (result & 2) {
2004-07-19 18:33:17 +04:00
client_cmd(id,g_cmdLoopback)
2004-01-31 23:56:22 +03:00
return PLUGIN_HANDLED
}
if (result & 4) client_cmd(id,"echo ^"* %L^"",id,"PAS_ACC")
if (result & 8) client_cmd(id,"echo ^"* %L^"",id,"PRIV_SET")
2004-01-31 23:56:22 +03:00
return PLUGIN_CONTINUE
}
2004-08-08 15:05:59 +04:00
public client_infochanged(id) {
if ( !is_user_connected(id) || !get_cvar_num("amx_mode") )
2004-01-31 23:56:22 +03:00
return PLUGIN_CONTINUE
2004-08-08 15:05:59 +04:00
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-08-08 15:05:59 +04:00
2004-01-31 23:56:22 +03:00
if ( !equal(newname,oldname) )
accessUser( id, newname )
2004-08-08 15:05:59 +04:00
2004-01-31 23:56:22 +03:00
return PLUGIN_CONTINUE
}
public ackSignal(id) {
2004-08-05 15:09:42 +04:00
server_cmd("kick #%d ^"%L^"", get_user_userid(id), id, "NO_ENTRY" )
}
2004-01-31 23:56:22 +03:00
public client_authorized(id)
2004-08-22 13:47:40 +04:00
return get_cvar_num( "amx_mode" ) ? accessUser( id ) : PLUGIN_CONTINUE