2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
23 $Date: 2010/10/07 19:53:11 $
46 #include "stg/common.h"
47 #include "stg/user_ips.h"
48 #include "stg/user_conf.h"
49 #include "stg/user_stat.h"
50 #include "stg/const.h"
51 #include "stg/blowfish.h"
52 #include "stg/logger.h"
53 #include "stg/locker.h"
54 #include "stg/plugin_creator.h"
55 #include "file_store.h"
57 #define DELETED_USERS_DIR "deleted_users"
59 #define adm_enc_passwd "cjeifY8m3"
61 int GetFileList(std::vector<std::string> * fileList, const std::string & directory, mode_t mode, const std::string & ext);
63 const int pt_mega = 1024 * 1024;
64 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
69 PLUGIN_CREATOR<FILES_STORE> fsc;
71 bool CheckAndCreate(const std::string & dir, mode_t mode)
73 if (access(dir.c_str(), F_OK) == 0)
75 if (mkdir(dir.c_str(), mode) == 0)
82 extern "C" STORE * GetStore();
83 //-----------------------------------------------------------------------------
84 //-----------------------------------------------------------------------------
85 //-----------------------------------------------------------------------------
88 return fsc.GetPlugin();
90 //-----------------------------------------------------------------------------
91 FILES_STORE_SETTINGS::FILES_STORE_SETTINGS()
106 //-----------------------------------------------------------------------------
107 int FILES_STORE_SETTINGS::ParseOwner(const std::vector<PARAM_VALUE> & moduleParams, const std::string & owner, uid_t * uid)
111 std::vector<PARAM_VALUE>::const_iterator pvi;
112 pvi = find(moduleParams.begin(), moduleParams.end(), pv);
113 if (pvi == moduleParams.end() || pvi->value.empty())
115 errorStr = "Parameter \'" + owner + "\' not found.";
116 printfd(__FILE__, "%s\n", errorStr.c_str());
119 if (User2UID(pvi->value[0].c_str(), uid) < 0)
121 errorStr = "Parameter \'" + owner + "\': Unknown user \'" + pvi->value[0] + "\'";
122 printfd(__FILE__, "%s\n", errorStr.c_str());
127 //-----------------------------------------------------------------------------
128 int FILES_STORE_SETTINGS::ParseGroup(const std::vector<PARAM_VALUE> & moduleParams, const std::string & group, gid_t * gid)
132 std::vector<PARAM_VALUE>::const_iterator pvi;
133 pvi = find(moduleParams.begin(), moduleParams.end(), pv);
134 if (pvi == moduleParams.end() || pvi->value.empty())
136 errorStr = "Parameter \'" + group + "\' not found.";
137 printfd(__FILE__, "%s\n", errorStr.c_str());
140 if (Group2GID(pvi->value[0].c_str(), gid) < 0)
142 errorStr = "Parameter \'" + group + "\': Unknown group \'" + pvi->value[0] + "\'";
143 printfd(__FILE__, "%s\n", errorStr.c_str());
148 //-----------------------------------------------------------------------------
149 int FILES_STORE_SETTINGS::ParseYesNo(const std::string & value, bool * val)
151 if (0 == strcasecmp(value.c_str(), "yes"))
156 if (0 == strcasecmp(value.c_str(), "no"))
162 errorStr = "Incorrect value \'" + value + "\'.";
165 //-----------------------------------------------------------------------------
166 int FILES_STORE_SETTINGS::ParseMode(const std::vector<PARAM_VALUE> & moduleParams, const std::string & modeStr, mode_t * mode)
170 std::vector<PARAM_VALUE>::const_iterator pvi;
171 pvi = find(moduleParams.begin(), moduleParams.end(), pv);
172 if (pvi == moduleParams.end() || pvi->value.empty())
174 errorStr = "Parameter \'" + modeStr + "\' not found.";
175 printfd(__FILE__, "%s\n", errorStr.c_str());
178 if (Str2Mode(pvi->value[0].c_str(), mode) < 0)
180 errorStr = "Parameter \'" + modeStr + "\': Incorrect mode \'" + pvi->value[0] + "\'";
181 printfd(__FILE__, "%s\n", errorStr.c_str());
186 //-----------------------------------------------------------------------------
187 int FILES_STORE_SETTINGS::ParseSettings(const MODULE_SETTINGS & s)
189 if (ParseOwner(s.moduleParams, "StatOwner", &statUID) < 0)
191 if (ParseGroup(s.moduleParams, "StatGroup", &statGID) < 0)
193 if (ParseMode(s.moduleParams, "StatMode", &statMode) < 0)
196 if (ParseOwner(s.moduleParams, "ConfOwner", &confUID) < 0)
198 if (ParseGroup(s.moduleParams, "ConfGroup", &confGID) < 0)
200 if (ParseMode(s.moduleParams, "ConfMode", &confMode) < 0)
203 if (ParseOwner(s.moduleParams, "UserLogOwner", &userLogUID) < 0)
205 if (ParseGroup(s.moduleParams, "UserLogGroup", &userLogGID) < 0)
207 if (ParseMode(s.moduleParams, "UserLogMode", &userLogMode) < 0)
210 std::vector<PARAM_VALUE>::const_iterator pvi;
212 pv.param = "RemoveBak";
213 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
214 if (pvi == s.moduleParams.end() || pvi->value.empty())
220 if (ParseYesNo(pvi->value[0], &removeBak))
222 printfd(__FILE__, "Cannot parse parameter 'RemoveBak'\n");
227 pv.param = "ReadBak";
228 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
229 if (pvi == s.moduleParams.end() || pvi->value.empty())
235 if (ParseYesNo(pvi->value[0], &readBak))
237 printfd(__FILE__, "Cannot parse parameter 'ReadBak'\n");
242 pv.param = "WorkDir";
243 pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv);
244 if (pvi == s.moduleParams.end() || pvi->value.empty())
246 errorStr = "Parameter \'WorkDir\' not found.";
247 printfd(__FILE__, "Parameter 'WorkDir' not found\n");
251 workDir = pvi->value[0];
252 if (workDir.size() && workDir[workDir.size() - 1] == '/')
254 workDir.resize(workDir.size() - 1);
256 usersDir = workDir + "/users/";
257 if (!CheckAndCreate(usersDir, GetConfModeDir()))
259 errorStr = usersDir + " doesn't exist. Failed to create.";
260 printfd(__FILE__, "%s\n", errorStr.c_str());
263 tariffsDir = workDir + "/tariffs/";
264 if (!CheckAndCreate(tariffsDir, GetConfModeDir()))
266 errorStr = tariffsDir + " doesn't exist. Failed to create.";
267 printfd(__FILE__, "%s\n", errorStr.c_str());
270 adminsDir = workDir + "/admins/";
271 if (!CheckAndCreate(adminsDir, GetConfModeDir()))
273 errorStr = adminsDir + " doesn't exist. Failed to create.";
274 printfd(__FILE__, "%s\n", errorStr.c_str());
277 servicesDir = workDir + "/services/";
278 if (!CheckAndCreate(servicesDir, GetConfModeDir()))
280 errorStr = servicesDir + " doesn't exist. Failed to create.";
281 printfd(__FILE__, "%s\n", errorStr.c_str());
287 //-----------------------------------------------------------------------------
288 const std::string & FILES_STORE_SETTINGS::GetStrError() const
292 //-----------------------------------------------------------------------------
293 int FILES_STORE_SETTINGS::User2UID(const char * user, uid_t * uid)
299 errorStr = std::string("User \'") + std::string(user) + std::string("\' not found in system.");
300 printfd(__FILE__, "%s\n", errorStr.c_str());
307 //-----------------------------------------------------------------------------
308 int FILES_STORE_SETTINGS::Group2GID(const char * gr, gid_t * gid)
314 errorStr = std::string("Group \'") + std::string(gr) + std::string("\' not found in system.");
315 printfd(__FILE__, "%s\n", errorStr.c_str());
322 //-----------------------------------------------------------------------------
323 int FILES_STORE_SETTINGS::Str2Mode(const char * str, mode_t * mode)
330 errorStr = std::string("Error parsing mode \'") + str + std::string("\'");
331 printfd(__FILE__, "%s\n", errorStr.c_str());
335 for (int i = 0; i < 3; i++)
336 if (str[i] > '7' || str[i] < '0')
338 errorStr = std::string("Error parsing mode \'") + str + std::string("\'");
339 printfd(__FILE__, "%s\n", errorStr.c_str());
347 *mode = ((mode_t)c) + ((mode_t)b << 3) + ((mode_t)a << 6);
351 //-----------------------------------------------------------------------------
352 mode_t FILES_STORE_SETTINGS::GetStatModeDir() const
354 mode_t mode = statMode;
355 if (statMode & S_IRUSR) mode |= S_IXUSR;
356 if (statMode & S_IRGRP) mode |= S_IXGRP;
357 if (statMode & S_IROTH) mode |= S_IXOTH;
360 //-----------------------------------------------------------------------------
361 mode_t FILES_STORE_SETTINGS::GetConfModeDir() const
363 mode_t mode = confMode;
364 if (confMode & S_IRUSR) mode |= S_IXUSR;
365 if (confMode & S_IRGRP) mode |= S_IXGRP;
366 if (confMode & S_IROTH) mode |= S_IXOTH;
369 //-----------------------------------------------------------------------------
370 //-----------------------------------------------------------------------------
371 //-----------------------------------------------------------------------------
372 FILES_STORE::FILES_STORE()
374 version("file_store v.1.04"),
378 logger(GetPluginLogger(GetStgLogger(), "store_files"))
380 pthread_mutexattr_t attr;
381 pthread_mutexattr_init(&attr);
382 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
383 pthread_mutex_init(&mutex, &attr);
385 //-----------------------------------------------------------------------------
386 int FILES_STORE::ParseSettings()
388 int ret = storeSettings.ParseSettings(settings);
391 STG_LOCKER lock(&mutex);
392 errorStr = storeSettings.GetStrError();
396 //-----------------------------------------------------------------------------
397 int FILES_STORE::GetUsersList(std::vector<std::string> * userList) const
399 std::vector<std::string> files;
401 if (GetFileList(&files, storeSettings.GetUsersDir(), S_IFDIR, ""))
403 STG_LOCKER lock(&mutex);
404 errorStr = "Failed to open '" + storeSettings.GetUsersDir() + "': " + std::string(strerror(errno));
408 STG_LOCKER lock(&mutex);
410 userList->swap(files);
414 //-----------------------------------------------------------------------------
415 int FILES_STORE::GetAdminsList(std::vector<std::string> * adminList) const
417 std::vector<std::string> files;
419 if (GetFileList(&files, storeSettings.GetAdminsDir(), S_IFREG, ".adm"))
421 STG_LOCKER lock(&mutex);
422 errorStr = "Failed to open '" + storeSettings.GetAdminsDir() + "': " + std::string(strerror(errno));
426 STG_LOCKER lock(&mutex);
428 adminList->swap(files);
432 //-----------------------------------------------------------------------------
433 int FILES_STORE::GetTariffsList(std::vector<std::string> * tariffList) const
435 std::vector<std::string> files;
437 if (GetFileList(&files, storeSettings.GetTariffsDir(), S_IFREG, ".tf"))
439 STG_LOCKER lock(&mutex);
440 errorStr = "Failed to open '" + storeSettings.GetTariffsDir() + "': " + std::string(strerror(errno));
444 STG_LOCKER lock(&mutex);
446 tariffList->swap(files);
450 //-----------------------------------------------------------------------------
451 int FILES_STORE::GetServicesList(std::vector<std::string> * list) const
453 std::vector<std::string> files;
455 if (GetFileList(&files, storeSettings.GetServicesDir(), S_IFREG, ".serv"))
457 STG_LOCKER lock(&mutex);
458 errorStr = "Failed to open '" + storeSettings.GetServicesDir() + "': " + std::string(strerror(errno));
462 STG_LOCKER lock(&mutex);
468 //-----------------------------------------------------------------------------
469 int FILES_STORE::RemoveDir(const char * path) const
471 DIR * d = opendir(path);
475 errorStr = "failed to open dir. Message: '";
476 errorStr += strerror(errno);
478 printfd(__FILE__, "FILE_STORE::RemoveDir() - Failed to open dir '%s': '%s'\n", path, strerror(errno));
483 while ((entry = readdir(d)))
485 if (!(strcmp(entry->d_name, ".") && strcmp(entry->d_name, "..")))
488 std::string str = path;
489 str += "/" + std::string(entry->d_name);
492 if (stat(str.c_str(), &st))
495 if ((st.st_mode & S_IFREG))
497 if (unlink(str.c_str()))
499 STG_LOCKER lock(&mutex);
500 errorStr = "unlink failed. Message: '";
501 errorStr += strerror(errno);
503 printfd(__FILE__, "FILES_STORE::RemoveDir() - unlink failed. Message: '%s'\n", strerror(errno));
509 if (!(st.st_mode & S_IFDIR))
511 if (RemoveDir(str.c_str()))
524 STG_LOCKER lock(&mutex);
525 errorStr = "rmdir failed. Message: '";
526 errorStr += strerror(errno);
528 printfd(__FILE__, "FILES_STORE::RemoveDir() - rmdir failed. Message: '%s'\n", strerror(errno));
534 //-----------------------------------------------------------------------------
535 int FILES_STORE::AddUser(const std::string & login) const
537 std::string fileName;
539 strprintf(&fileName, "%s%s", storeSettings.GetUsersDir().c_str(), login.c_str());
541 if (mkdir(fileName.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == -1)
543 STG_LOCKER lock(&mutex);
544 errorStr = std::string("mkdir failed. Message: '") + strerror(errno) + "'";
545 printfd(__FILE__, "FILES_STORE::AddUser - mkdir failed. Message: '%s'\n", strerror(errno));
549 strprintf(&fileName, "%s%s/conf", storeSettings.GetUsersDir().c_str(), login.c_str());
552 STG_LOCKER lock(&mutex);
553 errorStr = "Cannot create file \"" + fileName + "\'";
554 printfd(__FILE__, "FILES_STORE::AddUser - fopen failed. Message: '%s'\n", strerror(errno));
558 strprintf(&fileName, "%s%s/stat", storeSettings.GetUsersDir().c_str(), login.c_str());
561 STG_LOCKER lock(&mutex);
562 errorStr = "Cannot create file \"" + fileName + "\'";
563 printfd(__FILE__, "FILES_STORE::AddUser - fopen failed. Message: '%s'\n", strerror(errno));
568 //-----------------------------------------------------------------------------
569 int FILES_STORE::DelUser(const std::string & login) const
572 std::string dirName1;
574 strprintf(&dirName, "%s/%s", storeSettings.GetWorkDir().c_str(), DELETED_USERS_DIR);
575 if (access(dirName.c_str(), F_OK) != 0)
577 if (mkdir(dirName.c_str(), 0700) != 0)
579 STG_LOCKER lock(&mutex);
580 errorStr = "Directory '" + dirName + "' cannot be created.";
581 printfd(__FILE__, "FILES_STORE::DelUser - mkdir failed. Message: '%s'\n", strerror(errno));
586 if (access(dirName.c_str(), F_OK) == 0)
588 strprintf(&dirName, "%s/%s/%s.%lu", storeSettings.GetWorkDir().c_str(), DELETED_USERS_DIR, login.c_str(), time(NULL));
589 strprintf(&dirName1, "%s/%s", storeSettings.GetUsersDir().c_str(), login.c_str());
590 if (rename(dirName1.c_str(), dirName.c_str()))
592 STG_LOCKER lock(&mutex);
593 errorStr = "Error moving dir from " + dirName1 + " to " + dirName;
594 printfd(__FILE__, "FILES_STORE::DelUser - rename failed. Message: '%s'\n", strerror(errno));
600 strprintf(&dirName, "%s/%s", storeSettings.GetUsersDir().c_str(), login.c_str());
601 if (RemoveDir(dirName.c_str()))
608 //-----------------------------------------------------------------------------
609 int FILES_STORE::RestoreUserConf(USER_CONF * conf, const std::string & login) const
611 std::string fileName;
612 fileName = storeSettings.GetUsersDir() + "/" + login + "/conf";
613 if (RestoreUserConf(conf, login, fileName))
615 if (!storeSettings.GetReadBak())
619 return RestoreUserConf(conf, login, fileName + ".bak");
623 //-----------------------------------------------------------------------------
624 int FILES_STORE::RestoreUserConf(USER_CONF * conf, const std::string & login, const std::string & fileName) const
626 CONFIGFILE cf(fileName);
631 STG_LOCKER lock(&mutex);
632 errorStr = "User \'" + login + "\' data not read.";
633 printfd(__FILE__, "FILES_STORE::RestoreUserConf - conf read failed for user '%s'\n", login.c_str());
637 if (cf.ReadString("Password", &conf->password, "") < 0)
639 STG_LOCKER lock(&mutex);
640 errorStr = "User \'" + login + "\' data not read. Parameter Password.";
641 printfd(__FILE__, "FILES_STORE::RestoreUserConf - password read failed for user '%s'\n", login.c_str());
644 if (conf->password.empty())
646 STG_LOCKER lock(&mutex);
647 errorStr = "User \'" + login + "\' password is blank.";
648 printfd(__FILE__, "FILES_STORE::RestoreUserConf - password is blank for user '%s'\n", login.c_str());
652 if (cf.ReadString("tariff", &conf->tariffName, "") < 0)
654 STG_LOCKER lock(&mutex);
655 errorStr = "User \'" + login + "\' data not read. Parameter Tariff.";
656 printfd(__FILE__, "FILES_STORE::RestoreUserConf - tariff read failed for user '%s'\n", login.c_str());
659 if (conf->tariffName.empty())
661 STG_LOCKER lock(&mutex);
662 errorStr = "User \'" + login + "\' tariff is blank.";
663 printfd(__FILE__, "FILES_STORE::RestoreUserConf - tariff is blank for user '%s'\n", login.c_str());
668 cf.ReadString("IP", &ipStr, "?");
672 ips = StrToIPS(ipStr);
674 catch (const std::string & s)
676 STG_LOCKER lock(&mutex);
677 errorStr = "User \'" + login + "\' data not read. Parameter IP address. " + s;
678 printfd(__FILE__, "FILES_STORE::RestoreUserConf - ip read failed for user '%s'\n", login.c_str());
683 if (cf.ReadInt("alwaysOnline", &conf->alwaysOnline, 0) != 0)
685 STG_LOCKER lock(&mutex);
686 errorStr = "User \'" + login + "\' data not read. Parameter AlwaysOnline.";
687 printfd(__FILE__, "FILES_STORE::RestoreUserConf - alwaysonline read failed for user '%s'\n", login.c_str());
691 if (cf.ReadInt("down", &conf->disabled, 0) != 0)
693 STG_LOCKER lock(&mutex);
694 errorStr = "User \'" + login + "\' data not read. Parameter Down.";
695 printfd(__FILE__, "FILES_STORE::RestoreUserConf - down read failed for user '%s'\n", login.c_str());
699 if (cf.ReadInt("passive", &conf->passive, 0) != 0)
701 STG_LOCKER lock(&mutex);
702 errorStr = "User \'" + login + "\' data not read. Parameter Passive.";
703 printfd(__FILE__, "FILES_STORE::RestoreUserConf - passive read failed for user '%s'\n", login.c_str());
707 cf.ReadInt("DisabledDetailStat", &conf->disabledDetailStat, 0);
708 cf.ReadTime("CreditExpire", &conf->creditExpire, 0);
709 cf.ReadString("TariffChange", &conf->nextTariff, "");
710 cf.ReadString("Group", &conf->group, "");
711 cf.ReadString("RealName", &conf->realName, "");
712 cf.ReadString("Address", &conf->address, "");
713 cf.ReadString("Phone", &conf->phone, "");
714 cf.ReadString("Note", &conf->note, "");
715 cf.ReadString("email", &conf->email, "");
717 char userdataName[12];
718 for (int i = 0; i < USERDATA_NUM; i++)
720 snprintf(userdataName, 12, "Userdata%d", i);
721 cf.ReadString(userdataName, &conf->userdata[i], "");
724 if (cf.ReadDouble("Credit", &conf->credit, 0) != 0)
726 STG_LOCKER lock(&mutex);
727 errorStr = "User \'" + login + "\' data not read. Parameter Credit.";
728 printfd(__FILE__, "FILES_STORE::RestoreUserConf - credit read failed for user '%s'\n", login.c_str());
734 //-----------------------------------------------------------------------------
735 int FILES_STORE::RestoreUserStat(USER_STAT * stat, const std::string & login) const
737 std::string fileName;
738 fileName = storeSettings.GetUsersDir() + "/" + login + "/stat";
740 if (RestoreUserStat(stat, login, fileName))
742 if (!storeSettings.GetReadBak())
746 return RestoreUserStat(stat, login, fileName + ".bak");
750 //-----------------------------------------------------------------------------
751 int FILES_STORE::RestoreUserStat(USER_STAT * stat, const std::string & login, const std::string & fileName) const
753 CONFIGFILE cf(fileName);
759 STG_LOCKER lock(&mutex);
760 errorStr = "User \'" + login + "\' stat not read. Cannot open file " + fileName + ".";
761 printfd(__FILE__, "FILES_STORE::RestoreUserStat - stat read failed for user '%s'\n", login.c_str());
767 for (int i = 0; i < DIR_NUM; i++)
770 snprintf(s, 22, "D%d", i);
771 if (cf.ReadULongLongInt(s, &traff, 0) != 0)
773 STG_LOCKER lock(&mutex);
774 errorStr = "User \'" + login + "\' stat not read. Parameter " + std::string(s);
775 printfd(__FILE__, "FILES_STORE::RestoreUserStat - download stat read failed for user '%s'\n", login.c_str());
778 stat->monthDown[i] = traff;
780 snprintf(s, 22, "U%d", i);
781 if (cf.ReadULongLongInt(s, &traff, 0) != 0)
783 STG_LOCKER lock(&mutex);
784 errorStr = "User \'" + login + "\' stat not read. Parameter " + std::string(s);
785 printfd(__FILE__, "FILES_STORE::RestoreUserStat - upload stat read failed for user '%s'\n", login.c_str());
788 stat->monthUp[i] = traff;
791 if (cf.ReadDouble("Cash", &stat->cash, 0) != 0)
793 STG_LOCKER lock(&mutex);
794 errorStr = "User \'" + login + "\' stat not read. Parameter Cash";
795 printfd(__FILE__, "FILES_STORE::RestoreUserStat - cash read failed for user '%s'\n", login.c_str());
799 if (cf.ReadDouble("FreeMb", &stat->freeMb, 0) != 0)
801 STG_LOCKER lock(&mutex);
802 errorStr = "User \'" + login + "\' stat not read. Parameter FreeMb";
803 printfd(__FILE__, "FILES_STORE::RestoreUserStat - freemb read failed for user '%s'\n", login.c_str());
807 if (cf.ReadTime("LastCashAddTime", &stat->lastCashAddTime, 0) != 0)
809 STG_LOCKER lock(&mutex);
810 errorStr = "User \'" + login + "\' stat not read. Parameter LastCashAddTime";
811 printfd(__FILE__, "FILES_STORE::RestoreUserStat - lastcashaddtime read failed for user '%s'\n", login.c_str());
815 if (cf.ReadTime("PassiveTime", &stat->passiveTime, 0) != 0)
817 STG_LOCKER lock(&mutex);
818 errorStr = "User \'" + login + "\' stat not read. Parameter PassiveTime";
819 printfd(__FILE__, "FILES_STORE::RestoreUserStat - passivetime read failed for user '%s'\n", login.c_str());
823 if (cf.ReadDouble("LastCashAdd", &stat->lastCashAdd, 0) != 0)
825 STG_LOCKER lock(&mutex);
826 errorStr = "User \'" + login + "\' stat not read. Parameter LastCashAdd";
827 printfd(__FILE__, "FILES_STORE::RestoreUserStat - lastcashadd read failed for user '%s'\n", login.c_str());
831 if (cf.ReadTime("LastActivityTime", &stat->lastActivityTime, 0) != 0)
833 STG_LOCKER lock(&mutex);
834 errorStr = "User \'" + login + "\' stat not read. Parameter LastActivityTime";
835 printfd(__FILE__, "FILES_STORE::RestoreUserStat - lastactivitytime read failed for user '%s'\n", login.c_str());
841 //-----------------------------------------------------------------------------
842 int FILES_STORE::SaveUserConf(const USER_CONF & conf, const std::string & login) const
844 std::string fileName;
845 fileName = storeSettings.GetUsersDir() + "/" + login + "/conf";
847 CONFIGFILE cfstat(fileName, true);
849 int e = cfstat.Error();
853 STG_LOCKER lock(&mutex);
854 errorStr = std::string("User \'") + login + "\' conf not written\n";
855 printfd(__FILE__, "FILES_STORE::SaveUserConf - conf write failed for user '%s'\n", login.c_str());
859 e = chmod(fileName.c_str(), storeSettings.GetConfMode());
860 e += chown(fileName.c_str(), storeSettings.GetConfUID(), storeSettings.GetConfGID());
864 STG_LOCKER lock(&mutex);
865 printfd(__FILE__, "FILES_STORE::SaveUserConf - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
868 cfstat.WriteString("Password", conf.password);
869 cfstat.WriteInt ("Passive", conf.passive);
870 cfstat.WriteInt ("Down", conf.disabled);
871 cfstat.WriteInt("DisabledDetailStat", conf.disabledDetailStat);
872 cfstat.WriteInt ("AlwaysOnline", conf.alwaysOnline);
873 cfstat.WriteString("Tariff", conf.tariffName);
874 cfstat.WriteString("Address", conf.address);
875 cfstat.WriteString("Phone", conf.phone);
876 cfstat.WriteString("Email", conf.email);
877 cfstat.WriteString("Note", conf.note);
878 cfstat.WriteString("RealName", conf.realName);
879 cfstat.WriteString("Group", conf.group);
880 cfstat.WriteDouble("Credit", conf.credit);
881 cfstat.WriteString("TariffChange", conf.nextTariff);
883 char userdataName[12];
884 for (int i = 0; i < USERDATA_NUM; i++)
886 snprintf(userdataName, 12, "Userdata%d", i);
887 cfstat.WriteString(userdataName, conf.userdata[i]);
889 cfstat.WriteInt("CreditExpire", conf.creditExpire);
891 std::ostringstream ipStr;
893 cfstat.WriteString("IP", ipStr.str());
897 //-----------------------------------------------------------------------------
898 int FILES_STORE::SaveUserStat(const USER_STAT & stat, const std::string & login) const
900 std::string fileName;
901 fileName = storeSettings.GetUsersDir() + "/" + login + "/stat";
904 CONFIGFILE cfstat(fileName, true);
905 int e = cfstat.Error();
909 STG_LOCKER lock(&mutex);
910 errorStr = std::string("User \'") + login + "\' stat not written\n";
911 printfd(__FILE__, "FILES_STORE::SaveUserStat - stat write failed for user '%s'\n", login.c_str());
915 for (int i = 0; i < DIR_NUM; i++)
918 snprintf(s, 22, "D%d", i);
919 cfstat.WriteInt(s, stat.monthDown[i]);
920 snprintf(s, 22, "U%d", i);
921 cfstat.WriteInt(s, stat.monthUp[i]);
924 cfstat.WriteDouble("Cash", stat.cash);
925 cfstat.WriteDouble("FreeMb", stat.freeMb);
926 cfstat.WriteDouble("LastCashAdd", stat.lastCashAdd);
927 cfstat.WriteInt("LastCashAddTime", stat.lastCashAddTime);
928 cfstat.WriteInt("PassiveTime", stat.passiveTime);
929 cfstat.WriteInt("LastActivityTime", stat.lastActivityTime);
932 int e = chmod(fileName.c_str(), storeSettings.GetStatMode());
933 e += chown(fileName.c_str(), storeSettings.GetStatUID(), storeSettings.GetStatGID());
937 STG_LOCKER lock(&mutex);
938 printfd(__FILE__, "FILES_STORE::SaveUserStat - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
943 //-----------------------------------------------------------------------------
944 int FILES_STORE::WriteLogString(const std::string & str, const std::string & login) const
947 time_t tm = time(NULL);
948 std::string fileName;
949 fileName = storeSettings.GetUsersDir() + "/" + login + "/log";
950 f = fopen(fileName.c_str(), "at");
954 fprintf(f, "%s", LogDate(tm));
956 fprintf(f, "%s", str.c_str());
962 STG_LOCKER lock(&mutex);
963 errorStr = "Cannot open \'" + fileName + "\'";
964 printfd(__FILE__, "FILES_STORE::WriteLogString - log write failed for user '%s'\n", login.c_str());
968 int e = chmod(fileName.c_str(), storeSettings.GetLogMode());
969 e += chown(fileName.c_str(), storeSettings.GetLogUID(), storeSettings.GetLogGID());
973 STG_LOCKER lock(&mutex);
974 printfd(__FILE__, "FILES_STORE::WriteLogString - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
979 //-----------------------------------------------------------------------------
980 int FILES_STORE::WriteLog2String(const std::string & str, const std::string & login) const
983 time_t tm = time(NULL);
984 std::string fileName;
985 fileName = storeSettings.GetUsersDir() + "/" + login + "/log2";
986 f = fopen(fileName.c_str(), "at");
990 fprintf(f, "%s", LogDate(tm));
992 fprintf(f, "%s", str.c_str());
998 STG_LOCKER lock(&mutex);
999 errorStr = "Cannot open \'" + fileName + "\'";
1000 printfd(__FILE__, "FILES_STORE::WriteLogString - log write failed for user '%s'\n", login.c_str());
1004 int e = chmod(fileName.c_str(), storeSettings.GetLogMode());
1005 e += chown(fileName.c_str(), storeSettings.GetLogUID(), storeSettings.GetLogGID());
1009 STG_LOCKER lock(&mutex);
1010 printfd(__FILE__, "FILES_STORE::WriteLogString - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
1015 //-----------------------------------------------------------------------------
1016 int FILES_STORE::WriteUserChgLog(const std::string & login,
1017 const std::string & admLogin,
1019 const std::string & paramName,
1020 const std::string & oldValue,
1021 const std::string & newValue,
1022 const std::string & message) const
1024 std::string userLogMsg = "Admin \'" + admLogin + "\', " + inet_ntostring(admIP) + ": \'"
1025 + paramName + "\' parameter changed from \'" + oldValue +
1026 "\' to \'" + newValue + "\'. " + message;
1028 return WriteLogString(userLogMsg, login);
1030 //-----------------------------------------------------------------------------
1031 int FILES_STORE::WriteUserConnect(const std::string & login, uint32_t ip) const
1033 std::string logStr = "Connect, " + inet_ntostring(ip);
1034 if (WriteLogString(logStr, login))
1036 return WriteLog2String(logStr, login);
1038 //-----------------------------------------------------------------------------
1039 int FILES_STORE::WriteUserDisconnect(const std::string & login,
1040 const DIR_TRAFF & monthUp,
1041 const DIR_TRAFF & monthDown,
1042 const DIR_TRAFF & sessionUp,
1043 const DIR_TRAFF & sessionDown,
1046 const std::string & reason) const
1048 std::ostringstream logStr;
1049 logStr << "Disconnect, "
1050 << " session upload: \'"
1052 << "\' session download: \'"
1054 << "\' month upload: \'"
1056 << "\' month download: \'"
1062 if (WriteLogString(logStr.str(), login))
1065 logStr << " freeMb: \'"
1072 return WriteLog2String(logStr.str(), login);
1074 //-----------------------------------------------------------------------------
1075 int FILES_STORE::SaveMonthStat(const USER_STAT & stat, int month, int year, const std::string & login) const
1079 strprintf(&stat1,"%s/%s/stat.%d.%02d",
1080 storeSettings.GetUsersDir().c_str(), login.c_str(), year + 1900, month + 1);
1082 CONFIGFILE s(stat1, true);
1086 STG_LOCKER lock(&mutex);
1087 errorStr = "Cannot create file '" + stat1 + "'";
1088 printfd(__FILE__, "FILES_STORE::SaveMonthStat - month stat write failed for user '%s'\n", login.c_str());
1094 strprintf(&stat2,"%s/%s/stat2.%d.%02d",
1095 storeSettings.GetUsersDir().c_str(), login.c_str(), year + 1900, month + 1);
1097 CONFIGFILE s2(stat2, true);
1101 STG_LOCKER lock(&mutex);
1102 errorStr = "Cannot create file '" + stat2 + "'";
1103 printfd(__FILE__, "FILES_STORE::SaveMonthStat - month stat write failed for user '%s'\n", login.c_str());
1107 for (size_t i = 0; i < DIR_NUM; i++)
1110 snprintf(dirName, 3, "U%llu", (unsigned long long)i);
1111 s.WriteInt(dirName, stat.monthUp[i]); // Classic
1112 s2.WriteInt(dirName, stat.monthUp[i]); // New
1113 snprintf(dirName, 3, "D%llu", (unsigned long long)i);
1114 s.WriteInt(dirName, stat.monthDown[i]); // Classic
1115 s2.WriteInt(dirName, stat.monthDown[i]); // New
1119 s.WriteDouble("cash", stat.cash);
1122 s2.WriteDouble("Cash", stat.cash);
1123 s2.WriteDouble("FreeMb", stat.freeMb);
1124 s2.WriteDouble("LastCashAdd", stat.lastCashAdd);
1125 s2.WriteInt("LastCashAddTime", stat.lastCashAddTime);
1126 s2.WriteInt("PassiveTime", stat.passiveTime);
1127 s2.WriteInt("LastActivityTime", stat.lastActivityTime);
1131 //-----------------------------------------------------------------------------*/
1132 int FILES_STORE::AddAdmin(const std::string & login) const
1134 std::string fileName;
1135 strprintf(&fileName, "%s/%s.adm", storeSettings.GetAdminsDir().c_str(), login.c_str());
1137 if (Touch(fileName))
1139 STG_LOCKER lock(&mutex);
1140 errorStr = "Cannot create file " + fileName;
1141 printfd(__FILE__, "FILES_STORE::AddAdmin - failed to add admin '%s'\n", login.c_str());
1147 //-----------------------------------------------------------------------------*/
1148 int FILES_STORE::DelAdmin(const std::string & login) const
1150 std::string fileName;
1151 strprintf(&fileName, "%s/%s.adm", storeSettings.GetAdminsDir().c_str(), login.c_str());
1152 if (unlink(fileName.c_str()))
1154 STG_LOCKER lock(&mutex);
1155 errorStr = "unlink failed. Message: '";
1156 errorStr += strerror(errno);
1158 printfd(__FILE__, "FILES_STORE::DelAdmin - unlink failed. Message: '%s'\n", strerror(errno));
1162 //-----------------------------------------------------------------------------*/
1163 int FILES_STORE::SaveAdmin(const ADMIN_CONF & ac) const
1165 std::string fileName;
1167 strprintf(&fileName, "%s/%s.adm", storeSettings.GetAdminsDir().c_str(), ac.login.c_str());
1170 CONFIGFILE cf(fileName, true);
1176 STG_LOCKER lock(&mutex);
1177 errorStr = "Cannot write admin " + ac.login + ". " + fileName;
1178 printfd(__FILE__, "FILES_STORE::SaveAdmin - failed to save admin '%s'\n", ac.login.c_str());
1182 char pass[ADM_PASSWD_LEN + 1];
1183 memset(pass, 0, sizeof(pass));
1185 char adminPass[ADM_PASSWD_LEN + 1];
1186 memset(adminPass, 0, sizeof(adminPass));
1189 InitContext(adm_enc_passwd, strlen(adm_enc_passwd), &ctx);
1191 strncpy(adminPass, ac.password.c_str(), ADM_PASSWD_LEN);
1192 adminPass[ADM_PASSWD_LEN - 1] = 0;
1194 for (int i = 0; i < ADM_PASSWD_LEN/8; i++)
1196 EncryptBlock(pass + 8*i, adminPass + 8*i, &ctx);
1199 pass[ADM_PASSWD_LEN - 1] = 0;
1200 char passwordE[2 * ADM_PASSWD_LEN + 2];
1201 Encode12(passwordE, pass, ADM_PASSWD_LEN);
1203 cf.WriteString("password", passwordE);
1204 cf.WriteInt("ChgConf", ac.priv.userConf);
1205 cf.WriteInt("ChgPassword", ac.priv.userPasswd);
1206 cf.WriteInt("ChgStat", ac.priv.userStat);
1207 cf.WriteInt("ChgCash", ac.priv.userCash);
1208 cf.WriteInt("UsrAddDel", ac.priv.userAddDel);
1209 cf.WriteInt("ChgTariff", ac.priv.tariffChg);
1210 cf.WriteInt("ChgAdmin", ac.priv.adminChg);
1211 cf.WriteInt("ChgService", ac.priv.serviceChg);
1212 cf.WriteInt("ChgCorp", ac.priv.corpChg);
1217 //-----------------------------------------------------------------------------
1218 int FILES_STORE::RestoreAdmin(ADMIN_CONF * ac, const std::string & login) const
1220 std::string fileName;
1221 strprintf(&fileName, "%s/%s.adm", storeSettings.GetAdminsDir().c_str(), login.c_str());
1222 CONFIGFILE cf(fileName);
1223 char pass[ADM_PASSWD_LEN + 1];
1224 char password[ADM_PASSWD_LEN + 1];
1225 char passwordE[2 * ADM_PASSWD_LEN + 2];
1232 STG_LOCKER lock(&mutex);
1233 errorStr = "Cannot open " + fileName;
1234 printfd(__FILE__, "FILES_STORE::RestoreAdmin - failed to restore admin '%s'\n", ac->login.c_str());
1238 if (cf.ReadString("password", &p, "*"))
1240 STG_LOCKER lock(&mutex);
1241 errorStr = "Error in parameter password";
1242 printfd(__FILE__, "FILES_STORE::RestoreAdmin - password read failed for admin '%s'\n", ac->login.c_str());
1246 memset(passwordE, 0, sizeof(passwordE));
1247 strncpy(passwordE, p.c_str(), 2*ADM_PASSWD_LEN);
1249 memset(pass, 0, sizeof(pass));
1251 if (passwordE[0] != 0)
1253 Decode21(pass, passwordE);
1254 InitContext(adm_enc_passwd, strlen(adm_enc_passwd), &ctx);
1256 for (int i = 0; i < ADM_PASSWD_LEN/8; i++)
1258 DecryptBlock(password + 8*i, pass + 8*i, &ctx);
1266 ac->password = password;
1270 if (cf.ReadUShortInt("ChgConf", &a, 0) == 0)
1271 ac->priv.userConf = a;
1274 STG_LOCKER lock(&mutex);
1275 errorStr = "Error in parameter ChgConf";
1276 printfd(__FILE__, "FILES_STORE::RestoreAdmin - chgconf read failed for admin '%s'\n", ac->login.c_str());
1280 if (cf.ReadUShortInt("ChgPassword", &a, 0) == 0)
1281 ac->priv.userPasswd = a;
1284 STG_LOCKER lock(&mutex);
1285 errorStr = "Error in parameter ChgPassword";
1286 printfd(__FILE__, "FILES_STORE::RestoreAdmin - chgpassword read failed for admin '%s'\n", ac->login.c_str());
1290 if (cf.ReadUShortInt("ChgStat", &a, 0) == 0)
1291 ac->priv.userStat = a;
1294 STG_LOCKER lock(&mutex);
1295 errorStr = "Error in parameter ChgStat";
1296 printfd(__FILE__, "FILES_STORE::RestoreAdmin - chgstat read failed for admin '%s'\n", ac->login.c_str());
1300 if (cf.ReadUShortInt("ChgCash", &a, 0) == 0)
1301 ac->priv.userCash = a;
1304 STG_LOCKER lock(&mutex);
1305 errorStr = "Error in parameter ChgCash";
1306 printfd(__FILE__, "FILES_STORE::RestoreAdmin - chgcash read failed for admin '%s'\n", ac->login.c_str());
1310 if (cf.ReadUShortInt("UsrAddDel", &a, 0) == 0)
1311 ac->priv.userAddDel = a;
1314 STG_LOCKER lock(&mutex);
1315 errorStr = "Error in parameter UsrAddDel";
1316 printfd(__FILE__, "FILES_STORE::RestoreAdmin - usradddel read failed for admin '%s'\n", ac->login.c_str());
1320 if (cf.ReadUShortInt("ChgAdmin", &a, 0) == 0)
1321 ac->priv.adminChg = a;
1324 STG_LOCKER lock(&mutex);
1325 errorStr = "Error in parameter ChgAdmin";
1326 printfd(__FILE__, "FILES_STORE::RestoreAdmin - chgadmin read failed for admin '%s'\n", ac->login.c_str());
1330 if (cf.ReadUShortInt("ChgTariff", &a, 0) == 0)
1331 ac->priv.tariffChg = a;
1334 STG_LOCKER lock(&mutex);
1335 errorStr = "Error in parameter ChgTariff";
1336 printfd(__FILE__, "FILES_STORE::RestoreAdmin - chgtariff read failed for admin '%s'\n", ac->login.c_str());
1340 if (cf.ReadUShortInt("ChgService", &a, 0) == 0)
1341 ac->priv.serviceChg = a;
1343 ac->priv.serviceChg = 0;
1345 if (cf.ReadUShortInt("ChgCorp", &a, 0) == 0)
1346 ac->priv.corpChg = a;
1348 ac->priv.corpChg = 0;
1352 //-----------------------------------------------------------------------------
1353 int FILES_STORE::AddTariff(const std::string & name) const
1355 std::string fileName;
1356 strprintf(&fileName, "%s/%s.tf", storeSettings.GetTariffsDir().c_str(), name.c_str());
1357 if (Touch(fileName))
1359 STG_LOCKER lock(&mutex);
1360 errorStr = "Cannot create file " + fileName;
1361 printfd(__FILE__, "FILES_STORE::AddTariff - failed to add tariff '%s'\n", name.c_str());
1366 //-----------------------------------------------------------------------------
1367 int FILES_STORE::DelTariff(const std::string & name) const
1369 std::string fileName;
1370 strprintf(&fileName, "%s/%s.tf", storeSettings.GetTariffsDir().c_str(), name.c_str());
1371 if (unlink(fileName.c_str()))
1373 STG_LOCKER lock(&mutex);
1374 errorStr = "unlink failed. Message: '";
1375 errorStr += strerror(errno);
1377 printfd(__FILE__, "FILES_STORE::DelTariff - unlink failed. Message: '%s'\n", strerror(errno));
1381 //-----------------------------------------------------------------------------
1382 int FILES_STORE::RestoreTariff(TARIFF_DATA * td, const std::string & tariffName) const
1384 std::string fileName = storeSettings.GetTariffsDir() + "/" + tariffName + ".tf";
1385 CONFIGFILE conf(fileName);
1387 td->tariffConf.name = tariffName;
1389 if (conf.Error() != 0)
1391 STG_LOCKER lock(&mutex);
1392 errorStr = "Cannot read file " + fileName;
1393 printfd(__FILE__, "FILES_STORE::RestoreTariff - failed to read tariff '%s'\n", tariffName.c_str());
1398 for (int i = 0; i<DIR_NUM; i++)
1400 strprintf(¶m, "Time%d", i);
1401 if (conf.ReadString(param, &str, "00:00-00:00") < 0)
1403 STG_LOCKER lock(&mutex);
1404 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1405 printfd(__FILE__, "FILES_STORE::RestoreTariff - time%d read failed for tariff '%s'\n", i, tariffName.c_str());
1409 ParseTariffTimeStr(str.c_str(),
1410 td->dirPrice[i].hDay,
1411 td->dirPrice[i].mDay,
1412 td->dirPrice[i].hNight,
1413 td->dirPrice[i].mNight);
1415 strprintf(¶m, "PriceDayA%d", i);
1416 if (conf.ReadDouble(param, &td->dirPrice[i].priceDayA, 0.0) < 0)
1418 STG_LOCKER lock(&mutex);
1419 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1420 printfd(__FILE__, "FILES_STORE::RestoreTariff - pricedaya read failed for tariff '%s'\n", tariffName.c_str());
1423 td->dirPrice[i].priceDayA /= (1024*1024);
1425 strprintf(¶m, "PriceDayB%d", i);
1426 if (conf.ReadDouble(param, &td->dirPrice[i].priceDayB, 0.0) < 0)
1428 STG_LOCKER lock(&mutex);
1429 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1430 printfd(__FILE__, "FILES_STORE::RestoreTariff - pricedayb read failed for tariff '%s'\n", tariffName.c_str());
1433 td->dirPrice[i].priceDayB /= (1024*1024);
1435 strprintf(¶m, "PriceNightA%d", i);
1436 if (conf.ReadDouble(param, &td->dirPrice[i].priceNightA, 0.0) < 0)
1438 STG_LOCKER lock(&mutex);
1439 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1440 printfd(__FILE__, "FILES_STORE::RestoreTariff - pricenighta read failed for tariff '%s'\n", tariffName.c_str());
1443 td->dirPrice[i].priceNightA /= (1024*1024);
1445 strprintf(¶m, "PriceNightB%d", i);
1446 if (conf.ReadDouble(param, &td->dirPrice[i].priceNightB, 0.0) < 0)
1448 STG_LOCKER lock(&mutex);
1449 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1450 printfd(__FILE__, "FILES_STORE::RestoreTariff - pricenightb read failed for tariff '%s'\n", tariffName.c_str());
1453 td->dirPrice[i].priceNightB /= (1024*1024);
1455 strprintf(¶m, "Threshold%d", i);
1456 if (conf.ReadInt(param, &td->dirPrice[i].threshold, 0) < 0)
1458 STG_LOCKER lock(&mutex);
1459 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1460 printfd(__FILE__, "FILES_STORE::RestoreTariff - threshold read failed for tariff '%s'\n", tariffName.c_str());
1464 strprintf(¶m, "SinglePrice%d", i);
1465 if (conf.ReadInt(param, &td->dirPrice[i].singlePrice, 0) < 0)
1467 STG_LOCKER lock(&mutex);
1468 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1469 printfd(__FILE__, "FILES_STORE::RestoreTariff - singleprice read failed for tariff '%s'\n", tariffName.c_str());
1473 strprintf(¶m, "NoDiscount%d", i);
1474 if (conf.ReadInt(param, &td->dirPrice[i].noDiscount, 0) < 0)
1476 STG_LOCKER lock(&mutex);
1477 errorStr = "Cannot read tariff " + tariffName + ". Parameter " + param;
1478 printfd(__FILE__, "FILES_STORE::RestoreTariff - nodiscount read failed for tariff '%s'\n", tariffName.c_str());
1483 if (conf.ReadDouble("Fee", &td->tariffConf.fee, 0) < 0)
1485 STG_LOCKER lock(&mutex);
1486 errorStr = "Cannot read tariff " + tariffName + ". Parameter Fee";
1487 printfd(__FILE__, "FILES_STORE::RestoreTariff - fee read failed for tariff '%s'\n", tariffName.c_str());
1491 if (conf.ReadDouble("Free", &td->tariffConf.free, 0) < 0)
1493 STG_LOCKER lock(&mutex);
1494 errorStr = "Cannot read tariff " + tariffName + ". Parameter Free";
1495 printfd(__FILE__, "FILES_STORE::RestoreTariff - free read failed for tariff '%s'\n", tariffName.c_str());
1499 if (conf.ReadDouble("PassiveCost", &td->tariffConf.passiveCost, 0) < 0)
1501 STG_LOCKER lock(&mutex);
1502 errorStr = "Cannot read tariff " + tariffName + ". Parameter PassiveCost";
1503 printfd(__FILE__, "FILES_STORE::RestoreTariff - passivecost read failed for tariff '%s'\n", tariffName.c_str());
1507 if (conf.ReadString("TraffType", &str, "") < 0)
1509 STG_LOCKER lock(&mutex);
1510 errorStr = "Cannot read tariff " + tariffName + ". Parameter TraffType";
1511 printfd(__FILE__, "FILES_STORE::RestoreTariff - trafftype read failed for tariff '%s'\n", tariffName.c_str());
1515 td->tariffConf.traffType = TARIFF::StringToTraffType(str);
1517 if (conf.ReadString("Period", &str, "month") < 0)
1518 td->tariffConf.period = TARIFF::MONTH;
1520 td->tariffConf.period = TARIFF::StringToPeriod(str);
1522 if (conf.ReadString("ChangePolicy", &str, "allow") < 0)
1523 td->tariffConf.changePolicy = TARIFF::ALLOW;
1525 td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str);
1527 if (conf.ReadTime("ChangePolicyTimeout", &td->tariffConf.changePolicyTimeout, 0) < 0)
1529 STG_LOCKER lock(&mutex);
1530 errorStr = "Cannot read tariff " + tariffName + ". Parameter ChangePolicyTimeout";
1531 printfd(__FILE__, "FILES_STORE::RestoreTariff - changepolicytimeout read failed for tariff '%s'\n", tariffName.c_str());
1536 //-----------------------------------------------------------------------------
1537 int FILES_STORE::SaveTariff(const TARIFF_DATA & td, const std::string & tariffName) const
1539 std::string fileName = storeSettings.GetTariffsDir() + "/" + tariffName + ".tf";
1542 CONFIGFILE cf(fileName, true);
1548 STG_LOCKER lock(&mutex);
1549 errorStr = "Error writing tariff " + tariffName;
1550 printfd(__FILE__, "FILES_STORE::RestoreTariff - failed to save tariff '%s'\n", tariffName.c_str());
1555 for (int i = 0; i < DIR_NUM; i++)
1557 strprintf(¶m, "PriceDayA%d", i);
1558 cf.WriteDouble(param, td.dirPrice[i].priceDayA * pt_mega);
1560 strprintf(¶m, "PriceDayB%d", i);
1561 cf.WriteDouble(param, td.dirPrice[i].priceDayB * pt_mega);
1563 strprintf(¶m, "PriceNightA%d", i);
1564 cf.WriteDouble(param, td.dirPrice[i].priceNightA * pt_mega);
1566 strprintf(¶m, "PriceNightB%d", i);
1567 cf.WriteDouble(param, td.dirPrice[i].priceNightB * pt_mega);
1569 strprintf(¶m, "Threshold%d", i);
1570 cf.WriteInt(param, td.dirPrice[i].threshold);
1573 strprintf(¶m, "Time%d", i);
1575 strprintf(&s, "%0d:%0d-%0d:%0d",
1576 td.dirPrice[i].hDay,
1577 td.dirPrice[i].mDay,
1578 td.dirPrice[i].hNight,
1579 td.dirPrice[i].mNight);
1581 cf.WriteString(param, s);
1583 strprintf(¶m, "NoDiscount%d", i);
1584 cf.WriteInt(param, td.dirPrice[i].noDiscount);
1586 strprintf(¶m, "SinglePrice%d", i);
1587 cf.WriteInt(param, td.dirPrice[i].singlePrice);
1590 cf.WriteDouble("PassiveCost", td.tariffConf.passiveCost);
1591 cf.WriteDouble("Fee", td.tariffConf.fee);
1592 cf.WriteDouble("Free", td.tariffConf.free);
1593 cf.WriteString("TraffType", TARIFF::TraffTypeToString(td.tariffConf.traffType));
1594 cf.WriteString("Period", TARIFF::PeriodToString(td.tariffConf.period));
1595 cf.WriteString("ChangePolicy", TARIFF::ChangePolicyToString(td.tariffConf.changePolicy));
1596 cf.WriteTime("ChangePolicyTimeout", td.tariffConf.changePolicyTimeout);
1601 //-----------------------------------------------------------------------------*/
1602 int FILES_STORE::AddService(const std::string & name) const
1604 std::string fileName;
1605 strprintf(&fileName, "%s/%s.serv", storeSettings.GetServicesDir().c_str(), name.c_str());
1607 if (Touch(fileName))
1609 STG_LOCKER lock(&mutex);
1610 errorStr = "Cannot create file " + fileName;
1611 printfd(__FILE__, "FILES_STORE::AddService - failed to add service '%s'\n", name.c_str());
1617 //-----------------------------------------------------------------------------*/
1618 int FILES_STORE::DelService(const std::string & name) const
1620 std::string fileName;
1621 strprintf(&fileName, "%s/%s.serv", storeSettings.GetServicesDir().c_str(), name.c_str());
1622 if (unlink(fileName.c_str()))
1624 STG_LOCKER lock(&mutex);
1625 errorStr = "unlink failed. Message: '";
1626 errorStr += strerror(errno);
1628 printfd(__FILE__, "FILES_STORE::DelAdmin - unlink failed. Message: '%s'\n", strerror(errno));
1632 //-----------------------------------------------------------------------------*/
1633 int FILES_STORE::SaveService(const SERVICE_CONF & conf) const
1635 std::string fileName;
1637 strprintf(&fileName, "%s/%s.serv", storeSettings.GetServicesDir().c_str(), conf.name.c_str());
1640 CONFIGFILE cf(fileName, true);
1646 STG_LOCKER lock(&mutex);
1647 errorStr = "Cannot write service " + conf.name + ". " + fileName;
1648 printfd(__FILE__, "FILES_STORE::SaveService - failed to save service '%s'\n", conf.name.c_str());
1652 cf.WriteString("name", conf.name);
1653 cf.WriteString("comment", conf.comment);
1654 cf.WriteDouble("cost", conf.cost);
1655 cf.WriteInt("pay_day", conf.payDay);
1660 //-----------------------------------------------------------------------------
1661 int FILES_STORE::RestoreService(SERVICE_CONF * conf, const std::string & name) const
1663 std::string fileName;
1664 strprintf(&fileName, "%s/%s.serv", storeSettings.GetServicesDir().c_str(), name.c_str());
1665 CONFIGFILE cf(fileName);
1669 STG_LOCKER lock(&mutex);
1670 errorStr = "Cannot open " + fileName;
1671 printfd(__FILE__, "FILES_STORE::RestoreService - failed to restore service '%s'\n", name.c_str());
1675 if (cf.ReadString("name", &conf->name, name))
1677 STG_LOCKER lock(&mutex);
1678 errorStr = "Error in parameter 'name'";
1679 printfd(__FILE__, "FILES_STORE::RestoreService - name read failed for service '%s'\n", name.c_str());
1683 if (cf.ReadString("comment", &conf->comment, ""))
1685 STG_LOCKER lock(&mutex);
1686 errorStr = "Error in parameter 'comment'";
1687 printfd(__FILE__, "FILES_STORE::RestoreService - comment read failed for service '%s'\n", name.c_str());
1691 if (cf.ReadDouble("cost", &conf->cost, 0.0))
1693 STG_LOCKER lock(&mutex);
1694 errorStr = "Error in parameter 'cost'";
1695 printfd(__FILE__, "FILES_STORE::RestoreService - cost read failed for service '%s'\n", name.c_str());
1699 unsigned short value = 0;
1700 if (cf.ReadUShortInt("pay_day", &value, 0))
1702 STG_LOCKER lock(&mutex);
1703 errorStr = "Error in parameter 'pay_day'";
1704 printfd(__FILE__, "FILES_STORE::RestoreService - pay day read failed for service '%s'\n", name.c_str());
1707 conf->payDay = value;
1711 //-----------------------------------------------------------------------------
1712 int FILES_STORE::WriteDetailedStat(const std::map<IP_DIR_PAIR, STAT_NODE> & statTree,
1714 const std::string & login) const
1716 char fn[FN_STR_LEN];
1717 char dn[FN_STR_LEN];
1724 snprintf(dn, FN_STR_LEN, "%s/%s/detail_stat", storeSettings.GetUsersDir().c_str(), login.c_str());
1725 if (access(dn, F_OK) != 0)
1727 if (mkdir(dn, 0700) != 0)
1729 STG_LOCKER lock(&mutex);
1730 errorStr = "Directory \'" + std::string(dn) + "\' cannot be created.";
1731 printfd(__FILE__, "FILES_STORE::WriteDetailStat - mkdir failed. Message: '%s'\n", strerror(errno));
1736 int e = chown(dn, storeSettings.GetStatUID(), storeSettings.GetStatGID());
1737 e += chmod(dn, storeSettings.GetStatModeDir());
1741 STG_LOCKER lock(&mutex);
1742 printfd(__FILE__, "FILES_STORE::WriteDetailStat - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
1747 if (lt->tm_hour == 0 && lt->tm_min <= 5)
1753 snprintf(dn, FN_STR_LEN, "%s/%s/detail_stat/%d",
1754 storeSettings.GetUsersDir().c_str(),
1758 if (access(dn, F_OK) != 0)
1760 if (mkdir(dn, 0700) != 0)
1762 STG_LOCKER lock(&mutex);
1763 errorStr = "Directory \'" + std::string(dn) + "\' cannot be created.";
1764 printfd(__FILE__, "FILES_STORE::WriteDetailStat - mkdir failed. Message: '%s'\n", strerror(errno));
1769 e = chown(dn, storeSettings.GetStatUID(), storeSettings.GetStatGID());
1770 e += chmod(dn, storeSettings.GetStatModeDir());
1774 STG_LOCKER lock(&mutex);
1775 printfd(__FILE__, "FILES_STORE::WriteDetailStat - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
1778 snprintf(dn, FN_STR_LEN, "%s/%s/detail_stat/%d/%s%d",
1779 storeSettings.GetUsersDir().c_str(),
1782 lt->tm_mon+1 < 10 ? "0" : "",
1784 if (access(dn, F_OK) != 0)
1786 if (mkdir(dn, 0700) != 0)
1788 STG_LOCKER lock(&mutex);
1789 errorStr = "Directory \'" + std::string(dn) + "\' cannot be created.";
1790 printfd(__FILE__, "FILES_STORE::WriteDetailStat - mkdir failed. Message: '%s'\n", strerror(errno));
1795 e = chown(dn, storeSettings.GetStatUID(), storeSettings.GetStatGID());
1796 e += chmod(dn, storeSettings.GetStatModeDir());
1800 STG_LOCKER lock(&mutex);
1801 printfd(__FILE__, "FILES_STORE::WriteDetailStat - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
1804 snprintf(fn, FN_STR_LEN, "%s/%s%d", dn, lt->tm_mday < 10 ? "0" : "", lt->tm_mday);
1806 statFile = fopen (fn, "at");
1810 STG_LOCKER lock(&mutex);
1811 errorStr = "File \'" + std::string(fn) + "\' cannot be written.";
1812 printfd(__FILE__, "FILES_STORE::WriteDetailStat - fopen failed. Message: '%s'\n", strerror(errno));
1819 lt1 = localtime(&lastStat);
1828 lt2 = localtime(&t);
1834 if (fprintf(statFile, "-> %02d.%02d.%02d - %02d.%02d.%02d\n",
1835 h1, m1, s1, h2, m2, s2) < 0)
1837 STG_LOCKER lock(&mutex);
1838 errorStr = std::string("fprint failed. Message: '") + strerror(errno) + "'";
1839 printfd(__FILE__, "FILES_STORE::WriteDetailStat - fprintf failed. Message: '%s'\n", strerror(errno));
1844 std::map<IP_DIR_PAIR, STAT_NODE>::const_iterator stIter;
1845 stIter = statTree.begin();
1847 while (stIter != statTree.end())
1850 x2str(stIter->second.up, u);
1851 x2str(stIter->second.down, d);
1852 #ifdef TRAFF_STAT_WITH_PORTS
1853 if (fprintf(statFile, "%17s:%hu\t%15d\t%15s\t%15s\t%f\n",
1854 inet_ntostring(stIter->first.ip).c_str(),
1859 stIter->second.cash) < 0)
1861 STG_LOCKER lock(&mutex);
1862 errorStr = "fprint failed. Message: '";
1863 errorStr += strerror(errno);
1865 printfd(__FILE__, "FILES_STORE::WriteDetailStat - fprintf failed. Message: '%s'\n", strerror(errno));
1870 if (fprintf(statFile, "%17s\t%15d\t%15s\t%15s\t%f\n",
1871 inet_ntostring(stIter->first.ip).c_str(),
1875 stIter->second.cash) < 0)
1877 STG_LOCKER lock(&mutex);
1878 errorStr = std::string("fprint failed. Message: '");
1879 errorStr += strerror(errno);
1881 printfd(__FILE__, "FILES_STORE::WriteDetailStat - fprintf failed. Message: '%s'\n", strerror(errno));
1892 e = chown(fn, storeSettings.GetStatUID(), storeSettings.GetStatGID());
1893 e += chmod(fn, storeSettings.GetStatMode());
1897 STG_LOCKER lock(&mutex);
1898 printfd(__FILE__, "FILES_STORE::WriteDetailStat - chmod/chown failed for user '%s'. Error: '%s'\n", login.c_str(), strerror(errno));
1903 //-----------------------------------------------------------------------------
1904 int FILES_STORE::AddMessage(STG_MSG * msg, const std::string & login) const
1910 strprintf(&dn, "%s/%s/messages", storeSettings.GetUsersDir().c_str(), login.c_str());
1911 if (access(dn.c_str(), F_OK) != 0)
1913 if (mkdir(dn.c_str(), 0700) != 0)
1915 STG_LOCKER lock(&mutex);
1916 errorStr = "Directory \'";
1918 errorStr += "\' cannot be created.";
1919 printfd(__FILE__, "FILES_STORE::AddMessage - mkdir failed. Message: '%s'\n", strerror(errno));
1924 chmod(dn.c_str(), storeSettings.GetConfModeDir());
1926 gettimeofday(&tv, NULL);
1928 msg->header.id = ((long long)tv.tv_sec) * 1000000 + ((long long)tv.tv_usec);
1929 strprintf(&fn, "%s/%lld", dn.c_str(), msg->header.id);
1933 STG_LOCKER lock(&mutex);
1934 errorStr = "File \'";
1936 errorStr += "\' cannot be writen.";
1937 printfd(__FILE__, "FILES_STORE::AddMessage - fopen failed. Message: '%s'\n", strerror(errno));
1941 return EditMessage(*msg, login);
1943 //-----------------------------------------------------------------------------
1944 int FILES_STORE::EditMessage(const STG_MSG & msg, const std::string & login) const
1946 std::string fileName;
1949 strprintf(&fileName, "%s/%s/messages/%lld", storeSettings.GetUsersDir().c_str(), login.c_str(), msg.header.id);
1951 if (access(fileName.c_str(), F_OK) != 0)
1954 x2str(msg.header.id, idstr);
1955 STG_LOCKER lock(&mutex);
1956 errorStr = "Message for user \'";
1957 errorStr += login + "\' with ID \'";
1958 errorStr += idstr + "\' does not exist.";
1959 printfd(__FILE__, "FILES_STORE::EditMessage - %s\n", errorStr.c_str());
1963 Touch(fileName + ".new");
1965 msgFile = fopen((fileName + ".new").c_str(), "wt");
1968 STG_LOCKER lock(&mutex);
1969 errorStr = "File \'" + fileName + "\' cannot be writen.";
1970 printfd(__FILE__, "FILES_STORE::EditMessage - fopen failed. Message: '%s'\n", strerror(errno));
1975 res &= (fprintf(msgFile, "%u\n", msg.header.type) >= 0);
1976 res &= (fprintf(msgFile, "%u\n", msg.header.lastSendTime) >= 0);
1977 res &= (fprintf(msgFile, "%u\n", msg.header.creationTime) >= 0);
1978 res &= (fprintf(msgFile, "%u\n", msg.header.showTime) >= 0);
1979 res &= (fprintf(msgFile, "%d\n", msg.header.repeat) >= 0);
1980 res &= (fprintf(msgFile, "%u\n", msg.header.repeatPeriod) >= 0);
1981 res &= (fprintf(msgFile, "%s", msg.text.c_str()) >= 0);
1985 STG_LOCKER lock(&mutex);
1986 errorStr = std::string("fprintf failed. Message: '") + strerror(errno) + "'";
1987 printfd(__FILE__, "FILES_STORE::EditMessage - fprintf failed. Message: '%s'\n", strerror(errno));
1994 chmod((fileName + ".new").c_str(), storeSettings.GetConfMode());
1996 if (rename((fileName + ".new").c_str(), fileName.c_str()) < 0)
1998 STG_LOCKER lock(&mutex);
1999 errorStr = "Error moving dir from " + fileName + ".new to " + fileName;
2000 printfd(__FILE__, "FILES_STORE::EditMessage - rename failed. Message: '%s'\n", strerror(errno));
2006 //-----------------------------------------------------------------------------
2007 int FILES_STORE::GetMessage(uint64_t id, STG_MSG * msg, const std::string & login) const
2010 strprintf(&fn, "%s/%s/messages/%lld", storeSettings.GetUsersDir().c_str(), login.c_str(), id);
2011 msg->header.id = id;
2012 return ReadMessage(fn, &msg->header, &msg->text);
2014 //-----------------------------------------------------------------------------
2015 int FILES_STORE::DelMessage(uint64_t id, const std::string & login) const
2018 strprintf(&fn, "%s/%s/messages/%lld", storeSettings.GetUsersDir().c_str(), login.c_str(), id);
2020 return unlink(fn.c_str());
2022 //-----------------------------------------------------------------------------
2023 int FILES_STORE::GetMessageHdrs(std::vector<STG_MSG_HDR> * hdrsList, const std::string & login) const
2025 std::string dn(storeSettings.GetUsersDir() + "/" + login + "/messages/");
2027 if (access(dn.c_str(), F_OK) != 0)
2032 std::vector<std::string> messages;
2033 GetFileList(&messages, dn, S_IFREG, "");
2035 for (unsigned i = 0; i < messages.size(); i++)
2037 unsigned long long id = 0;
2039 if (str2x(messages[i].c_str(), id))
2041 if (unlink((dn + messages[i]).c_str()))
2043 STG_LOCKER lock(&mutex);
2044 errorStr = std::string("unlink failed. Message: '") + strerror(errno) + "'";
2045 printfd(__FILE__, "FILES_STORE::GetMessageHdrs - unlink failed. Message: '%s'\n", strerror(errno));
2052 if (ReadMessage(dn + messages[i], &hdr, NULL))
2059 if (unlink((dn + messages[i]).c_str()))
2061 STG_LOCKER lock(&mutex);
2062 errorStr = std::string("unlink failed. Message: '") + strerror(errno) + "'";
2063 printfd(__FILE__, "FILES_STORE::GetMessageHdrs - unlink failed. Message: '%s'\n", strerror(errno));
2070 hdrsList->push_back(hdr);
2074 //-----------------------------------------------------------------------------
2075 int FILES_STORE::ReadMessage(const std::string & fileName,
2077 std::string * text) const
2080 msgFile = fopen(fileName.c_str(), "rt");
2083 STG_LOCKER lock(&mutex);
2084 errorStr = "File \'";
2085 errorStr += fileName;
2086 errorStr += "\' cannot be openned.";
2087 printfd(__FILE__, "FILES_STORE::ReadMessage - fopen failed. Message: '%s'\n", strerror(errno));
2093 d[1] = &hdr->lastSendTime;
2094 d[2] = &hdr->creationTime;
2095 d[3] = &hdr->showTime;
2096 d[4] = (unsigned*)(&hdr->repeat);
2097 d[5] = &hdr->repeatPeriod;
2099 memset(p, 0, sizeof(p));
2101 for (int pos = 0; pos < 6; pos++)
2103 if (fgets(p, sizeof(p) - 1, msgFile) == NULL) {
2104 STG_LOCKER lock(&mutex);
2105 errorStr = "Cannot read file \'";
2106 errorStr += fileName;
2107 errorStr += "\'. Missing data.";
2108 printfd(__FILE__, "FILES_STORE::ReadMessage - cannot read file (missing data)\n");
2109 printfd(__FILE__, "FILES_STORE::ReadMessage - position: %d\n", pos);
2115 ep = strrchr(p, '\r');
2117 ep = strrchr(p, '\n');
2122 STG_LOCKER lock(&mutex);
2123 errorStr = "Cannot read file \'";
2124 errorStr += fileName;
2125 errorStr += "\'. Missing data.";
2126 printfd(__FILE__, "FILES_STORE::ReadMessage - cannot read file (feof)\n");
2127 printfd(__FILE__, "FILES_STORE::ReadMessage - position: %d\n", pos);
2132 if (str2x(p, *(d[pos])))
2134 STG_LOCKER lock(&mutex);
2135 errorStr = "Cannot read file \'";
2136 errorStr += fileName;
2137 errorStr += "\'. Incorrect value. \'";
2140 printfd(__FILE__, "FILES_STORE::ReadMessage - incorrect value\n");
2147 memset(txt, 0, sizeof(txt));
2150 text->erase(text->begin(), text->end());
2151 while (!feof(msgFile))
2154 if (fgets(txt, sizeof(txt) - 1, msgFile) == NULL) {
2164 //-----------------------------------------------------------------------------
2165 int FILES_STORE::Touch(const std::string & path) const
2167 FILE * f = fopen(path.c_str(), "wb");
2175 //-----------------------------------------------------------------------------
2176 int GetFileList(std::vector<std::string> * fileList, const std::string & directory, mode_t mode, const std::string & ext)
2178 DIR * d = opendir(directory.c_str());
2182 printfd(__FILE__, "GetFileList - Failed to open dir '%s': '%s'\n", directory.c_str(), strerror(errno));
2187 while ((entry = readdir(d)))
2189 if (!(strcmp(entry->d_name, ".") && strcmp(entry->d_name, "..")))
2192 std::string str = directory + "/" + std::string(entry->d_name);
2195 if (stat(str.c_str(), &st))
2198 if (!(st.st_mode & mode)) // Filter by mode
2204 size_t d_nameLen = strlen(entry->d_name);
2205 if (d_nameLen <= ext.size())
2208 if (ext == entry->d_name + (d_nameLen - ext.size()))
2210 entry->d_name[d_nameLen - ext.size()] = 0;
2211 fileList->push_back(entry->d_name);
2216 fileList->push_back(entry->d_name);
2224 //-----------------------------------------------------------------------------