summaryrefslogtreecommitdiff
path: root/plugins/NewsAggregator/Src/Authentication.cpp
blob: 67fddd0f22e9fb8e7a7bf97b417e0633f89d6eaa (plain)
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
/* 
Copyright (C) 2012 Mataes

This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

This 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
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt.  If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  
*/

#include "stdafx.h"

void CreateAuthString(char *auth, MCONTACT hContact, CFeedEditor *pDlg)
{
	wchar_t *tlogin = nullptr, *tpass = nullptr;
	if (hContact && db_get_b(hContact, MODULE, "UseAuth", 0)) {
		tlogin = db_get_wsa(hContact, MODULE, "Login");
		tpass = db_get_wsa(hContact, MODULE, "Password");
	}
	else if (pDlg && pDlg->m_useauth.IsChecked()) {
		ptrW strlogin(pDlg->m_login.GetText());
		//wchar_t buf[MAX_PATH] = {0};
		//GetDlgItemText(hwndDlg, IDC_LOGIN, buf, _countof(buf));
		tlogin = mir_wstrdup(strlogin);
		ptrW strpass(pDlg->m_password.GetText());
		//GetDlgItemText(hwndDlg, IDC_PASSWORD, buf, _countof(buf));
		tpass = mir_wstrdup(strpass);
	}
	char *user = mir_u2a(tlogin), *pass = mir_u2a(tpass);

	char str[MAX_PATH];
	int len = mir_snprintf(str, "%s:%s", user, pass);
	mir_free(user);
	mir_free(pass);
	mir_free(tlogin);
	mir_free(tpass);

	mir_snprintf(auth, 250, "Basic %s", ptrA(mir_base64_encode(str, len)));
}

CAuthRequest::CAuthRequest(CFeedEditor *pDlg, MCONTACT hContact)
	: CSuper(hInst, IDD_AUTHENTICATION),
	m_feedname(this, IDC_FEEDNAME), m_username(this, IDC_FEEDUSERNAME),
	m_password(this, IDC_FEEDPASSWORD), m_ok(this, IDOK)
{
	m_pDlg = pDlg;
	m_hContact = hContact;
	m_ok.OnClick = Callback(this, &CAuthRequest::OnOk);
}

void CAuthRequest::OnInitDialog()
{
	if (m_pDlg) {
		//wchar_t str[MAX_PATH];
		ptrW strfeedtitle(m_pDlg->m_feedtitle.GetText());
		
		if (strfeedtitle)
			m_feedname.SetText(strfeedtitle);
		else {
			ptrW strfeedurl(m_pDlg->m_feedurl.GetText());
			m_feedname.SetText(strfeedurl);
		}

		/*if (GetDlgItemText(SelItem.hwndList, IDC_FEEDTITLE, str, _countof(str)))
			SetDlgItemText(hwndDlg, IDC_FEEDNAME, str);
		else {
			GetDlgItemText(SelItem.hwndList, IDC_FEEDURL, str, _countof(str));
			SetDlgItemText(hwndDlg, IDC_FEEDNAME, str);
		}*/
	}
	else if (m_hContact) {
		wchar_t *ptszNick = db_get_wsa(m_hContact, MODULE, "Nick");
		if (ptszNick) {
			m_feedname.SetText(ptszNick);
			//SetDlgItemText(hwndDlg, IDC_FEEDNAME, ptszNick);
			mir_free(ptszNick);
		}
		else {
			wchar_t *ptszURL = db_get_wsa(m_hContact, MODULE, "URL");
			if (ptszURL) {
				m_feedname.SetText(ptszURL);
				//SetDlgItemText(hwndDlg, IDC_FEEDNAME, ptszURL);
				mir_free(ptszURL);
			}
		}
	}
}

