git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Todo for SMUX added
[stg.git]
/
projects
/
stargazer
/
user_impl.cpp
diff --git
a/projects/stargazer/user_impl.cpp
b/projects/stargazer/user_impl.cpp
index b2cbf5d40d97ed5f4c5b29782f4dfc44784bdcdb..e8d326d2c3d72586bc6293007ca584df1c8b09dc 100644
(file)
--- a/
projects/stargazer/user_impl.cpp
+++ b/
projects/stargazer/user_impl.cpp
@@
-46,6
+46,7
@@
#include "stg/admin.h"
#include "user_impl.h"
#include "settings_impl.h"
#include "stg/admin.h"
#include "user_impl.h"
#include "settings_impl.h"
+#include "stg_timer.h"
#ifdef USE_ABSTRACT_SETTINGS
USER_IMPL::USER_IMPL(const SETTINGS * s,
#ifdef USE_ABSTRACT_SETTINGS
USER_IMPL::USER_IMPL(const SETTINGS * s,
@@
-1190,7
+1191,7
@@
if (nextTariff.ConstData() != "")
else
{
property.tariffName.Set(nextTariff, sysAdmin, login, store);
else
{
property.tariffName.Set(nextTariff, sysAdmin, login, store);
- tariff = nt;
+
//
tariff = nt;
}
ResetNextTariff();
WriteConf();
}
ResetNextTariff();
WriteConf();
@@
-1252,7
+1253,10
@@
double fee = tariff->GetFee() * passiveTimePart;
ResetPassiveTime();
if (fee == 0.0)
ResetPassiveTime();
if (fee == 0.0)
+ {
+ SetPrepaidTraff();
return;
return;
+ }
double c = cash;
printfd(__FILE__, "login: %8s Fee=%f PassiveTimePart=%f fee=%f\n",
double c = cash;
printfd(__FILE__, "login: %8s Fee=%f PassiveTimePart=%f fee=%f\n",
@@
-1264,22
+1268,27
@@
switch (settings->GetFeeChargeType())
{
case 0:
property.cash.Set(c - fee, sysAdmin, login, store, "Subscriber fee charge");
{
case 0:
property.cash.Set(c - fee, sysAdmin, login, store, "Subscriber fee charge");
+ SetPrepaidTraff();
break;
case 1:
if (c > 0)
break;
case 1:
if (c > 0)
+ {
property.cash.Set(c - fee, sysAdmin, login, store, "Subscriber fee charge");
property.cash.Set(c - fee, sysAdmin, login, store, "Subscriber fee charge");
+ SetPrepaidTraff();
+ }
break;
case 2:
if (c > fee)
break;
case 2:
if (c > fee)
+ {
property.cash.Set(c - fee, sysAdmin, login, store, "Subscriber fee charge");
property.cash.Set(c - fee, sysAdmin, login, store, "Subscriber fee charge");
+ SetPrepaidTraff();
+ }
break;
}
}
//-----------------------------------------------------------------------------
void USER_IMPL::SetPrepaidTraff()
{
break;
}
}
//-----------------------------------------------------------------------------
void USER_IMPL::SetPrepaidTraff()
{
-STG_LOCKER lock(&mutex, __FILE__, __LINE__);
-
if (tariff != NULL)
property.freeMb.Set(tariff->GetFree(), sysAdmin, login, store, "Prepaid traffic");
}
if (tariff != NULL)
property.freeMb.Set(tariff->GetFree(), sysAdmin, login, store, "Prepaid traffic");
}
@@
-1414,7
+1423,13
@@
if (newPassive && !oldPassive && user->tariff != NULL)
//-----------------------------------------------------------------------------
void CHG_TARIFF_NOTIFIER::Notify(const string &, const string & newTariff)
{
//-----------------------------------------------------------------------------
void CHG_TARIFF_NOTIFIER::Notify(const string &, const string & newTariff)
{
+if (user->settings->GetReconnectOnTariffChange() && user->connected)
+ user->Disconnect(false, "Change tariff");
user->tariff = user->tariffs->FindByName(newTariff);
user->tariff = user->tariffs->FindByName(newTariff);
+if (user->settings->GetReconnectOnTariffChange() &&
+ !user->authorizedBy.empty() &&
+ user->IsInetable())
+ user->Connect(false);
}
//-----------------------------------------------------------------------------
void CHG_CASH_NOTIFIER::Notify(const double & oldCash, const double & newCash)
}
//-----------------------------------------------------------------------------
void CHG_CASH_NOTIFIER::Notify(const double & oldCash, const double & newCash)
@@
-1427,8
+1442,8
@@
void CHG_IPS_NOTIFIER::Notify(const USER_IPS & from, const USER_IPS & to)
{
printfd(__FILE__, "Change IP from '%s' to '%s'\n", from.GetIpStr().c_str(), to.GetIpStr().c_str());
if (user->connected)
{
printfd(__FILE__, "Change IP from '%s' to '%s'\n", from.GetIpStr().c_str(), to.GetIpStr().c_str());
if (user->connected)
- user->Disconnect(
tru
e, "Change IP");
- if (user->IsInetable())
- user->Connect(
tru
e);
+ user->Disconnect(
fals
e, "Change IP");
+ if (
!user->authorizedBy.empty() &&
user->IsInetable())
+ user->Connect(
fals
e);
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------