uktwsapi.pas
48.1 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
{
Copyright (c) 2007, The Jam Warehouse Software (Pty) Ltd.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
i) Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
ii) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
iii) Neither the name of the The Jam Warehouse Software (Pty) Ltd nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES ( INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ( INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
}
{*
This is a Delphi port of the php api for KnowledgeTree WebService.
@Author Bjarte Kalstveit Vebjørnsen <bjarte@macaos.com>
@Version 1.0 BKV 24.09.2007 Initial revision
*}
unit uktwsapi;
interface
uses
Classes, SysUtils, SOAPHTTPClient, uwebservice;
type
/// Base exception class
EKTWSAPI_Exception = class(Exception);
TKTWSAPI_FolderItem = class;
TKTWSAPI_Folder = class;
TKTWSAPI_Document = class;
TKTWSAPI = class;
/// Base class for documents and folders
TKTWSAPI_FolderItem = class(TObject)
private
FKTAPI: TKTWSAPI; /// Handle to KTAPI object
FParentId: Integer; /// Id of parent folder
function _GetFileSize(FileName: WideString): WideString;
function _UploadFile(FileName, Action: WideString; DocumentId: Integer = 0): WideString;
function _DownloadFile(Url, LocalPath, FileName: WideString): Boolean;
function _SaveBase64StringAsFile(Base64String, LocalPath, FileName: WideString): Boolean;
function _LoadFileAsBase64String(FileName: WideString): WideString;
public
function GetParentFolder:TKTWSAPI_Folder;
end;
/// Class representing a folder
TKTWSAPI_Folder = class(TKTWSAPI_FolderItem)
private
FFolderName, /// Name of folder
FFullPath: WideString; /// Full path to folder
FFolderId: Integer; /// Id to folder
public
constructor Create(KTAPI:TKTWSAPI; FolderDetail: kt_folder_detail); overload;
class function Get(KTAPI: TKTWSAPI; FolderId:Integer): TKTWSAPI_Folder;
function GetParentFolderId: Integer;
function GetFolderName: WideString;
function GetFolderId: Integer;
function GetFolderByName(FolderName: WideString): TKTWSAPI_Folder;
function GetFullPath: WideString;
function GetListing(Depth: Integer=1; What: WideString = 'DF'): kt_folder_contents;
function GetDocumentByName(Title: WideString): TKTWSAPI_Document;
function GetDocumentByFileName(FileName: WideString): TKTWSAPI_Document;
function AddFolder(FolderName: WideString): TKTWSAPI_Folder;
function Delete(Reason: WideString): Boolean;
function Rename(NewName: WideString): Boolean;
function Move(TargetFolder:TKTWSAPI_Folder; Reason: WideString): Boolean;
function Copy(TargetFolder:TKTWSAPI_Folder; Reason: WideString): Boolean;
function AddDocument(FileName: WideString; Title: WideString = '';
DocumentType: WideString = ''): TKTWSAPI_Document;
function AddDocumentBase64(FileName: WideString; Title: WideString = '';
DocumentType: WideString = ''): TKTWSAPI_Document;
published
property FolderName: WideString read FFolderName write FFolderName;
property FullPath: WideString read FFullPath write FFullPath;
property FolderId: Integer read FFolderId write FFolderId;
end;
/// Class representing a document
TKTWSAPI_Document = class(TKTWSAPI_FolderItem)
private
FDocumentId: Integer; /// Id of document
FTitle, /// Title of document
FDocumentType, /// Type of document
FVersion, /// Document version
FFileName, /// Original filename
FCreatedDate, /// Date created
FCreatedBy, /// Name of user who created
FUpdatedDate, /// Date updated
FUpdatedBy, /// Name of user who updated
FWorkflow, /// Workflow
FWorkflowState, /// Workflow state
FCheckoutBy, /// Name of user who checked out
FFullPath: WideString; /// Full path to document
public
constructor Create(KTAPI: TKTWSAPI; DocumentDetail: kt_document_detail);
class function Get(KTAPI: TKTWSAPI; DocumentId: Integer;
LoadInfo: Boolean = System.True): TKTWSAPI_Document;
function Checkin(FileName, Reason: WideString; MajorUpdate: Boolean): Boolean;
function Checkout(Reason: WideString; LocalPath: WideString = '';
DownloadFile: Boolean = True): Boolean;
function UndoCheckout(Reason: WideString): Boolean;
function Download(Version: WideString = ''; LocalPath: WideString = ''; FileName: WideString = ''): Boolean;
function Delete(Reason: WideString): Boolean;
function ChangeOwner(UserName, Reason: WideString): Boolean;
function Copy(Folder: TKTWSAPI_Folder; Reason: WideString;
NewTitle: WideString = ''; NewFileName: WideString = ''): Boolean;
function Move(Folder: TKTWSAPI_Folder; Reason: WideString;
NewTitle: WideString = ''; NewFileName: WideString = ''): Boolean;
function ChangeDocumentType(DocumentType: WideString): Boolean;
function RenameTitle(NewTitle: WideString): Boolean;
function RenameFilename(NewFilename: WideString): Boolean;
function StartWorkflow(WorkFlow: WideString): Boolean;
function DeleteWorkflow: Boolean;
function PeformWorkflowTransition(Transition, Reason: WideString): Boolean;
function GetMetadata:kt_metadata_response;
function UpdateMetadata(Metadata: kt_metadata_fieldsets): Boolean;
function GetTransactionHistory: kt_document_transaction_history_response;
function GetVersionHistory: kt_document_version_history_response;
function GetLinks: kt_linked_document_response;
function Link(DocumentId: Integer; const LinkType: WideString): Boolean;
function Unlink(DocumentId: Integer): Boolean;
function CheckinBase64(FileName, Reason: WideString; MajorUpdate: Boolean): Boolean;
function CheckoutBase64(Reason: WideString; LocalPath: WideString = '';
DownloadFile: Boolean = True): Boolean;
function DownloadBase64(Version: WideString = ''; LocalPath: WideString = ''): Boolean;
function GetTypes: kt_document_types_response;
function GetLinkTypes: kt_document_types_response;
property DocumentId: Integer read FDocumentId write FDocumentId;
property Title: WideString read FTitle write FTitle;
property DocumentType: WideString read FDocumentType write FDocumentType;
property Version: WideString read FVersion write FVersion;
property FileName: WideString read FFileName write FFileName;
property CreatedDate: WideString read FCreatedBy write FCreatedBy;
property CreatedBy: WideString read FCreatedBy write FCreatedBy;
property UpdatedDate: WideString read FUpdatedDate write FUpdatedDate;
property UpdatedBy: WideString read FUpdatedBy write FUpdatedBy;
property Workflow: WideString read FWorkflow write FWorkflow;
property WorkflowState: WideString read FWorkflowState write FWorkflowState;
property CheckoutBy: WideString read FCheckoutBy write FCheckoutBy;
property FullPath: WideString read FFullPath write FFullPath;
end;
/// Api entry point
TKTWSAPI = class
private
FSession, /// Current session id
FDownloadPath: WideString; /// Current download path
FSoapClient:KnowledgeTreePort; /// Object implementing the
/// KnowledgeTreePort interface
public
constructor Create();
function GetDownloadPath: WideString;
function SetDownloadPath(DownloadPath:WideString): Boolean;
function StartAnonymousSession(Ip: WideString = ''): WideString;
function StartSession(Username, Password: WideString; Ip: WideString = ''): WideString;
function ActiveSession(Session: WideString; Ip: WideString = ''): WideString;
function Logout: Boolean;
function GetRootFolder: TKTWSAPI_Folder;
function GetFolderById(FolderId: Integer): TKTWSAPI_Folder;
function GetDocumentById(DocumentId: Integer): TKTWSAPI_Document;
published
property SoapClient: KnowledgeTreePort read FSoapClient write FSoapClient;
property Session: WideString read FSession write FSession;
end;
var
KTWebServerUrl: WideString; /// Your webserver url
KTUploadUrl: WideString; /// URL to the web-service upload.php
KTWebServiceUrl: WideString; /// URL to the web-service wsdl
implementation
uses
IdComponent, IdURI, IdHttp, IdMultipartFormData, IdGlobalProtocols,
uPHPSerialize, EncdDecd;
const
KTWSAPI_ERR_SESSION_IN_USE =
'There is a session already active.'; /// Exception message when session is in use
KTWSAPI_ERR_SESSION_NOT_STARTED =
'An active session has not been started.'; /// Exception message when session is not started
{ TKTWSAPI_FolderItem }
{*
Finds the filesize of a file.
@param FileName Path to the file
@return The size of the file as a string
*}
function TKTWSAPI_FolderItem._GetFileSize(FileName: WideString): WideString;
var
SearchRec: TSearchRec;
sgPath: string;
inRetval, I1: Integer;
begin
sgPath := ExpandFileName(FileName);
try
inRetval := FindFirst(ExpandFileName(FileName), faAnyFile, SearchRec);
if inRetval = 0 then
I1 := SearchRec.Size
else
I1 := -1;
finally
SysUtils.FindClose(SearchRec);
end;
Result := IntToStr(I1);
end;
{*
Reads a file into a string and base64 encodes it.
@param Base64String Base64 encoded string
@param LocalPath Path to load from
@param FileName FileName to read
@return base64 encoded string
@throws EKTWSAPI_Exception 'Could not access file to read.'
*}
function TKTWSAPI_FolderItem._LoadFileAsBase64String(FileName: WideString): WideString;
var
Stream: TFileStream;
InString: AnsiString;
begin
if not FileExists(FileName) then
raise EKTWSAPI_Exception.Create('Could not access file to read.');
Stream := TFileStream.Create(FileName, fmOpenRead);
try
SetLength(InString, Stream.Size);
Stream.ReadBuffer(InString[1], Length(InString));
Result := EncodeString(InString);
finally
Stream.Free;
end;
end;
{*
Save a Base64 encoded string as a file.
@param Base64String Base64 encoded string
@param LocalPath Path to save to
@param FileName FileName to save as
@return true if success
*}
function TKTWSAPI_FolderItem._SaveBase64StringAsFile(Base64String, LocalPath,
FileName: WideString): Boolean;
var
OutString: AnsiString;
Stream: TFileStream;
LocalFileName: String;
begin
LocalFileName := LocalPath + '/' + FileName;
OutString := DecodeString(Base64String);
Stream := TFileStream.Create(LocalFileName, fmCreate);
try
// For some reason it fails if I use WideString instead of AnsiString
Stream.WriteBuffer(Pointer(OutString)^, Length(OutString));
Result := true;
finally
Stream.Free;
end;
end;
{*
Upload a file to KT.
@param FileName Path to upload file
@param Action Which action to perform with the file (A = Add, C = Checkin)
@param DocumentId Id of the document
@return The temporary filename on the server
@throws EKTWSAPI_Exception Could not access file to upload.
@throws EKTWSAPI_Exception No response from server.
@throws EKTWSAPI_Exception Could not upload file.
*}
function TKTWSAPI_FolderItem._UploadFile(FileName, Action: WideString;
DocumentId: Integer): WideString;
var
UploadName, UploadStatus, SessionId, StatusCode: WideString;
PostStream: TIdMultiPartFormDataStream;
ResponseStream: TStringStream;
Fields: TStringList;
HTTP: TIdHTTP;
UploadData: TPHPValue;
FilesArr: TPHPArray;
begin
Result := '';
if not FileExists(FileName) then
raise EKTWSAPI_Exception.Create('Could not access file to upload.');
// TODO: Check if file is readable
if (DocumentId = 0) then
UploadName := 'upload_document'
else
UploadName := 'upload_'+IntToStr(DocumentId);
SessionId := FKTAPI.Session;
HTTP := TIdHttp.Create(nil);
try
PostStream := TIdMultiPartFormDataStream.Create;
ResponseStream := TStringStream.Create('');
Fields := TStringList.Create;
try
PostStream.AddFormField('session_id', SessionId);
PostStream.AddFormField('action', Action);
PostStream.AddFormField('document_id',IntToStr(DocumentId));
PostStream.AddFormField(UploadName,'@' + FileName);
PostStream.AddFile('file',FileName,GetMIMETypeFromFile(FileName));
HTTP.Request.ContentType := PostStream.RequestContentType;
HTTP.Post(KTUploadURL, PostStream, ResponseStream);
if (ResponseStream.DataString = '') then
raise EKTWSAPI_Exception.Create('No response from server.');
ExtractStrings(['&'], [' '], pAnsiChar(ResponseStream.DataString), Fields);
StatusCode := Copy(Fields[0], Pos('=',Fields[0])+1, 1);
if (StatusCode <> '0') then
raise EKTWSAPI_Exception.Create('Could not upload file.');
UploadStatus := Copy(Fields[1], Pos('=',Fields[1])+1, Length(Fields[1]));
UploadStatus := TIdURI.URLDecode(UploadStatus);
UploadData := TPHPSerialize.Unserialize(TIdURI.URLDecode(UploadStatus));
Assert(Assigned(UploadData));
Assert(Assigned(UploadData.AsArray['file']));
try
FilesArr := UploadData.AsArray['file'].AsArray;
if (FilesArr['size'].AsString <> _GetFileSize(FileName)) then
raise EKTWSAPI_Exception.Create('Could not upload file.');
Result := FilesArr['tmp_name'].AsString;
finally
UploadData.Free;
end;
finally
PostStream.Free;
ResponseStream.Free;
Fields.Free;
end;
finally
HTTP.Free;
end;
end;
{*
Downloads a file from KT.
@param Url Http-url to download
@param LocalPath Path to save to
@param FileName FileName to save as
@return true if success
@throws EKTWSAPI_Exception Could not create local file
*}
function TKTWSAPI_FolderItem._DownloadFile(Url, LocalPath,
FileName: WideString): Boolean;
var
Stream: TMemoryStream;
LocalFileName: WideString;
FP: File;
HTTP: TIdHTTP;
begin
LocalFileName := LocalPath + '/' + FileName;
AssignFile(FP, LocalFileName);
{$I-}
Rewrite(FP,1);
{$I+}
if (IOResult <> 0) then
raise EKTWSAPI_Exception.Create('Could not create local file');
CloseFile(FP);
HTTP := TIdHttp.Create(Nil);
try
Stream := TMemoryStream.Create;
try
HTTP.Get(Url, Stream);
Stream.SaveToFile(LocalFileName);
Result := true;
finally
Stream.Free;
end;
finally
HTTP.Free;
end;
end;
{*
Returns a reference to the parent folder.
@return Handle to parent folder
*}
function TKTWSAPI_FolderItem.GetParentFolder: TKTWSAPI_Folder;
begin
Result := FKTAPI.GetFolderById(FParentId);
end;
{ TKTWSAPI_Folder }
{*
Constructor
@param KTAPI Handle to KTAPI object
@param FolderDetail Handle to kt_folder_detail
*}
constructor TKTWSAPI_Folder.Create(KTAPI: TKTWSAPI;
FolderDetail: kt_folder_detail);
begin
FKTAPI := KTAPI;
FFolderId := FolderDetail.id;
FFolderName := FolderDetail.folder_name;
FParentId := FolderDetail.parent_id;
FFullPath := FolderDetail.full_path;
end;
{*
Returns a reference to a TKTWSAPI_Folder
@param KTAPI Handle to KTAPI object
@param FolderId Id of folder to fetch
@return folder handle
@throws EKTWSAPI_Exception Response message
*}
class function TKTWSAPI_Folder.Get(KTAPI: TKTWSAPI;
FolderId: Integer): TKTWSAPI_Folder;
var
FolderDetail: kt_folder_detail;
begin
Assert(Assigned(KTAPI));
Assert(KTAPI.ClassNameIs('TKTWSAPI'));
Result := nil;
FolderDetail := KTAPI.SoapClient.get_folder_detail(KTAPI.Session, FolderId);
try
if (FolderDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(FolderDetail.message_);
Result := TKTWSAPI_Folder.Create(KTAPI, FolderDetail);
finally
FolderDetail.Free;
end;
end;
{*
Returns the parent folder id.
@return parent folder id
*}
function TKTWSAPI_Folder.GetParentFolderId: Integer;
begin
Result := FParentId;
end;
{*
Returns the folder name.
@return folder name
*}
function TKTWSAPI_Folder.GetFolderName: WideString;
begin
Result := FFolderName;
end;
{*
Returns the current folder id.
@return current folder id
*}
function TKTWSAPI_Folder.GetFolderId: Integer;
begin
Result := FFolderId;
end;
{*
Returns the folder based on foldername.
@param FolderName Name of folder
@return folder handle
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.GetFolderByName(FolderName: WideString): TKTWSAPI_Folder;
var
Path: WideString;
FolderDetail: kt_folder_detail;
begin
Path := FFullPath + '/' + FolderName;
if (System.Copy(Path, 0, 13) = '/Root Folder/') then
Path := System.Copy(Path, 13, Length(Path)-1);
if (System.Copy(Path, 0, 12) = 'Root Folder/') then
Path := System.Copy(Path, 12, Length(Path)-1);
FolderDetail := FKTAPI.SoapClient.get_folder_detail_by_name(FKTAPI.Session,
Path);
if (FolderDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(FolderDetail.message_);
Result := TKTWSAPI_Folder.Create(FKTAPI, FolderDetail);
end;
{*
Returns the full folder path.
@return Full folder path
*}
function TKTWSAPI_Folder.GetFullPath: WideString;
begin
Result := FFullPath;
end;
{*
Returns the contents of a folder.
@param Depth How many sub-folders to fetch
@param What to fetch (F=Folders, D=Documents, FD=Both)
@return folder contents handle
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.GetListing(Depth: Integer;
What: WideString): kt_folder_contents;
begin
Result := FKTAPI.SoapClient.get_folder_contents(
FKTAPI.Session, FFolderId, Depth, What);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Returns a document based on title.
@param Title Title of document
@return document handle
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.GetDocumentByName(Title: WideString): TKTWSAPI_Document;
var
Path: WideString;
DocumentDetail: kt_document_detail;
begin
Path := FFullPath + '/' + Title;
if (System.Copy(Path, 0, 13) = '/Root Folder/') then
Path := System.Copy(Path, 13, Length(Path)-1);
if (System.Copy(Path, 0, 12) = 'Root Folder/') then
Path := System.Copy(Path, 12, Length(Path)-1);
DocumentDetail := FKTAPI.SoapClient.get_document_detail_by_name(FKTAPI.Session,
Path, 'T');
if (DocumentDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(DocumentDetail.message_);
Result := TKTWSAPI_Document.Create(FKTAPI, DocumentDetail);
end;
{*
Returns a document based on filename.
@param FileName Name of file
@return document handle
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.GetDocumentByFileName(
FileName: WideString): TKTWSAPI_Document;
var
Path: WideString;
DocumentDetail: kt_document_detail;
begin
Result := nil;
Path := FFullPath + '/' + FileName;
if (System.Copy(Path, 0, 13) = '/Root Folder/') then
Path := System.Copy(Path, 13, Length(Path)-1);
if (System.Copy(Path, 0, 12) = 'Root Folder/') then
Path := System.Copy(Path, 12, Length(Path)-1);
DocumentDetail := FKTAPI.SoapClient.get_document_detail_by_name(FKTAPI.Session,
Path, 'F');
try
if (DocumentDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(DocumentDetail.message_);
Result := TKTWSAPI_Document.Create(FKTAPI, DocumentDetail);
finally
DocumentDetail.Free;
end;
end;
{*
Adds a sub folder.
@param FolderName Name of folder
@return new folder handle
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.AddFolder(FolderName: WideString): TKTWSAPI_Folder;
var
FolderDetail: kt_folder_detail;
begin
Result := nil;
FolderDetail := FKTAPI.SoapClient.create_folder(FKTAPI.Session, FFolderId, FolderName);
try
if (FolderDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(FolderDetail.message_);
Result := TKTWSAPI_Folder.Create(FKTAPI, FolderDetail);
finally
FolderDetail.Free;
end;
end;
{*
Deletes the current folder.
@param Reason Reason for deletetion
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.Delete(Reason: WideString): Boolean;
var
response: kt_response;
begin
// TODO: check why no transaction in folder_transactions
Result := System.False;
response := FKTAPI.SoapClient.delete_folder(FKTAPI.Session,
FFolderId, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Renames the current folder.
@param NewName New folder name
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.Rename(NewName: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.rename_folder(FKTAPI.Session,
FFolderId, NewName);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Moves a folder to another location.
@param TargetFolder Handle to target folder
@param Reason Reason for move
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.Move(TargetFolder: TKTWSAPI_Folder;
Reason: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
Assert(Assigned(TargetFolder));
Assert(TargetFolder.ClassNameIs('TKTWSAPI_Folder'));
response := FKTAPI.SoapClient.move_folder(FKTAPI.Session,
FFolderId, TargetFolder.GetFolderId, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Copies a folder to another location
@param TargetFolder Handle to target folder
@param Reason Reason for copy
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.Copy(TargetFolder: TKTWSAPI_Folder;
Reason: WideString): Boolean;
var
TargetId: Integer;
response: kt_response;
begin
Result := System.False;
Assert(Assigned(TargetFolder));
Assert(TargetFolder.ClassNameIs('TKTWSAPI_Folder'));
TargetId := TargetFolder.GetFolderId;
response := FKTAPI.SoapClient.copy_folder(FKTAPI.Session,
FFolderId, TargetId, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Adds a document to the current folder.
@param FileName FileName to upload
@param Title Title to give document
@param DocumentType Documenttype of document (Default is 'Default')
@return handle to new document
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.AddDocument(FileName, Title,
DocumentType: WideString): TKTWSAPI_Document;
var
BaseName, TempFileName: WideString;
DocumentDetail: kt_document_detail;
begin
Result := nil;
BaseName := ExtractFileName(FileName);
if (Title = '') then
Title := BaseName;
if (DocumentType = '') then
DocumentType := 'Default';
TempFileName := _UploadFile(FileName, 'A');
DocumentDetail := FKTAPI.FSoapClient.add_document(FKTAPI.Session, FFolderId,
Title, BaseName, DocumentType, TempFileName);
try
if (DocumentDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(DocumentDetail.message_);
Result := TKTWSAPI_Document.Create(FKTAPI, DocumentDetail);
finally
DocumentDetail.Free;
end;
end;
{*
Adds a document to the current folder through web service.
@param FileName FileName to upload
@param Title Title to give document
@param DocumentType Documenttype of document (Default is 'Default')
@return handle to new document
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Folder.AddDocumentBase64(FileName, Title,
DocumentType: WideString): TKTWSAPI_Document;
begin
raise EKTWSAPI_Exception.Create('Not implemented yet!');
end;
{ TKTWSAPI_Document }
{*
Constructor
@param KTAPI Handle to KTAPI object
@param DocumentDetail handle to kt_document_detail
*}
constructor TKTWSAPI_Document.Create(KTAPI: TKTWSAPI;
DocumentDetail: kt_document_detail);
begin
FKTAPI := KTAPI;
FDocumentId := DocumentDetail.document_id;
FTitle := DocumentDetail.title;
FDocumentType := DocumentDetail.document_type;
FVersion := DocumentDetail.version;
FFilename := DocumentDetail.filename;
FCreatedDate := DocumentDetail.created_date;
FCreatedBy := DocumentDetail.created_by;
FUpdatedDate := DocumentDetail.updated_date;
FUpdatedBy := DocumentDetail.updated_by;
FParentId := DocumentDetail.folder_id;
FWorkflow := DocumentDetail.workflow;
FWorkflowState := DocumentDetail.workflow_state;
FCheckoutBy := DocumentDetail.checkout_by;
FFullPath := DocumentDetail.full_path;
end;
{*
Returns a reference to a document.
@param KTAPI Handle to KTAPI object
@param DocumentId Id of document
@param LoadInfo Call web service to load document details
@return handle to document
@throws EKTWSAPI_Exception Response message
*}
class function TKTWSAPI_Document.Get(KTAPI: TKTWSAPI; DocumentId: Integer;
LoadInfo: Boolean): TKTWSAPI_Document;
var
DocumentDetail:kt_document_detail;
begin
Assert(Assigned(KTAPI));
Assert(KTAPI.ClassNameIs('TKTWSAPI'));
if LoadInfo then
begin
DocumentDetail := KTAPI.SoapClient.get_document_detail(KTAPI.Session, DocumentId);
if (DocumentDetail.status_code <> 0) then
raise EKTWSAPI_Exception.Create(DocumentDetail.message_);
end else
begin
DocumentDetail := kt_document_detail.Create;
DocumentDetail.document_id := DocumentId;
end;
try
Result := TKTWSAPI_Document.Create(KTAPI, DocumentDetail);
finally
DocumentDetail.Free;
end;
end;
{*
Checks in a document.
@param FileName Name of file to checkin
@param Reason Reason for checkin
@param MajorUpdate Checkin as a major update (bumps major version number)
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Checkin(FileName, Reason: WideString;
MajorUpdate: Boolean): Boolean;
var
BaseName, TempFileName: WideString;
response: kt_response;
begin
Result := System.False;
BaseName := ExtractFileName(FileName);
TempFileName := _UploadFile(FileName, 'C', FDocumentId);
response := FKTAPI.SoapClient.checkin_document(FKTAPI.Session, FDocumentId, BaseName, Reason, TempFileName, MajorUpdate);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Checks out a document.
@param Reason Reason for checkout
@param LocalPath to save downloaded file to
@param DownloadFile if false then checkout will happen without download
@return true
@throws EKTWSAPI_Exception local path does not exist
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Checkout(Reason, LocalPath: WideString;
DownloadFile: Boolean): Boolean;
var
response: kt_response;
Url: WideString;
begin
Result := System.False;
if (LocalPath = '') then LocalPath := FKTAPI.GetDownloadPath;
if not DirectoryExists(LocalPath) then
raise EKTWSAPI_Exception.Create('local path does not exist');
// TODO check if Directory is writable
response := FKTAPI.SoapClient.checkout_document(FKTAPI.Session, FDocumentId, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Url := response.message_;
if DownloadFile then
_DownloadFile(KTWebServerURL+Url, LocalPath, FFileName);
Result := System.True;
finally
response.Free;
end;
end;
{*
Undo a document checkout
@param Reason Reason for undoing the checkout
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.UndoCheckout(Reason: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.undo_document_checkout(FKTAPI.Session, FDocumentId, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Download a version of the document
@param Version Which version of document to download
@param LocalPath Optional path to save file to
@param FileName Optional filename to save file as
@return true
@throws EKTWSAPI_Exception local path does not exist
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Download(Version, LocalPath, FileName: WideString): Boolean;
var
response: kt_response;
Url: WideString;
begin
Result := System.False;
if (LocalPath = '') then LocalPath := FKTAPI.GetDownloadPath;
if (FileName = '') then FileName := FFileName;
if (not DirectoryExists(LocalPath)) then
raise EKTWSAPI_Exception.Create('local path does not exist');
// TODO: Check if local path is writable
response := FKTAPI.SoapClient.download_document(FKTAPI.Session, FDocumentId);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Url := response.message_;
Result := _DownloadFile(KTWebServerURL+Url, LocalPath, FileName);
finally
response.Free;
end;
end;
{*
Download a version of the document through webservice
@param Version Which version of document to download
@param LocalPath Path to save file to
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.DownloadBase64(Version,
LocalPath: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
if (LocalPath = '') then LocalPath := FKTAPI.GetDownloadPath;
if (FileName = '') then FileName := FFileName;
if (not DirectoryExists(LocalPath)) then
raise EKTWSAPI_Exception.Create('local path does not exist');
// TODO: Check if local path is writable
response := FKTAPI.SoapClient.download_base64_document(FKTAPI.Session, FDocumentId);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := _SaveBase64StringAsFile(response.message_, LocalPath, FileName);
finally
response.Free;
end;
end;
{*
Deletes the current document.
@param Reason Reason for delete
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Delete(Reason: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.delete_document(FKTAPI.Session, FDocumentId, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Changes the owner of the document.
@param UserName Username of new owner
@param Reason Reason for the owner change
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.ChangeOwner(UserName, Reason: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.change_document_owner(FKTAPI.Session, FDocumentId, UserName, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Copies the current document to the specified folder.
@param Folder Handle to target folder
@param Reason Reason for copy
@param NewTitle New title of the file
@param NewFileName New filename of the file
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Copy(Folder: TKTWSAPI_Folder; Reason, NewTitle,
NewFileName: WideString): Boolean;
var
response: kt_response;
FolderId: Integer;
begin
Result := System.False;
Assert(Assigned(Folder));
Assert(Folder.ClassNameIs('TKTWSAPI_Folder'));
FolderId := Folder.GetFolderId;
response := FKTAPI.SoapClient.copy_document(FKTAPI.Session, FDocumentId, FolderId, Reason, NewTitle, NewFileName);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Moves the current document to the specified folder.
@param Folder Handle to target folder
@param Reason Reason for move
@param NewTitle New title of the file
@param NewFileName New filename of the file
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Move(Folder: TKTWSAPI_Folder; Reason, NewTitle,
NewFileName: WideString): Boolean;
var
response: kt_response;
FolderId: Integer;
begin
Result := System.False;
Assert(Assigned(Folder));
Assert(Folder.ClassNameIs('TKTWSAPI_Folder'));
FolderId := Folder.GetFolderId;
response := FKTAPI.SoapClient.move_document(FKTAPI.Session, FDocumentId, FolderId, Reason, NewTitle, NewFileName);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Changes the document type.
@param DocumentType DocumentType to change to
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.ChangeDocumentType(DocumentType: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.change_document_type(FKTAPI.Session, FDocumentId, DocumentType);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Renames the title of the current document.
@param NewTitle New title of the document
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.RenameTitle(NewTitle: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.rename_document_title(FKTAPI.Session, FDocumentId, NewTitle);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Renames the filename of the current document.
@param NewFilename New filename of the document
@return true
*}
function TKTWSAPI_Document.RenameFilename(NewFilename: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.rename_document_filename(FKTAPI.Session, FDocumentId, NewFilename);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Starts a workflow on the current document.
@param WorkFlow Workflow
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.StartWorkflow(WorkFlow: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.start_document_workflow(FKTAPI.Session, FDocumentId, WorkFlow);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Removes the workflow process from the current document.
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.DeleteWorkflow: Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.delete_document_workflow(FKTAPI.Session, FDocumentId);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Performs a transition on the current document.
@param Transition Transition
@param Reason Reason for transition
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.PeformWorkflowTransition(Transition,
Reason: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.perform_document_workflow_transition(FKTAPI.Session, FDocumentId, Transition, Reason);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Returns metadata on the document.
@return handle to metadata
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.GetMetadata: kt_metadata_response;
begin
Result := FKTAPI.SoapClient.get_document_metadata(FKTAPI.Session, FDocumentId);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Updates the metadata on the current document.
@param Metadata Handle to metadata
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.UpdateMetadata(
Metadata: kt_metadata_fieldsets): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.update_document_metadata(FKTAPI.Session, FDocumentId, MetaData);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Returns the transaction history on the current document.
@return handle to transaction history
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.GetTransactionHistory: kt_document_transaction_history_response;
begin
Result := FKTAPI.SoapClient.get_document_transaction_history(FKTAPI.Session, FDocumentId);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Returns the version history on the current document.
@return handle to document version history
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.GetVersionHistory: kt_document_version_history_response;
begin
Result := FKTAPI.SoapClient.get_document_version_history(FKTAPI.Session, FDocumentId);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Returns the links of the current document
@return handle to document version history
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.GetLinks: kt_linked_document_response;
begin
Result := FKTAPI.SoapClient.get_document_links(FKTAPI.Session, FDocumentId);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Links the current document to a DocumentId
@param DocumentId DocumentId to link to
@param LinkType Type of link
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Link(DocumentId: Integer;
const LinkType: WideString): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.link_documents(FKTAPI.Session, FDocumentId,
DocumentId, LinkType);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Unlinks the current document from a DocumentId
@param DocumentId DocumentId to unlink to
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.Unlink(DocumentId: Integer): Boolean;
var
response: kt_response;
begin
Result := System.False;
response := FKTAPI.SoapClient.unlink_documents(FKTAPI.Session, FDocumentId,
DocumentId);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{*
Checks out a document and downloads document through webservice
@param Reason Reason for checkout
@param LocalPath to save downloaded file to
@return true
@throws EKTWSAPI_Exception local path does not exist
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.CheckoutBase64(Reason,
LocalPath: WideString; DownloadFile: Boolean): Boolean;
var
response: kt_response;
begin
Result := System.False;
if (LocalPath = '') then LocalPath := FKTAPI.GetDownloadPath;
if not DirectoryExists(LocalPath) then
raise EKTWSAPI_Exception.Create('local path does not exist');
// TODO check if Directory is writable
response := FKTAPI.SoapClient.checkout_base64_document(FKTAPI.Session, FDocumentId, Reason, DownloadFile);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := True;
if DownloadFile then
Result := _SaveBase64StringAsFile(response.message_, LocalPath, FFileName);
finally
response.Free;
end;
end;
{*
Gets list of document types
@return handle to document types response
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.GetTypes: kt_document_types_response;
begin
Result := FKTAPI.SoapClient.get_document_types(FKTAPI.Session);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Get list of document link types
@return handle to document types response
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.GetLinkTypes: kt_document_types_response;
begin
Result := FKTAPI.SoapClient.get_document_link_types(FKTAPI.Session);
if (Result.status_code <> 0) then
raise EKTWSAPI_Exception.Create(Result.message_);
end;
{*
Checks in a document and uploads through webservice
@param FileName Name of file to checkin
@param Reason Reason for checkin
@param MajorUpdate Checkin as a major update (bumps major version number)
@return true
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI_Document.CheckinBase64(FileName, Reason: WideString;
MajorUpdate: Boolean): Boolean;
var
Base64String, BaseName: WideString;
response: kt_response;
begin
Result := System.False;
Base64String := _LoadFileAsBase64String(FileName);
BaseName := ExtractFileName(FileName);
response := FKTAPI.SoapClient.checkin_base64_document(FKTAPI.Session,
FDocumentId, BaseName, Reason, Base64String, MajorUpdate);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
Result := System.True;
finally
response.Free;
end;
end;
{ TKTWSAPI }
{*
Constructor
*}
constructor Tktwsapi.Create();
begin
FSoapClient := GetKnowledgeTreePort(False, KTWebServiceUrl);
FDownloadPath := '';
end;
{*
This returns the default location where documents are downloaded in download() and checkout().
@return string
*}
function TKTWSAPI.GetDownloadPath: WideString;
begin
Result := FDownloadPath;
end;
{*
Allows the default location for downloaded documents to be changed.
@param DownloadPath Path to writable folder
@return true
*}
function TKTWSAPI.SetDownloadPath(DownloadPath: WideString): Boolean;
begin
if (not DirectoryExists(DownloadPath)) then
raise EKTWSAPI_Exception.Create('local path is not writable');
// TODO : Check if folder is writable
FDownloadPath := DownloadPath;
Result := System.True;
end;
{*
Starts an anonymous session.
@param Ip Users Ip-adress
@return Active session id
*}
function TKTWSAPI.StartAnonymousSession(Ip: WideString): WideString;
begin
Result := StartSession('anonymous', '', Ip);
end;
{*
Starts a user session.
@param Username Users username
@param Password Users password
@param Ip Users Ip-adress
@return Active session id
@throws EKTWSAPI_Exception KTWSAPI_ERR_SESSION_IN_USE
@throws EKTWSAPI_Exception Response message
*}
function TKTWSAPI.StartSession(Username, Password, Ip: WideString): WideString;
var
response: kt_response;
begin
if (FSession <> '') then
raise EKTWSAPI_Exception.Create(KTWSAPI_ERR_SESSION_IN_USE);
response := FSoapClient.login(Username, Password, Ip);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
FSession := response.message_;
Result := FSession;
finally
response.Free;
end;
end;
{*
Sets an active session.
@param Session Session id to activate
@param Ip Users Ip-adress
@return Active session id
@throws EKTWSAPI_Exception KTWSAPI_ERR_SESSION_IN_USE
*}
function TKTWSAPI.ActiveSession(Session, Ip: WideString): WideString;
begin
if (FSession <> '') then
raise EKTWSAPI_Exception.Create(KTWSAPI_ERR_SESSION_IN_USE);
FSession := Session;
Result := FSession;
end;
{*
Closes an active session.
@return true
*}
function TKTWSAPI.Logout: Boolean;
var
response: kt_response;
begin
Result := System.False;
if (FSession = '') then
raise EKTWSAPI_Exception.Create(KTWSAPI_ERR_SESSION_NOT_STARTED);
response := FSoapClient.logout(FSession);
try
if (response.status_code <> 0) then
raise EKTWSAPI_Exception.Create(response.message_);
FSession := '';
Result := System.True;
finally
response.Free;
end;
end;
{*
Returns a reference to the root folder.
@return handle to folder
*}
function TKTWSAPI.GetRootFolder: TKTWSAPI_Folder;
begin
Result := GetFolderById(1);
end;
{*
Returns a reference to a folder based on id.
@param FolderId Id of folder
@return handle to folder
*}
function TKTWSAPI.GetFolderById(FolderId: Integer): TKTWSAPI_Folder;
begin
if FSession = '' then
raise EKTWSAPI_Exception.Create('A session is not active');
Result := TKTWSAPI_Folder.Get(Self, FolderId);
end;
{*
Returns a reference to a document based on id.
@param DocumentId Id of document
@return handle to document
*}
function TKTWSAPI.GetDocumentById(DocumentId: Integer): TKTWSAPI_Document;
begin
if FSession = '' then
raise EKTWSAPI_Exception.Create('A session is not active');
Result := TKTWSAPI_Document.Get(Self, DocumentId)
end;
end.