X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/72635da73fc450b040d72fbeca4becd73c99008d..0bca9af0ccaaa9edfcad812a953f0dbedfdded8e:/projects/stargazer/user_impl.cpp?ds=inline

diff --git a/projects/stargazer/user_impl.cpp b/projects/stargazer/user_impl.cpp
index 5d505307..afd70b60 100644
--- a/projects/stargazer/user_impl.cpp
+++ b/projects/stargazer/user_impl.cpp
@@ -1181,7 +1181,47 @@ if (nextTariff.ConstData() != "")
         WriteServLog("Cannot change tariff for user %s. Tariff %s not exist.",
                      login.c_str(), property.tariffName.Get().c_str());
     else
-        property.tariffName.Set(nextTariff, sysAdmin, login, store);
+        {
+        switch (tariff->GetChangePolicy())
+            {
+            case TARIFF::ALLOW:
+                {
+                property.tariffName.Set(nextTariff, sysAdmin, login, store);
+                break;
+                }
+            case TARIFF::TO_CHEAP:
+                {
+                if (nt->GetFee() < tariff->GetFee())
+                    property.tariffName.Set(nextTariff, sysAdmin, login, store);
+                else
+                    WriteServLog("Tariff change is prohibited for user %s due to the policy %s. Current tariff %s is more cheap than new tariff %s.",
+                                 login.c_str(),
+                                 TARIFF::ChangePolicyToString(tariff->GetChangePolicy()).c_str(),
+                                 property.tariffName.Get().c_str(),
+                                 property.nextTariff.Get().c_str());
+                break;
+                }
+            case TARIFF::TO_EXPENSIVE:
+                {
+                if (nt->GetFee() > tariff->GetFee())
+                    property.tariffName.Set(nextTariff, sysAdmin, login, store);
+                else
+                    WriteServLog("Tariff change is prohibited for user %s due to the policy %s. Current tariff %s is more expensive than new tariff %s.",
+                                 login.c_str(),
+                                 TARIFF::ChangePolicyToString(tariff->GetChangePolicy()).c_str(),
+                                 property.tariffName.Get().c_str(),
+                                 property.nextTariff.Get().c_str());
+                break;
+                }
+            case TARIFF::DENY:
+                {
+                WriteServLog("Tariff change is prohibited for user %s. Tariff %s.",
+                             login.c_str(),
+                             property.tariffName.Get().c_str());
+                break;
+                }
+            }
+        }
     ResetNextTariff();
     WriteConf();
     }