void CAuthRequest::OnOk(CCtrlBase*)
{
	//ItemInfo &SelItem = *(ItemInfo*)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
	//wchar_t username[MAX_PATH];
	//char passw[MAX_PATH];

	ptrW strfeedusername(m_username.GetText());
	if (!strfeedusername || mir_wstrcmp(strfeedusername, L"") == 0) {
		MessageBox(m_hwnd, TranslateT("Enter your username"), TranslateT("Error"), MB_OK | MB_ICONERROR);
		return;
	}
	ptrA strfeedpassword(m_password.GetTextA());
	if (!strfeedpassword || mir_strcmp(strfeedpassword, "") == 0) {
		MessageBox(m_hwnd, TranslateT("Enter your password"), TranslateT("Error"), MB_OK | MB_ICONERROR);
		return;
	}
	/*if (!GetDlgItemText(hwndDlg, IDC_FEEDUSERNAME, username, _countof(username))) {
		MessageBox(hwndDlg, TranslateT("Enter your username"), TranslateT("Error"), MB_OK | MB_ICONERROR);
		break;
	}
	if (!GetDlgItemTextA(hwndDlg, IDC_FEEDPASSWORD, passw, _countof(passw))) {
		MessageBox(hwndDlg, TranslateT("Enter your password"), TranslateT("Error"), MB_OK | MB_ICONERROR);
		break;
	}*/
	if (m_pDlg) {
		m_pDlg->m_useauth.SetState(1);
		m_pDlg->m_login.Enable(1);
		m_pDlg->m_password.Enable(1);
		m_pDlg->m_login.SetText(strfeedusername);
		m_pDlg->m_password.SetTextA(strfeedpassword);
	}
	else if (m_hContact) {
		db_set_b(m_hContact, MODULE, "UseAuth", 1);
		db_set_ws(m_hContact, MODULE, "Login", strfeedusername);
		db_set_s(m_hContact, MODULE, "Password", strfeedpassword);

	}
	/*if (SelItem.hwndList) {
		CheckDlgButton(SelItem.hwndList, IDC_USEAUTH, BST_CHECKED);
		EnableWindow(GetDlgItem(SelItem.hwndList, IDC_LOGIN), TRUE);
		EnableWindow(GetDlgItem(SelItem.hwndList, IDC_PASSWORD), TRUE);
		SetDlgItemText(SelItem.hwndList, IDC_LOGIN, username);
		SetDlgItemTextA(SelItem.hwndList, IDC_PASSWORD, passw);
	}
	else if (SelItem.hContact) {
		db_set_b(SelItem.hContact, MODULE, "UseAuth", 1);
		db_set_ws(SelItem.hContact, MODULE, "Login", username);
		db_set_s(SelItem.hContact, MODULE, "Password", passw);
	}*/
}

/*INT_PTR CALLBACK AuthenticationProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
	switch (msg) {
	case WM_INITDIALOG:
		{
			TranslateDialogDefault(hwndDlg);
			ItemInfo &SelItem = *(ItemInfo*)lParam;
			SetWindowLongPtr(hwndDlg, GWLP_USERDATA, (LONG_PTR)&SelItem);

			if (SelItem.hwndList) {
				wchar_t str[MAX_PATH];
				if (GetDlgItemText(SelItem.hwndList, IDC_FEEDTITLE, str, _countof(str)))
					SetDlgItemText(hwndDlg, IDC_FEEDNAME, str);
				else {
					GetDlgItemText(SelItem.hwndList, IDC_FEEDURL, str, _countof(str));
					SetDlgItemText(hwndDlg, IDC_FEEDNAME, str);
				}
			}
			else if (SelItem.hContact) {
				wchar_t *ptszNick = db_get_wsa(SelItem.hContact, MODULE, "Nick");
				if (ptszNick) {
					SetDlgItemText(hwndDlg, IDC_FEEDNAME, ptszNick);
					mir_free(ptszNick);
				}
				else {
					wchar_t *ptszURL = db_get_wsa(SelItem.hContact, MODULE, "URL");
					if (ptszURL) {
						SetDlgItemText(hwndDlg, IDC_FEEDNAME, ptszURL);
						mir_free(ptszURL);
					}
				}
			}
		}
		return TRUE;

	case WM_COMMAND:
		switch (LOWORD(wParam)) {
			case IDOK:
			{
				ItemInfo &SelItem = *(ItemInfo*)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
				wchar_t username[MAX_PATH];
				char passw[MAX_PATH];
				if (!GetDlgItemText(hwndDlg, IDC_FEEDUSERNAME, username, _countof(username))) {
					MessageBox(hwndDlg, TranslateT("Enter your username"), TranslateT("Error"), MB_OK | MB_ICONERROR);
					break;
				}
				if (!GetDlgItemTextA(hwndDlg, IDC_FEEDPASSWORD, passw, _countof(passw))) {
					MessageBox(hwndDlg, TranslateT("Enter your password"), TranslateT("Error"), MB_OK | MB_ICONERROR);
					break;
				}
				if (SelItem.hwndList) {
					CheckDlgButton(SelItem.hwndList, IDC_USEAUTH, BST_CHECKED);
					EnableWindow(GetDlgItem(SelItem.hwndList, IDC_LOGIN), TRUE);
					EnableWindow(GetDlgItem(SelItem.hwndList, IDC_PASSWORD), TRUE);
					SetDlgItemText(SelItem.hwndList, IDC_LOGIN, username);
					SetDlgItemTextA(SelItem.hwndList, IDC_PASSWORD, passw);
				}
				else if (SelItem.hContact) {
					db_set_b(SelItem.hContact, MODULE, "UseAuth", 1);
					db_set_ws(SelItem.hContact, MODULE, "Login", username);
					db_set_s(SelItem.hContact, MODULE, "Password", passw);
				}
				EndDialog(hwndDlg, IDOK);
				return TRUE;
			}

			case IDCANCEL:
			{
				EndDialog(hwndDlg, IDCANCEL);
				return TRUE;
			}
		}
		break;
	}
	return FALSE;
}*/