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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
/*
FTP File YM plugin
Copyright (C) 2007-2010 Jan Holub
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 version 2
of the License.
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 <http://www.gnu.org/licenses/>.
*/
#include "common.h"
extern Options &opt;
extern UploadDialog *uDlg;
int Utils::getDeleteTimeMin()
{
switch (opt.timeRange)
{
case (Options::TR_MINUTES): return (opt.iDeleteTime);
case (Options::TR_HOURS): return (opt.iDeleteTime * 60);
case (Options::TR_DAYS): return (opt.iDeleteTime * 60 * 24);
}
return -1;
}
int Utils::msgBox(TCHAR *stzMsg, UINT uType)
{
HWND hwnd = (uDlg != NULL) ? uDlg->hwnd : 0;
return MessageBox(hwnd, stzMsg, TranslateT("FTP File"), uType);
}
int Utils::msgBoxA(char *szMsg, UINT uType)
{
HWND hwnd = (uDlg != NULL) ? uDlg->hwnd : 0;
return MessageBoxA(hwnd, szMsg, Translate("FTP File"), uType);
}
HICON Utils::loadIconEx(char *szName)
{
char buff[100];
mir_snprintf(buff, sizeof(buff), "%s_%s", MODULE, szName);
return Skin_GetIcon(buff);
}
TCHAR *Utils::getFileNameFromPath(TCHAR *stzPath)
{
TCHAR *pch = _tcsrchr(stzPath, '\\');
if (pch) return pch + 1;
else return _T("file.zip");
}
TCHAR *Utils::getTextFragment(TCHAR *stzText, size_t length, TCHAR *buff)
{
if (_tcslen(stzText) > length)
{
_tcscpy(buff, stzText);
buff[length - 1] = 0;
_tcscat(buff, _T("..."));
return buff;
}
return stzText;
}
void Utils::copyToClipboard(char *szText)
{
if (szText)
{
if (OpenClipboard(NULL))
{
EmptyClipboard();
HGLOBAL hClipboardData = GlobalAlloc(GMEM_DDESHARE, 1024);
char *pchData = (char *)GlobalLock(hClipboardData);
strcpy(pchData, szText);
GlobalUnlock(hClipboardData);
SetClipboardData(CF_TEXT, hClipboardData);
CloseClipboard();
}
}
}
const char from_chars[] = "àáâãäå¸æçèéêëìíîïðñòóôõö÷øùúûüýþÿÀÁÂÃÄŨÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß !@#$%^&=,{}[];'`";
const char to_chars[] = "abvgdeezziiklmnoprstufhccwwqyqeuaABVGDEEZZIIKLMNOPRSTUFHCCWWQYQEUA_________________";
char* Utils::makeSafeString(TCHAR *input, char *output)
{
char *buff = mir_t2a(input);
size_t length = strlen(buff);
for (UINT i = 0; i < length; i++)
{
for (int j = 0; from_chars[j] != 0; j++)
{
if (buff[i] == from_chars[j])
{
buff[i] = to_chars[j];
break;
}
}
}
strcpy(output, buff);
FREE(buff);
return output;
}
void Utils::curlSetOpt(CURL *hCurl, ServerList::FTP *ftp, char *url, struct curl_slist *headerList, char *errorBuff)
{
char buff[256];
curl_easy_setopt(hCurl, CURLOPT_ERRORBUFFER, errorBuff);
curl_easy_setopt(hCurl, CURLOPT_POSTQUOTE, headerList);
curl_easy_setopt(hCurl, CURLOPT_NOPROGRESS, 1);
curl_easy_setopt(hCurl, CURLOPT_URL, url);
curl_easy_setopt(hCurl, CURLOPT_PORT, ftp->iPort);
curl_easy_setopt(hCurl, CURLOPT_CONNECTTIMEOUT, 30);
curl_easy_setopt(hCurl, CURLOPT_FTP_RESPONSE_TIMEOUT, 20);
curl_easy_setopt(hCurl, CURLOPT_FTP_USE_EPRT, 0);
curl_easy_setopt(hCurl, CURLOPT_FTP_USE_EPSV, 0);
if (ftp->bPassive)
curl_easy_setopt(hCurl, CURLOPT_FTPPORT, 0);
else if (!DB::getAString(0, MODULE, "LocalIP", buff))
curl_easy_setopt(hCurl, CURLOPT_FTPPORT, buff);
else
curl_easy_setopt(hCurl, CURLOPT_FTPPORT, "-");
mir_snprintf(buff, sizeof(buff), "%s:%s", ftp->szUser, ftp->szPass);
curl_easy_setopt(hCurl, CURLOPT_USERPWD, buff);
if (ftp->ftpProto == ServerList::FTP::FT_SSL_EXPLICIT || ftp->ftpProto == ServerList::FTP::FT_SSL_IMPLICIT)
{
curl_easy_setopt(hCurl, CURLOPT_USE_SSL, CURLUSESSL_ALL);
curl_easy_setopt(hCurl, CURLOPT_FTPSSLAUTH, CURLFTPAUTH_DEFAULT);
curl_easy_setopt(hCurl, CURLOPT_SSL_VERIFYPEER, 0);
curl_easy_setopt(hCurl, CURLOPT_SSL_VERIFYHOST, 2);
}
else if (ftp->ftpProto == ServerList::FTP::FT_SSH)
{
curl_easy_setopt(hCurl, CURLOPT_SSH_AUTH_TYPES, CURLSSH_AUTH_PASSWORD);
}
}
INT_PTR CALLBACK Utils::DlgProcSetFileName(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
TCHAR *fileName = (TCHAR *)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
switch (msg)
{
case WM_INITDIALOG:
{
TranslateDialogDefault(hwndDlg);
fileName = (TCHAR *)lParam;
SetWindowLongPtr(hwndDlg, GWLP_USERDATA, (LONG_PTR)fileName);
SetDlgItemText(hwndDlg, IDC_NAME, fileName);
if (GetDlgCtrlID((HWND)wParam) != IDC_NAME)
{
SetFocus(GetDlgItem(hwndDlg, IDC_NAME));
SendDlgItemMessage(hwndDlg, IDC_NAME, EM_SETSEL, 0, _tcslen(fileName) - 4);
return FALSE;
}
return TRUE;
}
case WM_COMMAND:
{
if (HIWORD(wParam) == BN_CLICKED)
{
if (LOWORD(wParam) == IDOK)
{
GetDlgItemText(hwndDlg, IDC_NAME, fileName, 64);
EndDialog(hwndDlg, IDOK);
}
else if (LOWORD(wParam) == IDCANCEL)
{
EndDialog(hwndDlg, IDCANCEL);
}
}
break;
}
}
return FALSE;
}
bool Utils::setFileNameDlg(TCHAR *nameBuff)
{
if (DialogBoxParam(hInst, MAKEINTRESOURCE(IDD_DLG_NAME), 0, DlgProcSetFileName, (LPARAM)nameBuff) == IDOK)
return true;
else
return false;
}
bool Utils::setFileNameDlgA(char *nameBuff)
{
TCHAR buff[64];
TCHAR *tmp = mir_a2t(nameBuff);
_tcscpy(buff, tmp);
FREE(tmp);
bool res = setFileNameDlg(buff);
if (res)
{
char *p = mir_t2a(buff);
strcpy(nameBuff, p);
FREE(p);
}
return res;
}
void Utils::createFileDownloadLink(char *szUrl, char *fileName, char *buff, int buffSize)
{
if (szUrl[strlen(szUrl) - 1] == '/')
mir_snprintf(buff, buffSize, "%s%s", szUrl, fileName);
else
mir_snprintf(buff, buffSize, "%s/%s", szUrl, fileName);
}
|