-
Notifications
You must be signed in to change notification settings - Fork 281
/
rpc.pas
1087 lines (986 loc) · 27.6 KB
/
rpc.pas
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{*************************************************************************************
This file is part of Transmission Remote GUI.
Copyright (c) 2008-2019 by Yury Sidorov and Transmission Remote GUI working group.
Transmission Remote GUI 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.
Transmission Remote GUI 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 Transmission Remote GUI; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give permission to
link the code of portions of this program with the
OpenSSL library under certain conditions as described in each individual
source file, and distribute linked combinations including the two.
You must obey the GNU General Public License in all respects for all of the
code used other than OpenSSL. If you modify file(s) with this exception, you
may extend this exception to your version of the file(s), but you are not
obligated to do so. If you do not wish to do so, delete this exception
statement from your version. If you delete this exception statement from all
source files in the program, then also delete it here.
*************************************************************************************}
unit rpc;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, httpsend, syncobjs, fpjson, jsonparser, ssl_openssl,
ZStream, jsonscanner;
resourcestring
sTransmissionAt = 'Transmission%s at %s:%s';
const
DefaultRpcPath = '/transmission/rpc';
type
TAdvInfoType = (aiNone, aiGeneral, aiFiles, aiPeers, aiTrackers, aiStats);
TRefreshTypes = (rtTorrents, rtDetails, rtSession);
TRefreshType = set of TRefreshTypes;
TRpc = class;
{ TRpcThread }
TRpcThread = class(TThread)
private
ResultData: TJSONData;
FRpc: TRpc;
function GetAdvInfo: TAdvInfoType;
function GetCurTorrentId: cardinal;
function GetRefreshInterval: TDateTime;
function GetStatus: string;
procedure SetStatus(const AValue: string);
function GetTorrents: boolean;
procedure GetPeers(TorrentId: integer);
procedure GetFiles(TorrentId: integer);
procedure GetTrackers(TorrentId: integer);
procedure GetStats;
procedure GetInfo(TorrentId: integer);
procedure GetSessionInfo;
procedure DoFillTorrentsList;
procedure DoFillPeersList;
procedure DoFillFilesList;
procedure DoFillInfo;
procedure DoFillTrackersList;
procedure DoFillStats;
procedure DoFillSessionInfo;
procedure NotifyCheckStatus;
procedure CheckStatusHandler(Data: PtrInt);
protected
procedure Execute; override;
public
constructor Create;
destructor Destroy; override;
property Status: string read GetStatus write SetStatus;
property RefreshInterval: TDateTime read GetRefreshInterval;
property CurTorrentId: cardinal read GetCurTorrentId;
property AdvInfo: TAdvInfoType read GetAdvInfo;
end;
TRpc = class
private
FLock: TCriticalSection;
FStatus: string;
FInfoStatus: string;
FConnected: boolean;
FTorrentFields: string;
FRPCVersion: integer;
XTorrentSession: string;
FMainThreadId: TThreadID;
FRpcPath: string;
function GetConnected: boolean;
function GetConnecting: boolean;
function GetInfoStatus: string;
function GetStatus: string;
function GetTorrentFields: string;
procedure SetInfoStatus(const AValue: string);
procedure SetStatus(const AValue: string);
procedure SetTorrentFields(const AValue: string);
procedure CreateHttp;
public
Http: THTTPSend;
HttpLock: TCriticalSection;
RpcThread: TRpcThread;
Url: string;
RefreshInterval: TDateTime;
CurTorrentId: cardinal;
AdvInfo: TAdvInfoType;
RefreshNow: TRefreshType;
RequestFullInfo: boolean;
ReconnectAllowed: boolean;
RequestStartTime: TDateTime;
constructor Create;
destructor Destroy; override;
procedure InitSSL;
procedure Lock;
procedure Unlock;
procedure Connect;
procedure Disconnect;
function SendRequest(req: TJSONObject; ReturnArguments: boolean = True; ATimeOut: integer = -1): TJSONObject;
function RequestInfo(TorrentId: integer; const Fields: array of const; const ExtraFields: array of string): TJSONObject;
function RequestInfo(TorrentId: integer; const Fields: array of const): TJSONObject;
property Status: string read GetStatus write SetStatus;
property InfoStatus: string read GetInfoStatus write SetInfoStatus;
property Connected: boolean read GetConnected;
property Connecting: boolean read GetConnecting;
property TorrentFields: string read GetTorrentFields write SetTorrentFields;
property RPCVersion: integer read FRPCVersion;
property RpcPath: string read FRpcPath write FRpcPath;
end;
var
RemotePathDelimiter: char = '/';
implementation
uses Main, ssl_openssl_lib, synafpc, blcksock;
function TranslateTableToObjects(reply: TJSONObject) : TJSONObject;
var
array_tor, fields, out_torrents : TJSONArray;
object_tor : TJSONObject;
i, j : integer;
begin
fields:=reply.Arrays['torrents'].Arrays[0];
out_torrents:=TJSONArray.Create;
for i:=1 to reply.Arrays['torrents'].Count - 1 do
begin
array_tor:=reply.Arrays['torrents'].Arrays[i];
object_tor:=TJSONObject.Create;
for j:=0 to fields.Count - 1 do
object_tor.Add(fields.Items[j].AsString, array_tor.Items[j].Clone);
out_torrents.Add(object_tor);
end;
Result:=TJSONObject.Create(['torrents', out_torrents]);
reply.Free;
end;
{ TRpcThread }
procedure TRpcThread.Execute;
var
t, tt: TDateTime;
i: integer;
ai: TAdvInfoType;
begin
try
GetSessionInfo;
NotifyCheckStatus;
if not FRpc.FConnected then
Terminate;
t:=Now - 1;
tt:=Now;
while not Terminated do begin
if Now - t >= RefreshInterval then begin
FRpc.RefreshNow:=FRpc.RefreshNow + [rtTorrents, rtDetails];
t:=Now;
end;
if Now - tt >= RefreshInterval*5 then begin
Include(FRpc.RefreshNow, rtSession);
tt:=Now;
end;
if Status = '' then
if rtTorrents in FRpc.RefreshNow then begin
GetTorrents;
Exclude(FRpc.RefreshNow, rtTorrents);
t:=Now;
end
else
if rtDetails in FRpc.RefreshNow then begin
i:=CurTorrentId;
ai:=AdvInfo;
if i <> 0 then begin
case ai of
aiGeneral:
GetInfo(i);
aiPeers:
GetPeers(i);
aiFiles:
GetFiles(i);
aiTrackers:
GetTrackers(i);
end;
end;
case ai of
aiStats:
GetStats;
end;
if (i = CurTorrentId) and (ai = AdvInfo) then
Exclude(FRpc.RefreshNow, rtDetails);
end
else
if rtSession in FRpc.RefreshNow then begin
GetSessionInfo;
Exclude(FRpc.RefreshNow, rtSession);
end;
if Status <> '' then begin
NotifyCheckStatus;
Sleep(100);
end;
if FRpc.RefreshNow = [] then
Sleep(50);
end;
except
Status:=Exception(ExceptObject).Message;
FRpc.RpcThread:=nil;
NotifyCheckStatus;
end;
FRpc.RpcThread:=nil;
FRpc.FConnected:=False;
FRpc.FRPCVersion:=0;
Sleep(20);
end;
constructor TRpcThread.Create;
begin
inherited Create(True);
end;
destructor TRpcThread.Destroy;
begin
inherited Destroy;
end;
procedure TRpcThread.SetStatus(const AValue: string);
begin
FRpc.Status:=AValue;
end;
procedure TRpcThread.DoFillTorrentsList;
begin
MainForm.FillTorrentsList(ResultData as TJSONArray);
end;
procedure TRpcThread.DoFillPeersList;
begin
MainForm.FillPeersList(ResultData as TJSONArray);
end;
procedure TRpcThread.DoFillFilesList;
var
t: TJSONObject;
dir: widestring;
begin
if ResultData = nil then begin
MainForm.ClearDetailsInfo;
exit;
end;
t:=ResultData as TJSONObject;
if RpcObj.RPCVersion >= 4 then
dir:=widestring(t.Strings['downloadDir'])
else
dir:='';
MainForm.FillFilesList(t.Integers['id'], t.Arrays['files'], t.Arrays['priorities'], t.Arrays['wanted'], dir);
end;
procedure TRpcThread.DoFillInfo;
begin
MainForm.FillGeneralInfo(ResultData as TJSONObject);
end;
procedure TRpcThread.DoFillTrackersList;
begin
MainForm.FillTrackersList(ResultData as TJSONObject);
end;
procedure TRpcThread.DoFillStats;
begin
MainForm.FillStatistics(ResultData as TJSONObject);
end;
procedure TRpcThread.DoFillSessionInfo;
begin
MainForm.FillSessionInfo(ResultData as TJSONObject);
end;
procedure TRpcThread.NotifyCheckStatus;
begin
if not Terminated then
Application.QueueAsyncCall(@CheckStatusHandler, 0);
end;
procedure TRpcThread.CheckStatusHandler(Data: PtrInt);
begin
if csDestroying in MainForm.ComponentState then exit;
MainForm.CheckStatus;
end;
procedure TRpcThread.GetSessionInfo;
var
req, args, args2: TJSONObject;
s: string;
begin
req:=TJSONObject.Create;
try
req.Add('method', 'session-get');
args:=FRpc.SendRequest(req);
if args <> nil then
try
FRpc.FConnected:=True;
if args.IndexOfName('rpc-version') >= 0 then
FRpc.FRPCVersion := args.Integers['rpc-version']
else
FRpc.FRPCVersion := 0;
if args.IndexOfName('version') >= 0 then
s:=' ' + args.Strings['version']
else
s:='';
FRpc.InfoStatus:=Format(sTransmissionAt, [s, FRpc.Http.TargetHost, FRpc.Http.TargetPort]);
if FRpc.RPCVersion >= 15 then begin
// Requesting free space in download dir
req.Free;
req:=TJSONObject.Create;
req.Add('method', 'free-space');
args2:=TJSONObject.Create;
try
args2.Add('path', args.Strings['download-dir']);
req.Add('arguments', args2);
args2:=FRpc.SendRequest(req);
if args2 <> nil then
args.Floats['download-dir-free-space']:=args2.Floats['size-bytes']
else begin
args.Floats['download-dir-free-space']:=-1;
FRpc.Status:='';
end;
finally
args2.Free;
end;
end;
ResultData:=args;
if not Terminated then
Synchronize(@DoFillSessionInfo);
finally
args.Free;
end
else
ASSERT(FRpc.Status <> '');
finally
req.Free;
end;
end;
function TRpcThread.GetTorrents: boolean;
var
args: TJSONObject;
ExtraFields: array of string;
sl: TStringList;
i: integer;
begin
Result:=False;
sl:=TStringList.Create;
try
FRpc.Lock;
try
sl.CommaText:=FRpc.FTorrentFields;
finally
FRpc.Unlock;
end;
if FRpc.RPCVersion < 7 then begin
i:=sl.IndexOf('trackers');
if FRpc.RequestFullInfo then begin
if i < 0 then
sl.Add('trackers');
end
else
if i >= 0 then
sl.Delete(i);
end;
i:=sl.IndexOf('downloadDir');
if FRpc.RequestFullInfo then begin
if i < 0 then
sl.Add('downloadDir');
end
else
if i >= 0 then
sl.Delete(i);
SetLength(ExtraFields, sl.Count);
for i:=0 to sl.Count - 1 do
ExtraFields[i]:=sl[i];
finally
sl.Free;
end;
args:=FRpc.RequestInfo(0, ['id', 'name', 'status', 'errorString', 'announceResponse', 'recheckProgress',
'sizeWhenDone', 'leftUntilDone', 'rateDownload', 'rateUpload', 'trackerStats',
'metadataPercentComplete'], ExtraFields);
try
if (args <> nil) and not Terminated then begin
FRpc.RequestFullInfo:=False;
ResultData:=args.Arrays['torrents'];
Synchronize(@DoFillTorrentsList);
Result:=True;
end;
finally
args.Free;
end;
end;
procedure TRpcThread.GetPeers(TorrentId: integer);
var
args: TJSONObject;
t: TJSONArray;
begin
args:=FRpc.RequestInfo(TorrentId, ['peers']);
try
if args <> nil then begin
t:=args.Arrays['torrents'];
if t.Count > 0 then
ResultData:=t.Objects[0].Arrays['peers']
else
ResultData:=nil;
if not Terminated then
Synchronize(@DoFillPeersList);
end;
finally
args.Free;
end;
end;
procedure TRpcThread.GetFiles(TorrentId: integer);
var
args: TJSONObject;
t: TJSONArray;
begin
args:=FRpc.RequestInfo(TorrentId, ['id', 'files','priorities','wanted','downloadDir']);
try
if args <> nil then begin
t:=args.Arrays['torrents'];
if t.Count > 0 then
ResultData:=t.Objects[0]
else
ResultData:=nil;
if not Terminated then
Synchronize(@DoFillFilesList);
end;
finally
args.Free;
end;
end;
procedure TRpcThread.GetTrackers(TorrentId: integer);
var
args: TJSONObject;
t: TJSONArray;
begin
args:=FRpc.RequestInfo(TorrentId, ['id','trackers','trackerStats', 'nextAnnounceTime']);
try
if args <> nil then begin
t:=args.Arrays['torrents'];
if t.Count > 0 then
ResultData:=t.Objects[0]
else
ResultData:=nil;
if not Terminated then
Synchronize(@DoFillTrackersList);
end;
finally
args.Free;
end;
end;
procedure TRpcThread.GetStats;
var
req, args: TJSONObject;
begin
req:=TJSONObject.Create;
try
req.Add('method', 'session-stats');
args:=FRpc.SendRequest(req);
if args <> nil then
try
ResultData:=args;
if not Terminated then
Synchronize(@DoFillStats);
finally
args.Free;
end;
finally
req.Free;
end;
end;
procedure TRpcThread.GetInfo(TorrentId: integer);
var
args: TJSONObject;
t: TJSONArray;
begin
args:=FRpc.RequestInfo(TorrentId, ['totalSize', 'sizeWhenDone', 'leftUntilDone', 'pieceCount', 'pieceSize', 'haveValid',
'hashString', 'comment', 'downloadedEver', 'uploadedEver', 'corruptEver', 'errorString',
'announceResponse', 'downloadLimit', 'downloadLimitMode', 'uploadLimit', 'uploadLimitMode',
'maxConnectedPeers', 'nextAnnounceTime', 'dateCreated', 'creator', 'eta', 'peersSendingToUs',
'seeders','peersGettingFromUs','leechers', 'uploadRatio', 'addedDate', 'doneDate',
'activityDate', 'downloadLimited', 'uploadLimited', 'downloadDir', 'id', 'pieces',
'trackerStats', 'secondsDownloading', 'secondsSeeding', 'magnetLink', 'isPrivate', 'labels']);
try
if args <> nil then begin
t:=args.Arrays['torrents'];
if t.Count > 0 then
ResultData:=t.Objects[0]
else
ResultData:=nil;
if not Terminated then
Synchronize(@DoFillInfo);
end;
finally
args.Free;
end;
end;
function TRpcThread.GetAdvInfo: TAdvInfoType;
begin
FRpc.Lock;
try
Result:=FRpc.AdvInfo;
finally
FRpc.Unlock;
end;
end;
function TRpcThread.GetCurTorrentId: cardinal;
begin
FRpc.Lock;
try
Result:=FRpc.CurTorrentId;
finally
FRpc.Unlock;
end;
end;
function TRpcThread.GetRefreshInterval: TDateTime;
begin
FRpc.Lock;
try
Result:=FRpc.RefreshInterval;
finally
FRpc.Unlock;
end;
end;
function TRpcThread.GetStatus: string;
begin
Result:=FRpc.Status;
end;
{ TRpc }
constructor TRpc.Create;
begin
inherited;
FMainThreadId:=GetCurrentThreadId;
FLock:=TCriticalSection.Create;
HttpLock:=TCriticalSection.Create;
RefreshNow:=[];
CreateHttp;
end;
destructor TRpc.Destroy;
begin
Http.Free;
HttpLock.Free;
FLock.Free;
inherited Destroy;
end;
procedure TRpc.InitSSL;
{$ifdef unix}
{$ifndef darwin}
procedure CheckOpenSSL;
const
OpenSSLVersions: array[1..4] of string =
('0.9.8', '1.0.0', '1.0.2', '1.1.0');
var
hLib1, hLib2: TLibHandle;
i: integer;
begin
for i:=Low(OpenSSLVersions) to High(OpenSSLVersions) do begin
hlib1:=LoadLibrary(PChar('libssl.so.' + OpenSSLVersions[i]));
hlib2:=LoadLibrary(PChar('libcrypto.so.' + OpenSSLVersions[i]));
if hLib2 <> 0 then
FreeLibrary(hLib2);
if hLib1 <> 0 then
FreeLibrary(hLib1);
if (hLib1 <> 0) and (hLib2 <> 0) then begin
DLLSSLName:='libssl.so.' + OpenSSLVersions[i];
DLLUtilName:='libcrypto.so.' + OpenSSLVersions[i];
break;
end;
end;
end;
{$endif darwin}
{$endif unix}
begin
if IsSSLloaded then exit;
{$ifdef unix}
{$ifndef darwin}
CheckOpenSSL;
{$endif darwin}
{$endif unix}
if InitSSLInterface then
SSLImplementation := TSSLOpenSSL;
CreateHttp;
end;
type TGzipDecompressionStream=class(TDecompressionStream)
public
constructor create(Asource:TStream);
end;
constructor TGzipDecompressionStream.create(Asource:TStream);
var gzHeader:array[1..10] of byte;
begin
{
paszlib is based on a relatively old zlib version that didn't implement
reading the gzip header. we "implement" this ourselves by skipping the first
10 bytes which is just enough for the data Transmission sends.
}
inherited create(Asource, True);
Asource.Read(gzHeader,sizeof(gzHeader));
end;
function DecompressGzipContent(source: TStream): TMemoryStream;
var
buf : array[1..16384] of byte;
numRead : integer;
decomp : TGzipDecompressionStream;
begin
decomp:=TGzipDecompressionStream.create(source);
Result:=TMemoryStream.create;
repeat
numRead:=decomp.read(buf,sizeof(buf));
Result.Write(buf,numRead);
until numRead < sizeof(buf);
Result.Position:=0;
decomp.Free;
end;
function CreateJsonParser(serverResp : THTTPSend): TJSONParser;
var decompressed : TMemoryStream;
begin
if serverResp.Headers.IndexOf('Content-Encoding: gzip') <> -1 then
begin
{ need to fully decompress as the parser relies on a working Seek() }
decompressed:=DecompressGzipContent(serverResp.Document);
Result:=TJSONParser.Create(decompressed, [joUTF8]);
decompressed.Free;
end
else
begin
Result:=TJSONParser.Create(serverResp.Document, [joUTF8]);
end;
end;
function TRpc.SendRequest(req: TJSONObject; ReturnArguments: boolean; ATimeOut: integer): TJSONObject;
var
obj: TJSONData;
res: TJSONObject;
jp: TJSONParser;
s: string;
i, j, OldTimeOut, RetryCnt: integer;
locked, r: boolean;
begin
if FRpcPath = '' then
FRpcPath:=DefaultRpcPath;
Status:='';
Result:=nil;
RetryCnt:=2;
i:=0;
repeat
Inc(i);
HttpLock.Enter;
locked:=True;
try
OldTimeOut:=Http.Timeout;
RequestStartTime:=Now;
Http.Document.Clear;
s:=req.AsJSON;
Http.Document.Write(PChar(s)^, Length(s));
s:='';
Http.Headers.Clear;
Http.Headers.Add('Accept-Encoding: gzip');
Http.MimeType:='application/json';
if XTorrentSession <> '' then
Http.Headers.Add(XTorrentSession);
if ATimeOut >= 0 then
Http.Timeout:=ATimeOut;
try
r:=Http.HTTPMethod('POST', Url + FRpcPath);
finally
Http.Timeout:=OldTimeOut;
end;
if not r then begin
if FMainThreadId <> GetCurrentThreadId then
ReconnectAllowed:=True;
Status:=Http.Sock.LastErrorDesc;
break;
end
else begin
if Http.ResultCode = 409 then begin
XTorrentSession:='';
for j:=0 to Http.Headers.Count - 1 do
if Pos('x-transmission-session-id:', AnsiLowerCase(Http.Headers[j])) > 0 then begin
XTorrentSession:=Http.Headers[j];
break;
end;
if XTorrentSession <> '' then begin
if i = RetryCnt then begin
if FMainThreadId <> GetCurrentThreadId then
ReconnectAllowed:=True;
Status:='Session ID error.';
end;
continue;
end;
end;
if Http.ResultCode = 301 then begin
s:=Trim(Http.Headers.Values['Location']);
if (s <> '') and (i = 1) then begin
j:=Length(s);
if Copy(s, j - 4, MaxInt) = '/web/' then
SetLength(s, j - 4)
else
if Copy(s, j - 3, MaxInt) = '/web' then
SetLength(s, j - 3);
FRpcPath:=s + 'rpc';
Inc(RetryCnt);
continue;
end;
end;
if Http.ResultCode <> 200 then begin
if Http.Headers.Count > 0 then begin
SetString(s, Http.Document.Memory, Http.Document.Size);
j:=Pos('<body>', LowerCase(s));
if j > 0 then
System.Delete(s, 1, j - 1);
s:=StringReplace(s, #13#10, '', [rfReplaceAll]);
s:=StringReplace(s, #13, '', [rfReplaceAll]);
s:=StringReplace(s, #10, '', [rfReplaceAll]);
s:=StringReplace(s, #9, ' ', [rfReplaceAll]);
s:=StringReplace(s, '"', '"', [rfReplaceAll, rfIgnoreCase]);
s:=StringReplace(s, '<br>', LineEnding, [rfReplaceAll, rfIgnoreCase]);
s:=StringReplace(s, '</p>', LineEnding, [rfReplaceAll, rfIgnoreCase]);
s:=StringReplace(s, '</h1>', LineEnding, [rfReplaceAll, rfIgnoreCase]);
s:=StringReplace(s, '<li>', LineEnding+'* ', [rfReplaceAll, rfIgnoreCase]);
j:=1;
while j <= Length(s) do begin
if s[j] = '<' then begin
while (j <= Length(s)) and (s[j] <> '>') do
System.Delete(s, j, 1);
System.Delete(s, j, 1);
end
else
Inc(j);
end;
while Pos(' ', s) > 0 do
s:=StringReplace(s, ' ', ' ', [rfReplaceAll]);
while Pos(LineEnding + ' ', s) > 0 do
s:=StringReplace(s, LineEnding + ' ', LineEnding, [rfReplaceAll]);
s:=Trim(s);
end
else
s:='';
if s = '' then begin
s:=Http.ResultString;
if s = '' then
if Http.ResultCode = 0 then
s:='Invalid server response.'
else
s:=Format('HTTP error: %d', [Http.ResultCode]);
end;
Status:=s;
break;
end;
Http.Document.Position:=0;
jp:=CreateJsonParser(Http);
HttpLock.Leave;
locked:=False;
RequestStartTime:=0;
try
try
obj:=jp.Parse;
Http.Document.Clear;
finally
jp.Free;
end;
except
on E: Exception do
begin
Status:=e.Message;
break;
end;
end;
try
if obj is TJSONObject then begin
res:=obj as TJSONObject;
s:=res.Strings['result'];
if AnsiCompareText(s, 'success') <> 0 then begin
if Trim(s) = '' then
s:='Unknown error.';
Status:=s;
end
else begin
if ReturnArguments then begin
Result:=res.Objects['arguments'];
if Result = nil then
Status:='Arguments object not found.'
else begin
// res.Extract(Result); // lazarus 1.2.6 ok
res.Extract(res.IndexOf(Result)); // fix Tample :) lazarus 1.4.0 and high!
FreeAndNil(obj);
end;
end
else
Result:=res;
if Result <> nil then
obj:=nil;
end;
break;
end
else begin
Status:='Invalid server response.';
break;
end;
finally
obj.Free;
end;
end;
finally
RequestStartTime:=0;
if locked then
HttpLock.Leave;
end;
until i >= RetryCnt;
end;
procedure DeleteIfRpcLessThan(Fields: TStringList; Field: string; RpcVer: integer; NeededRpcVer: integer);
var
idx: integer;
begin
idx := Fields.IndexOf(Field);
if (idx <> -1) and (RpcVer < NeededRpcVer) then
Fields.Delete(idx);
end;
function TRpc.RequestInfo(TorrentId: integer; const Fields: array of const; const ExtraFields: array of string): TJSONObject;
var
req, args: TJSONObject;
_fields: TJSONArray;
i: integer;
sl: TStringList;
begin
Result:=nil;
req:=TJSONObject.Create;
sl:=TStringList.Create;
try
req.Add('method', 'torrent-get');
args:=TJSONObject.Create;
if TorrentId <> 0 then
args.Add('ids', TJSONArray.Create([TorrentId]));
_fields:=TJSONArray.Create;
for i:=Low(Fields) to High(Fields) do
if (Fields[i].VType=vtAnsiString) then
sl.Add(String(Fields[i].VAnsiString));
sl.AddStrings(ExtraFields);
sl.Sort;
DeleteIfRpcLessThan(sl, 'labels', FRPCVersion, 16);
for i:=sl.Count-2 downto 0 do
if (sl[i]=sl[i+1]) then
sl.Delete(i+1);
for i:=0 to sl.Count-1 do
_fields.Add(sl[i]);
args.Add('fields', _fields);
if FRPCVersion >= 16 then
args.Add('format', 'table');
req.Add('arguments', args);
if FRPCVersion >= 16 then
Result:=TranslateTableToObjects(SendRequest(req))
else
Result:=SendRequest(req);
finally
sl.Free;
req.Free;
end;
end;
function TRpc.RequestInfo(TorrentId: integer; const Fields: array of const): TJSONObject;
begin
Result:=RequestInfo(TorrentId, Fields, []);
end;
function TRpc.GetStatus: string;
begin
Lock;
try
Result:=FStatus;
UniqueString(Result);
finally
Unlock;
end;
end;
function TRpc.GetTorrentFields: string;
begin
Lock;
try
Result:=FTorrentFields;
UniqueString(Result);
finally
Unlock;
end;
end;
procedure TRpc.SetInfoStatus(const AValue: string);
begin
Lock;
try
FInfoStatus:=AValue;
UniqueString(FStatus);
finally
Unlock;
end;
end;
function TRpc.GetConnected: boolean;
begin
Result:=Assigned(RpcThread) and FConnected;
end;
function TRpc.GetConnecting: boolean;
begin
Result:=not FConnected and Assigned(RpcThread);
end;
function TRpc.GetInfoStatus: string;
begin
Lock;
try
Result:=FInfoStatus;
UniqueString(Result);
finally
Unlock;
end;
end;
procedure TRpc.SetStatus(const AValue: string);