X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/7f4a67cabd5fbf8cfe9c2e658bd4a255a6764b0e..810c900ba1bcb412f12eda3a39561b0ff5a72b35:/projects/stargazer/user_impl.cpp diff --git a/projects/stargazer/user_impl.cpp b/projects/stargazer/user_impl.cpp index 1af2b4de..f3228738 100644 --- a/projects/stargazer/user_impl.cpp +++ b/projects/stargazer/user_impl.cpp @@ -589,21 +589,22 @@ if (!fakeConnect) std::string scriptOnConnectParams; + strprintf(&scriptOnConnectParams, + "%s \"%s\" \"%s\" \"%f\" \"%d\" \"%s\"", + scriptOnConnect.c_str(), + login.c_str(), + inet_ntostring(currIP).c_str(), + cash.ConstData(), + id, + dirsStr); + std::vector::const_iterator it(settings->GetScriptParams().begin()); while (it != settings->GetScriptParams().end()) { - scriptOnConnectParams += GetParamValue(it->c_str()); + scriptOnConnectParams += " \"" + GetParamValue(it->c_str()) + "\""; + ++it; } -// strprintf(&scriptOnConnectParams, -// "%s \"%s\" \"%s\" \"%f\" \"%d\" \"%s\"", -// scriptOnConnect.c_str(), -// login.c_str(), -// inet_ntostring(currIP).c_str(), -// cash.ConstData(), -// id, -// dirsStr); - ScriptExec(scriptOnConnectParams.c_str()); } else @@ -661,6 +662,13 @@ if (!fakeDisconnect) id, dirsStr); + std::vector::const_iterator it(settings->GetScriptParams().begin()); + while (it != settings->GetScriptParams().end()) + { + scriptOnDisonnectParams += " \"" + GetParamValue(it->c_str()) + "\""; + ++it; + } + ScriptExec(scriptOnDisonnectParams.c_str()); } else @@ -815,7 +823,7 @@ if (settings->GetShowFeeInCash() || tariff == NULL) return (cash - tariff->GetFee() >= -credit); } //----------------------------------------------------------------------------- -std::string USER_IMPL::GetEnabledDirs() +std::string USER_IMPL::GetEnabledDirs() const { //STG_LOCKER lock(&mutex, __FILE__, __LINE__); @@ -1466,116 +1474,16 @@ while (it != messages.end()) //----------------------------------------------------------------------------- std::string USER_IMPL::GetParamValue(const std::string & name) const { -if (name == "cash") - { - return property.cash.ToString(); - } -if (name == "freeMb") - { - return property.freeMb.ToString(); - } -if (name == "passive") - { - return property.passive.ToString(); - } -if (name == "disabled") - { - return property.disabled.ToString(); - } -if (name == "alwaysOnline") - { - return property.alwaysOnline.ToString(); - } -if (name == "tariffName") - { - return property.tariffName; - } -if (name == "nextTariff") - { - return property.nextTariff; - } -if (name == "address") - { - return property.address; - } -if (name == "note") - { - return property.note; - } -if (name == "group") - { - return property.group; - } -if (name == "email") - { - return property.email; - } -if (name == "phone") - { - return property.phone; - } -if (name == "realName") - { - return property.realName; - } -if (name == "credit") - { - return property.credit.ToString(); - } -if (name == "userdata0") - { - return property.userdata0; - } -if (name == "userdata1") - { - return property.userdata1; - } -if (name == "userdata2") - { - return property.userdata2; - } -if (name == "userdata3") - { - return property.userdata3; - } -if (name == "userdata4") - { - return property.userdata4; - } -if (name == "userdata5") - { - return property.userdata5; - } -if (name == "userdata6") - { - return property.userdata6; - } -if (name == "userdata7") - { - return property.userdata7; - } -if (name == "userdata8") - { - return property.userdata8; - } -if (name == "userdata9") - { - return property.userdata9; - } if (name == "id") { - std::stringstream stream; + std::ostringstream stream; stream << id; - return stream.str();; - } -if (name == "login") - { - return login; - } -if (name == "ip") - { - return currIP.ToString(); + return stream.str(); } +if (name == "login") return login; +if (name == "ip") return currIP.ToString(); +if (name == "enabledDirs") return GetEnabledDirs(); +return property.GetPropertyValue(name); } //----------------------------------------------------------------------------- //-----------------------------------------------------------------------------