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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
// ---------------------------------------------------------------------------80
// ICQ plugin for Miranda Instant Messenger
// ________________________________________
//
// Copyright © 2001-2004 Richard Hughes, Martin Öberg
// Copyright © 2004-2009 Joe Kucera, Bio
// Copyright © 2012-2017 Miranda NG Team
//
// 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.
//
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// -----------------------------------------------------------------------------
// DESCRIPTION:
//
// ChangeInfo Plugin stuff
// -----------------------------------------------------------------------------
#include "stdafx.h"
void ChangeInfoData::LoadSettingsFromDb(int keepChanged)
{
for (int i = 0; i < settingCount; i++) {
const SettingItem &si = setting[i];
if (si.displayType == LI_DIVIDER)
continue;
SettingItemData &sid = settingData[i];
if (keepChanged && sid.changed)
continue;
if (si.dbType == DBVT_ASCIIZ || si.dbType == DBVT_UTF8)
SAFE_FREE((void**)(char**)&sid.value);
else if (!keepChanged)
sid.value = 0;
sid.changed = 0;
if (si.displayType & LIF_PASSWORD)
continue;
DBVARIANT dbv = { DBVT_DELETED };
if (!ppro->getSetting(NULL, si.szDbSetting, &dbv)) {
switch (dbv.type) {
case DBVT_ASCIIZ:
sid.value = (LPARAM)ppro->getSettingStringUtf(NULL, si.szDbSetting, nullptr);
break;
case DBVT_UTF8:
sid.value = (LPARAM)null_strdup(dbv.pszVal);
break;
case DBVT_WORD:
if (si.displayType & LIF_SIGNED)
sid.value = dbv.sVal;
else
sid.value = dbv.wVal;
break;
case DBVT_BYTE:
if (si.displayType & LIF_SIGNED)
sid.value = dbv.cVal;
else
sid.value = dbv.bVal;
break;
#ifdef _DEBUG
default:
MessageBoxA(nullptr, "That's not supposed to happen either", "Huh?", MB_OK);
break;
#endif
}
db_free(&dbv);
}
char buf[MAX_PATH];
wchar_t tbuf[MAX_PATH];
if (make_unicode_string_static(GetItemSettingText(i, buf, _countof(buf)), tbuf, _countof(tbuf)))
ListView_SetItemText(hwndList, i, 1, tbuf);
}
}
void ChangeInfoData::FreeStoredDbSettings(void)
{
for (int i = 0; i < settingCount; i++)
if (setting[i].dbType == DBVT_ASCIIZ || setting[i].dbType == DBVT_UTF8)
SAFE_FREE((void**)&settingData[i].value);
}
int ChangeInfoData::ChangesMade(void)
{
for (int i = 0; i < settingCount; i++)
if (settingData[i].changed)
return 1;
return 0;
}
void ChangeInfoData::ClearChangeFlags(void)
{
for (int i = 0; i < settingCount; i++)
settingData[i].changed = 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
struct PwConfirmDlgParam
{
CIcqProto* ppro;
char* Pass;
};
static INT_PTR CALLBACK PwConfirmDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
PwConfirmDlgParam* dat = (PwConfirmDlgParam*)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
switch (msg) {
case WM_INITDIALOG:
TranslateDialogDefault(hwndDlg);
SetWindowLongPtr(hwndDlg, GWLP_USERDATA, lParam);
SendDlgItemMessage(hwndDlg, IDC_PASSWORD, EM_LIMITTEXT, PASSWORDMAXLEN, 0);
return TRUE;
case WM_COMMAND:
switch (LOWORD(wParam)) {
case IDOK:
{
char szTest[16];
GetDlgItemTextA(hwndDlg, IDC_OLDPASS, szTest, _countof(szTest));
if (mir_strcmp(szTest, dat->ppro->GetUserPassword(TRUE))) {
MessageBox(hwndDlg, TranslateT("The password does not match your current password. Check Caps Lock and try again."), TranslateT("Change ICQ Details"), MB_OK);
SendDlgItemMessage(hwndDlg, IDC_OLDPASS, EM_SETSEL, 0, (LPARAM)-1);
SetFocus(GetDlgItem(hwndDlg, IDC_OLDPASS));
break;
}
GetDlgItemTextA(hwndDlg, IDC_PASSWORD, szTest, _countof(szTest));
if (mir_strcmp(szTest, dat->Pass)) {
MessageBox(hwndDlg, TranslateT("The password does not match the password you originally entered. Check Caps Lock and try again."), TranslateT("Change ICQ Details"), MB_OK);
SendDlgItemMessage(hwndDlg, IDC_PASSWORD, EM_SETSEL, 0, (LPARAM)-1);
SetFocus(GetDlgItem(hwndDlg, IDC_PASSWORD));
break;
}
}
case IDCANCEL:
EndDialog(hwndDlg, wParam);
break;
}
break;
}
return FALSE;
}
int ChangeInfoData::SaveSettingsToDb(HWND hwnd)
{
int ret = 1;
for (int i = 0; i < settingCount; i++) {
SettingItemData &sid = settingData[i];
if (!sid.changed)
continue;
const SettingItem &si = setting[i];
if (!(si.displayType & LIF_ZEROISVALID) && sid.value == 0) {
ppro->delSetting(si.szDbSetting);
continue;
}
switch (si.dbType) {
case DBVT_ASCIIZ:
if (*(char*)sid.value)
db_set_utf(NULL, ppro->m_szModuleName, si.szDbSetting, (char*)sid.value);
else
ppro->delSetting(si.szDbSetting);
break;
case DBVT_UTF8:
if (*(char*)sid.value)
db_set_utf(NULL, ppro->m_szModuleName, si.szDbSetting, (char*)sid.value);
else
ppro->delSetting(si.szDbSetting);
break;
case DBVT_WORD:
ppro->setWord(si.szDbSetting, (WORD)sid.value);
break;
case DBVT_BYTE:
ppro->setByte(si.szDbSetting, (BYTE)sid.value);
break;
}
}
return ret;
}
|