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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
{search station code}
type
TMySearchFilter = record
lStation,
lStationURL,
lGenre:PAnsiChar;
lBitrate:integer;
lBitrateMode:integer;
end;
const
AckHandle = 427;
// Since mRadio is unicode version only now, translate all strings to Wide
// coz f*cking jinn will set unicode flag in any cases
procedure LoadOneStation(section:pointer;const filter:TMySearchFilter);
var
bitrate:integer;
l:bool;
columns:array [0..3] of TCHAR;
csr:CUSTOMSEARCHRESULTS;
pc:pAnsiChar;
buf:array [0..127] of AnsiChar;
begin
pc:=GetParamSectionStr(section,'URL');
if pc<>nil then
begin
if (filter.lStationURL=nil) or (StrPos(CharLowerA(pc),filter.lStationURL)<>nil) then
begin
FillChar(csr,SizeOf(csr),0);
csr.psr.cbSize:=SizeOf(csr.psr);
csr.psr.Flags:=PSR_UNICODE;
AnsiToWide(pc,csr.psr.firstname.w,MirandaCP);
pc:=GetParamSectionStr(section,optBitrate,'0');
bitrate:=StrToInt(pc);
if (bitrate<>0) and (filter.lBitrate<>0) then
begin
if filter.lBitrateMode<0 then l:=bitrate<=filter.lBitrate
else if filter.lBitrateMode=0 then l:=bitrate =filter.lBitrate
else{if filter.lBitrateMode>0} l:=bitrate>=filter.lBitrate;
end
else
l:=true;
if l then
begin
AnsiToWide(pc,csr.psr.email.w,MirandaCP);
StrCopy(buf,GetParamSectionStr(section,'Name',GetSectionName(section)),127);
if (filter.lStation=nil) or (StrPos(CharLowerA(@buf),filter.lStation)<>nil) then
begin
AnsiToWide(@buf,csr.psr.nick.w,MirandaCP);
StrCopy(buf,GetParamSectionStr(section,optGenre,'unknown'),127);
if (filter.lGenre=nil) or (StrPos(CharLowerA(@buf),filter.lGenre)<>nil) then
AnsiToWide(@buf,csr.psr.lastname.w,MirandaCP)
else
l:=false;
end
else
l:=false;
if l then
begin
columns[0].w:=csr.psr.nick.w; // Station name
columns[1].w:=csr.psr.firstname.w; // URL
columns[2].w:=csr.psr.lastname.w; // Genre
columns[3].w:=csr.psr.email.w; // Bitrate
csr.nSize :=SizeOf(csr);
csr.nFieldCount:=4;
csr.szFields :=@columns;
ProtoBroadcastAck(PluginName,0,ACKTYPE_SEARCH,ACKRESULT_SEARCHRESULT,AckHandle,lparam(@csr));
end;
end;
// initial value - nil, so we don't worry
mFreeMem(csr.psr.nick);
mFreeMem(csr.psr.firstname);
mFreeMem(csr.psr.lastname);
mFreeMem(csr.psr.email);
end;
end;
end;
procedure ProcessSearch(var filter:TMySearchFilter;ini:PAnsiChar);
var
pc:PAnsiChar;
csr:CUSTOMSEARCHRESULTS;
columns:array [0..3] of TCHAR;
lstorage,section,list:pointer;
begin
columns[0].w:='Station Name';
columns[1].w:='Station URL';
columns[2].w:='Genre';
columns[3].w:='Bitrate';
csr.nSize :=SizeOf(csr);
csr.nFieldCount:=4;
csr.szFields :=@columns;
csr.psr.cbSize :=0;
ProtoBroadcastAck(PluginName,0,ACKTYPE_SEARCH,ACKRESULT_SEARCHRESULT,AckHandle,lparam(@csr));
lstorage:=OpenStorage(ini);
if lstorage<>nil then
begin
list:=GetSectionList(lstorage);
pc:=list;
while pc^<>#0 do
begin
section:=SearchSection(lstorage,pc);
LoadOneStation(section,filter); //!!
while pc^<>#0 do inc(pc);
inc(pc);
end;
FreeSectionList(list);
CloseStorage(lstorage);
end;
ProtoBroadcastAck(PluginName,0,ACKTYPE_SEARCH,ACKRESULT_SUCCESS,AckHandle,0);
mFreeMem(filter.lStation);
mFreeMem(filter.lStationURL);
mFreeMem(filter.lGenre);
end;
procedure BasicSearch(name:PAnsiChar); cdecl;
var
filter:TMySearchFilter;
ini:array [0..MAX_PATH-1] of AnsiChar;
begin
FillChar(filter,SizeOf(filter),0);
StrCopy(ini,storage);
StrDup(filter.lStation,name);
if filter.lStation<>nil then
CharLowerA(filter.lStation);
ProcessSearch(filter,ini);
end;
procedure ExtSearch(wnd:HWND); cdecl;
var
filter:TMySearchFilter;
ltmp:longbool;
ini1,ini:array [0..MAX_PATH-1] of AnsiChar;
begin
FillChar(filter,SizeOf(filter),0);
ini1[0]:=#0;
GetDlgItemTextA(wnd,IDC_CUSTOMINI,@ini1,SizeOf(ini1));
if ini1[0]=#0 then
StrCopy(ini,storage)
else
ConvertFileName(ini1,ini);
with filter do
begin
lBitrate:=GetDlgItemInt(wnd,IDC_BITRATE,ltmp,false);
if IsDlgButtonChecked(wnd,IDC_LT)=BST_CHECKED then lBitrateMode:=-1
else if IsDlgButtonChecked(wnd,IDC_EQ)=BST_CHECKED then lBitrateMode:=0
else{if IsDlgButtonChecked(lParam,IDC_GT)=BST_CHECKED} lBitrateMode:=1;
lStation:=GetDlgText(wnd,IDC_STATION,true);
if lStation<>nil then
CharLowerA(lStation);
lStationURL:=GetDlgText(wnd,IDC_STATIONURL,true);
if lStationURL<>nil then
CharLowerA(lStationURL);
lGenre:=GetDlgText(wnd,IDC_GENRE,true);
if lGenre<>nil then
CharLowerA(lGenre);
end;
ProcessSearch(filter,ini);
end;
function Service_SearchBasic(wParam:WPARAM;lParam:LPARAM):int_ptr;cdecl;
begin
if lParam=0 then
result:=0
else
begin
result:=AckHandle;
mir_forkthread(@BasicSearch,StrDup(PAnsiChar(lParam),PAnsiChar(lParam)));
end;
end;
function Service_SearchByAdvanced(wParam:WPARAM;lParam:LPARAM):int_ptr;cdecl;
begin
if lParam=0 then
result:=0
else
begin
result:=AckHandle;
mir_forkthread(@ExtSearch,pointer(lParam));
end;
end;
function Service_GetCaps(wParam:WPARAM;lParam:LPARAM):int_ptr;cdecl; forward;
function ExtSearchProc(Dialog:HWnd;hMessage:UINT;wParam:WPARAM;lParam:LPARAM):lresult; stdcall;
var
buf:array [0..MAX_PATH-1] of AnsiChar;
begin
result:=0;
case hMessage of
WM_INITDIALOG: begin
CheckDlgButton(Dialog,IDC_EQ,BST_CHECKED);
TranslateDialogDefault(Dialog);
end;
WM_COMMAND: if (wParam shr 16)=BN_CLICKED then
begin
if loword(wParam)=IDOK then
begin
SendMessage(GetParent(Dialog),WM_COMMAND,IDOK+(BN_CLICKED) shl 16,
GetDlgItem(GetParent(Dialog),IDOK));
end
else if loword(wParam)=IDC_BN_INIPATH then
begin
if ShowDlg(@buf,storage,'*.ini'#0'*.ini'#0#0) then
SetDlgItemTextA(Dialog,IDC_CUSTOMINI,@buf);
end;
end;
end;
end;
function Service_ExtSearchUI(wParam:WPARAM;lParam:LPARAM):int_ptr;cdecl;
type
PDLGTEMPLATEEX = ^TDLGTEMPLATEEX;
TDLGTEMPLATEEX = packed record
dlgVer:word;
signature:word;
helpID:dword;
exStyle:dword;
style:dword;
cDlgItems:word;
x:word;
y:word;
cx:word;
cy:word;
{
sz_Or_Ord menu;
sz_Or_Ord windowClass;
title:array [0..titleLen] of WideChar;
pointsize:word;
weight:word;
italic:byte;
charset:byte;
typeface:array [0..stringLen] of WideChar;
}
end;
var
hr:HRSRC;
pdte:PDLGTEMPLATEEX;
begin
result:=0;
if lParam<>0 then
begin
hr:=FindResource(hInstance,MAKEINTRESOURCE(IDD_SEARCH),RT_DIALOG);
if hr<>0 then
begin
pdte:=PDLGTEMPLATEEX(LoadResource(hInstance,hr));
if pdte<>nil then
begin
if (Service_GetCaps(PFLAGNUM_1,0) and PF1_EXTSEARCHUI)<>0 then
pdte^.style:=(pdte^.style and not WS_CHILD) or WS_POPUP or WS_BORDER;
result:=CreateDialogIndirect(hInstance,
PDlgTemplate(pdte){$IFNDEF FPC}^{$ENDIF},lParam,@ExtSearchProc);
end;
end;
end;
end;
function Service_AddToList(wParam:WPARAM;lParam:LPARAM):int_ptr;cdecl;
var
hContact:THANDLE;
p:PWideChar;
lurl:pWideChar;
begin
result:=0;
if lParam<>0 then
begin
with PPROTOSEARCHRESULT(lParam)^ do
begin
if id.w<>nil then
lurl:=id.w
else
lurl:=firstname.w;
if lurl<>nil then
begin
hContact:=CallService(MS_DB_CONTACT_ADD,0,0);
if hContact<>0 then
begin
CallService(MS_PROTO_ADDTOCONTACT,hContact,tlparam(PluginName));
// URL
DBWriteUnicode(hContact,PluginName,optStationURL,lurl);
DBWriteUnicode(hContact,PluginName,optFirstName ,lurl);
// Name
if nick.w=nil then
p:=lurl
else
p:=nick.w;
DBWriteUnicode(hContact,strCList ,optMyHandle,p);
DBWriteUnicode(hContact,PluginName,optNick ,p);
// Bitrate
if email.w<>nil then
begin
DBWriteWord (hContact,PluginName,optAge ,StrToInt(email.w));
DBWriteUnicode(hContact,PluginName,optBitrate,email.w);
end;
// Genre
if lastname.w<>nil then
begin
DBWriteUnicode(hContact,PluginName,optGenre ,lastname.w);
DBWriteUnicode(hContact,PluginName,optLastName,lastname.w);
end;
SetStatus(hContact,ID_STATUS_OFFLINE);
// SetAvatar(hContact);
CallService(MS_IGNORE_IGNORE,hContact,IGNOREEVENT_USERONLINE{IGNOREEVENT_ALL});
result:=hContact;
end;
end;
end;
end;
end;
|