1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*
* accountsettings.cpp - Client Switcher plugin
* Copyright (C) 2010 Aleksey Andreev
*
* 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.
*
* You can also redistribute and/or modify this program under the
* terms of the Psi License, specified in the accompanied COPYING
* file, as published by the Psi Project; either dated January 1st,
* 2005, 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, see <https://www.gnu.org/licenses/>.
*
*/
#include "accountsettings.h"
AccountSettings::AccountSettings()
{
init();
return;
}
AccountSettings::AccountSettings(const QString &set_str) { fromString(set_str); }
AccountSettings::~AccountSettings() { }
bool AccountSettings::isValid() { return !account_id.isEmpty(); }
bool AccountSettings::isEmpty()
{
if (!enable_contacts && !enable_conferences && response_mode == RespAllow && !lock_time_requ
&& show_requ_mode == LogNever && log_mode == LogNever) {
if (os_name.isEmpty() && client_name.isEmpty() && caps_node.isEmpty() && caps_version.isEmpty()) {
return true;
}
}
return false;
}
void AccountSettings::fromString(const QString &set_str)
{
QStringList set_list;
int len = set_str.length();
unsigned int sl_cnt = 0;
int st_pos = 0;
for (int i = 0; i < len; i++) {
QChar ch = set_str.at(i);
if (ch == '\\') {
sl_cnt++;
} else if (ch == ';') {
if ((sl_cnt & 1) == 0) { // четное кол-во слешей
set_list.push_back(set_str.mid(st_pos, i - st_pos));
st_pos = i + 1;
}
sl_cnt = 0;
} else {
sl_cnt = 0;
}
}
if (st_pos < len) {
set_list.push_back(set_str.mid(st_pos));
}
len = set_list.size();
for (int i = 0; i < len; i++) {
QStringList param_list = set_list.at(i).split("=");
if (param_list.size() >= 2) {
QString param_name = param_list.takeFirst();
QString param_value = param_list.join("=");
if (param_name == "acc_id") {
account_id = stripSlashes(param_value);
} else if (param_name == "en_cnt") {
enable_contacts = (param_value == "true") ? true : false;
} else if (param_name == "en_cnf") {
enable_conferences = (param_value == "true") ? true : false;
} else if (param_name == "l_req") {
if (param_value == "true")
response_mode = RespNotImpl;
else if (param_value == "ignore")
response_mode = RespIgnore;
else
response_mode = RespAllow;
} else if (param_name == "l_treq") {
lock_time_requ = (param_value == "true") ? true : false;
} else if (param_name == "s_req") {
show_requ_mode = LogNever;
if (param_value == "true" || param_value == "if-repl") {
show_requ_mode = LogIfReplace;
} else if (param_value == "always") {
show_requ_mode = LogAlways;
}
} else if (param_name == "os_nm") {
os_name = stripSlashes(param_value);
} else if (param_name == "cl_nm") {
client_name = stripSlashes(param_value);
} else if (param_name == "cl_ver") {
client_version = stripSlashes(param_value);
} else if (param_name == "cp_nd") {
caps_node = stripSlashes(param_value);
} else if (param_name == "cp_ver") {
caps_version = stripSlashes(param_value);
} else if (param_name == "log") {
log_mode = LogNever;
if (param_value == "true" || param_value == "if-repl") {
log_mode = LogIfReplace;
} else if (param_value == "always") {
log_mode = LogAlways;
}
}
}
}
}
QString AccountSettings::toString()
{
QString s_res = "acc_id=" + addSlashes(account_id);
s_res.append(";en_cnt=").append((enable_contacts) ? "true" : "false");
s_res.append(";en_cnf=").append((enable_conferences) ? "true" : "false");
QString str1;
if (response_mode == RespNotImpl)
str1 = "true";
else if (response_mode == RespIgnore)
str1 = "ignore";
else
str1 = "false";
s_res.append(";l_req=").append(str1);
s_res.append(";l_treq=").append((lock_time_requ) ? "true" : "false");
if (show_requ_mode == LogIfReplace) {
str1 = "if-repl";
} else if (show_requ_mode == LogAlways) {
str1 = "always";
} else {
str1 = "never";
}
s_res.append(";s_req=").append(str1);
s_res.append(";os_nm=").append(addSlashes(os_name));
s_res.append(";cl_nm=").append(addSlashes(client_name));
s_res.append(";cl_ver=").append(addSlashes(client_version));
s_res.append(";cp_nd=").append(addSlashes(caps_node));
s_res.append(";cp_ver=").append(addSlashes(caps_version));
if (log_mode == LogIfReplace) {
str1 = "if-repl";
} else if (log_mode == LogAlways) {
str1 = "always";
} else {
str1 = "never";
}
s_res.append(";log=").append(str1);
return s_res;
}
void AccountSettings::init()
{
account_id = "";
enable_contacts = false;
enable_conferences = false;
response_mode = RespAllow;
lock_time_requ = false;
show_requ_mode = LogNever;
os_name = "";
client_name = "";
client_version = "";
caps_node = "";
caps_version = "";
log_mode = LogNever;
}
QString AccountSettings::addSlashes(QString &str)
{
return str.replace("\\", "\\\\", Qt::CaseSensitive).replace(";", "\\;");
}
QString AccountSettings::stripSlashes(QString &str) { return str.replace("\\;", ";").replace("\\\\", "\\"); }
|