-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathUtils.ts
1167 lines (1064 loc) · 36.9 KB
/
Utils.ts
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
import {
Deserialiser,
IAccessToken,
IExternalResource,
IIIFResource,
IManifestoOptions,
JSONLDResource,
Service,
StatusCode,
TreeNode
} from "./internal";
import {
MediaType,
ServiceProfile,
ServiceType
} from "@iiif/vocabulary/dist-commonjs";
import {
OK,
MOVED_TEMPORARILY,
UNAUTHORIZED
} from "@edsilv/http-status-codes/dist-commonjs";
import "isomorphic-unfetch";
export class Utils {
static getMediaType(type: string): MediaType {
type = type.toLowerCase();
type = type.split(";")[0];
return <MediaType>type.trim();
}
static getImageQuality(profile: ServiceProfile): string {
if (
profile === ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_1 ||
profile === ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_2 ||
profile === ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_1 ||
profile === ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_2 ||
profile === ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_1 ||
profile === ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_2 ||
profile === ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_1 ||
profile === ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_2 ||
profile === ServiceProfile.IMAGE_1_LEVEL_1 ||
profile === ServiceProfile.IMAGE_1_PROFILE_LEVEL_1 ||
profile === ServiceProfile.IMAGE_1_LEVEL_2 ||
profile === ServiceProfile.IMAGE_1_PROFILE_LEVEL_2
) {
return "native";
}
return "default";
}
static getInexactLocale(locale: string): string {
if (locale.indexOf("-") !== -1) {
return locale.substr(0, locale.indexOf("-"));
}
return locale;
}
static getLocalisedValue(resource: any, locale: string): string | null {
// if the resource is not an array of translations, return the string.
if (!Array.isArray(resource)) {
return resource;
}
// test for exact match
for (let i = 0; i < resource.length; i++) {
const value = resource[i];
const language = value["@language"];
if (locale === language) {
return <string>value["@value"];
}
}
// test for inexact match
const match: string = locale.substr(0, locale.indexOf("-"));
for (let i = 0; i < resource.length; i++) {
var value = resource[i];
var language = value["@language"];
if (language === match) {
return <string>value["@value"];
}
}
return null;
}
static generateTreeNodeIds(treeNode: TreeNode, index: number = 0): void {
let id: string;
if (!treeNode.parentNode) {
id = "0";
} else {
id = treeNode.parentNode.id + "-" + index;
}
treeNode.id = id;
for (let i = 0; i < treeNode.nodes.length; i++) {
var n: TreeNode = treeNode.nodes[i];
Utils.generateTreeNodeIds(n, i);
}
}
static normaliseType(type: string): string {
type = (type || "").toLowerCase();
if (type.indexOf(":") !== -1) {
const split: string[] = type.split(":");
return split[1];
}
return type;
}
static normaliseUrl(url: string): string {
url = url.substr(url.indexOf("://"));
if (url.indexOf("#") !== -1) {
url = url.split("#")[0];
}
return url;
}
static normalisedUrlsMatch(url1: string, url2: string): boolean {
return Utils.normaliseUrl(url1) === Utils.normaliseUrl(url2);
}
static isImageProfile(profile: ServiceProfile): boolean {
if (
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_1_LEVEL_0) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_PROFILE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_1_LEVEL_1) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_PROFILE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_1_LEVEL_2) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_PROFILE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_LEVEL_0) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_2_PROFILE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_LEVEL_1) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_2_PROFILE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_LEVEL_2) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_PROFILE_LEVEL_2)
) {
return true;
}
return false;
}
static isImageServiceType(type: string | null): boolean {
return (
(type !== null &&
type.toLowerCase() === ServiceType.IMAGE_SERVICE_2.toLowerCase()) ||
type === ServiceType.IMAGE_SERVICE_3.toLowerCase()
);
}
static isLevel0ImageProfile(profile: ServiceProfile): boolean {
if (
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_1_LEVEL_0) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_PROFILE_LEVEL_0
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_LEVEL_0) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_PROFILE_LEVEL_0)
) {
return true;
}
return false;
}
static isLevel1ImageProfile(profile: ServiceProfile): boolean {
if (
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_1_LEVEL_1) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_PROFILE_LEVEL_1
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_LEVEL_1) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_PROFILE_LEVEL_1)
) {
return true;
}
return false;
}
static isLevel2ImageProfile(profile: ServiceProfile): boolean {
if (
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_COMPLIANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_COMPLIANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_0_CONFORMANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_CONFORMANCE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_1_LEVEL_2) ||
Utils.normalisedUrlsMatch(
profile,
ServiceProfile.IMAGE_1_PROFILE_LEVEL_2
) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_LEVEL_2) ||
Utils.normalisedUrlsMatch(profile, ServiceProfile.IMAGE_2_PROFILE_LEVEL_2)
) {
return true;
}
return false;
}
static parseManifest(
manifest: any,
options?: IManifestoOptions | undefined
): IIIFResource | null {
return Deserialiser.parse(manifest, options);
}
static checkStatus(response) {
if (response.ok) {
return response;
} else {
var error = new Error(response.statusText);
(error as any).response = response;
return Promise.reject(error);
}
}
static loadManifest(url: string): Promise<any> {
return new Promise<any>((resolve, reject) => {
fetch(url)
.then(Utils.checkStatus)
.then(r => r.json())
.then(data => {
resolve(data);
})
.catch(err => {
reject();
});
});
}
static loadExternalResourcesAuth1(
resources: IExternalResource[],
openContentProviderInteraction: (service: Service) => any,
openTokenService: (
resource: IExternalResource,
tokenService: Service
) => Promise<any>,
getStoredAccessToken: (
resource: IExternalResource
) => Promise<IAccessToken | null>,
userInteractedWithContentProvider: (
contentProviderInteraction: any
) => Promise<any>,
getContentProviderInteraction: (
resource: IExternalResource,
service: Service
) => Promise<any>,
handleMovedTemporarily: (resource: IExternalResource) => Promise<any>,
showOutOfOptionsMessages: (
resource: IExternalResource,
service: Service
) => void
): Promise<IExternalResource[]> {
return new Promise<IExternalResource[]>((resolve, reject) => {
const promises = resources.map((resource: IExternalResource) => {
return Utils.loadExternalResourceAuth1(
resource,
openContentProviderInteraction,
openTokenService,
getStoredAccessToken,
userInteractedWithContentProvider,
getContentProviderInteraction,
handleMovedTemporarily,
showOutOfOptionsMessages
);
});
Promise.all(promises)
.then(() => {
resolve(resources);
})
["catch"](error => {
reject(error);
});
});
}
static async loadExternalResourceAuth1(
resource: IExternalResource,
openContentProviderInteraction: (service: Service) => any,
openTokenService: (
resource: IExternalResource,
tokenService: Service
) => Promise<void>,
getStoredAccessToken: (
resource: IExternalResource
) => Promise<IAccessToken | null>,
userInteractedWithContentProvider: (
contentProviderInteraction: any
) => Promise<any>,
getContentProviderInteraction: (
resource: IExternalResource,
service: Service
) => Promise<any>,
handleMovedTemporarily: (resource: IExternalResource) => Promise<any>,
showOutOfOptionsMessages: (
resource: IExternalResource,
service: Service
) => void
): Promise<IExternalResource> {
const storedAccessToken: IAccessToken | null = await getStoredAccessToken(
resource
);
if (storedAccessToken) {
await resource.getData(storedAccessToken);
if (resource.status === OK) {
return resource;
} else {
// the stored token is no good for this resource
await Utils.doAuthChain(
resource,
openContentProviderInteraction,
openTokenService,
userInteractedWithContentProvider,
getContentProviderInteraction,
handleMovedTemporarily,
showOutOfOptionsMessages
);
}
if (resource.status === OK || resource.status === MOVED_TEMPORARILY) {
return resource;
}
throw Utils.createAuthorizationFailedError();
} else {
await resource.getData();
if (
resource.status === MOVED_TEMPORARILY ||
resource.status === UNAUTHORIZED
) {
await Utils.doAuthChain(
resource,
openContentProviderInteraction,
openTokenService,
userInteractedWithContentProvider,
getContentProviderInteraction,
handleMovedTemporarily,
showOutOfOptionsMessages
);
}
if (resource.status === OK || resource.status === MOVED_TEMPORARILY) {
return resource;
}
throw Utils.createAuthorizationFailedError();
}
}
static async doAuthChain(
resource: IExternalResource,
openContentProviderInteraction: (service: Service) => any,
openTokenService: (
resource: IExternalResource,
tokenService: Service
) => Promise<any>,
userInteractedWithContentProvider: (
contentProviderInteraction: any
) => Promise<any>,
getContentProviderInteraction: (
resource: IExternalResource,
service: Service
) => Promise<any>,
handleMovedTemporarily: (resource: IExternalResource) => Promise<any>,
showOutOfOptionsMessages: (
resource: IExternalResource,
service: Service
) => void
): Promise<IExternalResource | void> {
// This function enters the flowchart at the < External? > junction
// http://iiif.io/api/auth/1.0/#workflow-from-the-browser-client-perspective
if (!resource.isAccessControlled()) {
return resource; // no services found
}
// add options to all services.
const externalService: Service | null = resource.externalService;
if (externalService) {
externalService.options = <IManifestoOptions>resource.options;
}
const kioskService: Service | null = resource.kioskService;
if (kioskService) {
kioskService.options = <IManifestoOptions>resource.options;
}
const clickThroughService: Service | null = resource.clickThroughService;
if (clickThroughService) {
clickThroughService.options = <IManifestoOptions>resource.options;
}
const loginService: Service | null = resource.loginService;
if (loginService) {
loginService.options = <IManifestoOptions>resource.options;
}
if (!resource.isResponseHandled && resource.status === MOVED_TEMPORARILY) {
await handleMovedTemporarily(resource);
return resource;
}
let serviceToTry: Service | null = null;
let lastAttempted: Service | null = null;
// repetition of logic is left in these steps for clarity:
// Looking for external pattern
serviceToTry = externalService;
if (serviceToTry) {
lastAttempted = serviceToTry;
await Utils.attemptResourceWithToken(
resource,
openTokenService,
serviceToTry
);
return resource;
}
// Looking for kiosk pattern
serviceToTry = kioskService;
if (serviceToTry) {
lastAttempted = serviceToTry;
let kioskInteraction = openContentProviderInteraction(serviceToTry);
if (kioskInteraction) {
await userInteractedWithContentProvider(kioskInteraction);
await Utils.attemptResourceWithToken(
resource,
openTokenService,
serviceToTry
);
return resource;
}
}
// The code for the next two patterns is identical (other than the profile name).
// The difference is in the expected behaviour of
//
// await userInteractedWithContentProvider(contentProviderInteraction);
//
// For clickthrough the opened window should close immediately having established
// a session, whereas for login the user might spend some time entering credentials etc.
// Looking for clickthrough pattern
serviceToTry = clickThroughService;
if (serviceToTry) {
lastAttempted = serviceToTry;
let contentProviderInteraction = await getContentProviderInteraction(
resource,
serviceToTry
);
if (contentProviderInteraction) {
// should close immediately
await userInteractedWithContentProvider(contentProviderInteraction);
await Utils.attemptResourceWithToken(
resource,
openTokenService,
serviceToTry
);
return resource;
}
}
// Looking for login pattern
serviceToTry = loginService;
if (serviceToTry) {
lastAttempted = serviceToTry;
let contentProviderInteraction = await getContentProviderInteraction(
resource,
serviceToTry
);
if (contentProviderInteraction) {
// we expect the user to spend some time interacting
await userInteractedWithContentProvider(contentProviderInteraction);
await Utils.attemptResourceWithToken(
resource,
openTokenService,
serviceToTry
);
return resource;
}
}
// nothing worked! Use the most recently tried service as the source of
// messages to show to the user.
if (lastAttempted) {
showOutOfOptionsMessages(resource, lastAttempted);
}
}
static async attemptResourceWithToken(
resource: IExternalResource,
openTokenService: (
resource: IExternalResource,
tokenService: Service
) => Promise<any>,
authService: Service
): Promise<IExternalResource | void> {
// attempting token interaction for " + authService["@id"]
const tokenService: Service | null = authService.getService(
ServiceProfile.AUTH_1_TOKEN
);
if (tokenService) {
// found token service: " + tokenService["@id"]);
let tokenMessage: any = await openTokenService(resource, tokenService);
if (tokenMessage && tokenMessage.accessToken) {
await resource.getData(tokenMessage);
return resource;
}
}
}
static loadExternalResourcesAuth09(
resources: IExternalResource[],
tokenStorageStrategy: string,
clickThrough: (resource: IExternalResource) => Promise<any>,
restricted: (resource: IExternalResource) => Promise<any>,
login: (resource: IExternalResource) => Promise<any>,
getAccessToken: (
resource: IExternalResource,
rejectOnError: boolean
) => Promise<IAccessToken>,
storeAccessToken: (
resource: IExternalResource,
token: IAccessToken,
tokenStorageStrategy: string
) => Promise<any>,
getStoredAccessToken: (
resource: IExternalResource,
tokenStorageStrategy: string
) => Promise<IAccessToken>,
handleResourceResponse: (resource: IExternalResource) => Promise<any>,
options?: IManifestoOptions
): Promise<IExternalResource[]> {
return new Promise<IExternalResource[]>((resolve, reject) => {
const promises = resources.map((resource: IExternalResource) => {
return Utils.loadExternalResourceAuth09(
resource,
tokenStorageStrategy,
clickThrough,
restricted,
login,
getAccessToken,
storeAccessToken,
getStoredAccessToken,
handleResourceResponse,
options
);
});
Promise.all(promises)
.then(() => {
resolve(resources);
})
["catch"](error => {
reject(error);
});
});
}
// IIIF auth api pre v1.0
// Keeping this around for now until the auth 1.0 implementation is stable
static loadExternalResourceAuth09(
resource: IExternalResource,
tokenStorageStrategy: string,
clickThrough: (resource: IExternalResource) => Promise<any>,
restricted: (resource: IExternalResource) => Promise<any>,
login: (resource: IExternalResource) => Promise<any>,
getAccessToken: (
resource: IExternalResource,
rejectOnError: boolean
) => Promise<IAccessToken>,
storeAccessToken: (
resource: IExternalResource,
token: IAccessToken,
tokenStorageStrategy: string
) => Promise<any>,
getStoredAccessToken: (
resource: IExternalResource,
tokenStorageStrategy: string
) => Promise<IAccessToken>,
handleResourceResponse: (resource: IExternalResource) => Promise<any>,
options?: IManifestoOptions
): Promise<IExternalResource> {
return new Promise<any>((resolve, reject) => {
if (options && options.pessimisticAccessControl) {
// pessimistic: access control cookies may have been deleted.
// always request the access token for every access controlled info.json request
// returned access tokens are not stored, therefore the login window flashes for every request.
resource
.getData()
.then(() => {
if (resource.isAccessControlled()) {
// if the resource has a click through service, use that.
if (resource.clickThroughService) {
resolve(clickThrough(resource));
//} else if(resource.restrictedService) {
resolve(restricted(resource));
} else {
login(resource)
.then(() => {
getAccessToken(resource, true)
.then((token: IAccessToken) => {
resource
.getData(token)
.then(() => {
resolve(handleResourceResponse(resource));
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
}
} else {
// this info.json isn't access controlled, therefore no need to request an access token.
resolve(resource);
}
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
} else {
// optimistic: access control cookies may not have been deleted.
// store access tokens to avoid login window flashes.
// if cookies are deleted a page refresh is required.
// try loading the resource using an access token that matches the info.json domain.
// if an access token is found, request the resource using it regardless of whether it is access controlled.
getStoredAccessToken(resource, tokenStorageStrategy)
.then((storedAccessToken: IAccessToken) => {
if (storedAccessToken) {
// try using the stored access token
resource
.getData(storedAccessToken)
.then(() => {
// if the info.json loaded using the stored access token
if (resource.status === OK) {
resolve(handleResourceResponse(resource));
} else {
// otherwise, load the resource data to determine the correct access control services.
// if access controlled, do login.
Utils.authorize(
resource,
tokenStorageStrategy,
clickThrough,
restricted,
login,
getAccessToken,
storeAccessToken,
getStoredAccessToken
)
.then(() => {
resolve(handleResourceResponse(resource));
})
["catch"](error => {
// if (resource.restrictedService){
// reject(Utils.createRestrictedError());
// } else {
reject(Utils.createAuthorizationFailedError());
//}
});
}
})
["catch"](error => {
reject(Utils.createAuthorizationFailedError());
});
} else {
Utils.authorize(
resource,
tokenStorageStrategy,
clickThrough,
restricted,
login,
getAccessToken,
storeAccessToken,
getStoredAccessToken
)
.then(() => {
resolve(handleResourceResponse(resource));
})
["catch"](error => {
reject(Utils.createAuthorizationFailedError());
});
}
})
["catch"](error => {
reject(Utils.createAuthorizationFailedError());
});
}
});
}
static createError(name: StatusCode, message: string): Error {
const error: Error = new Error();
error.message = message;
error.name = String(name);
return error;
}
static createAuthorizationFailedError(): Error {
return Utils.createError(
StatusCode.AUTHORIZATION_FAILED,
"Authorization failed"
);
}
static createRestrictedError(): Error {
return Utils.createError(StatusCode.RESTRICTED, "Restricted");
}
static createInternalServerError(message: string): Error {
return Utils.createError(StatusCode.INTERNAL_SERVER_ERROR, message);
}
static authorize(
resource: IExternalResource,
tokenStorageStrategy: string,
clickThrough: (resource: IExternalResource) => Promise<any>,
restricted: (resource: IExternalResource) => Promise<any>,
login: (resource: IExternalResource) => Promise<any>,
getAccessToken: (
resource: IExternalResource,
rejectOnError: boolean
) => Promise<IAccessToken>,
storeAccessToken: (
resource: IExternalResource,
token: IAccessToken,
tokenStorageStrategy: string
) => Promise<any>,
getStoredAccessToken: (
resource: IExternalResource,
tokenStorageStrategy: string
) => Promise<IAccessToken>
): Promise<IExternalResource> {
return new Promise<IExternalResource>((resolve, reject) => {
resource.getData().then(() => {
if (resource.isAccessControlled()) {
getStoredAccessToken(resource, tokenStorageStrategy)
.then((storedAccessToken: IAccessToken) => {
if (storedAccessToken) {
// try using the stored access token
resource
.getData(storedAccessToken)
.then(() => {
if (resource.status === OK) {
resolve(resource); // happy path ended
} else {
// the stored token is no good for this resource
Utils.showAuthInteraction(
resource,
tokenStorageStrategy,
clickThrough,
restricted,
login,
getAccessToken,
storeAccessToken,
resolve,
reject
);
}
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
} else {
// There was no stored token, but the user might have a cookie that will grant a token
getAccessToken(resource, false).then(accessToken => {
if (accessToken) {
storeAccessToken(
resource,
accessToken,
tokenStorageStrategy
)
.then(() => {
// try using the fresh access token
resource
.getData(accessToken)
.then(() => {
if (resource.status === OK) {
resolve(resource);
} else {
// User has a token, but it's not good enough
Utils.showAuthInteraction(
resource,
tokenStorageStrategy,
clickThrough,
restricted,
login,
getAccessToken,
storeAccessToken,
resolve,
reject
);
}
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
})
["catch"](message => {
// not able to store access token
reject(Utils.createInternalServerError(message));
});
} else {
// The user did not have a cookie that granted a token
Utils.showAuthInteraction(
resource,
tokenStorageStrategy,
clickThrough,
restricted,
login,
getAccessToken,
storeAccessToken,
resolve,
reject
);
}
});
}
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});
} else {
// this info.json isn't access controlled, therefore there's no need to request an access token
resolve(resource);
}
});
});
}
private static showAuthInteraction(
resource: IExternalResource,
tokenStorageStrategy: any,
clickThrough: any,
restricted: any,
login: any,
getAccessToken: any,
storeAccessToken: any,
resolve: any,
reject: any
) {
if (resource.status === MOVED_TEMPORARILY && !resource.isResponseHandled) {
// if the resource was redirected to a degraded version
// and the response hasn't been handled yet.
// if the client wishes to trigger a login, set resource.isResponseHandled to true
// and call loadExternalResources() again passing the resource.
resolve(resource);
// } else if (resource.restrictedService) {
// resolve(restricted(resource));
// // TODO: move to next etc
} else if (resource.clickThroughService && !resource.isResponseHandled) {
// if the resource has a click through service, use that.
clickThrough(resource).then(() => {
getAccessToken(resource, true)
.then((accessToken: IAccessToken) => {
storeAccessToken(resource, accessToken, tokenStorageStrategy)
.then(() => {
resource
.getData(accessToken)
.then(() => {
resolve(resource);
})
["catch"](message => {
reject(Utils.createInternalServerError(message));
});