-
Notifications
You must be signed in to change notification settings - Fork 31
/
Canvas.ts
394 lines (336 loc) · 10.9 KB
/
Canvas.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
import {
ExternalResourceType,
ViewingHint
} from "@iiif/vocabulary/dist-commonjs";
import {
Annotation,
AnnotationBody,
AnnotationList,
AnnotationPage,
IExternalImageResourceData,
IManifestoOptions,
Range,
Resource,
Service,
Size,
Utils
} from "./internal";
// @ts-ignore
import flatten from "lodash/flatten";
// @ts-ignore
import flattenDeep from "lodash/flattenDeep";
export class Canvas extends Resource {
public ranges: Range[];
constructor(jsonld?: any, options?: IManifestoOptions) {
super(jsonld, options);
}
// http://iiif.io/api/image/2.1/#canonical-uri-syntax
getCanonicalImageUri(w?: number): string {
let id: string | null = null;
const region: string = "full";
const rotation: number = 0;
let quality: string = "default";
let width: number | undefined = w;
let size: string;
// if an info.json has been loaded
if (
this.externalResource &&
this.externalResource.data &&
this.externalResource.data["@id"]
) {
id = this.externalResource.data["@id"];
if (!width) {
width = (<IExternalImageResourceData>this.externalResource.data).width;
}
if (this.externalResource.data["@context"]) {
if (
this.externalResource.data["@context"].indexOf("/1.0/context.json") >
-1 ||
this.externalResource.data["@context"].indexOf("/1.1/context.json") >
-1 ||
this.externalResource.data["@context"].indexOf("/1/context.json") > -1
) {
quality = "native";
}
}
} else {
// info.json hasn't been loaded yet
let images: Annotation[];
// presentation 2.0
images = this.getImages();
if (images && images.length) {
const firstImage: Annotation = images[0];
const resource: Resource = firstImage.getResource();
const services: Service[] = resource.getServices();
if (!width) {
width = resource.getWidth();
}
const service = services
? services.find(service => {
return (
Utils.isImageProfile(service.getProfile()) ||
Utils.isImageServiceType(service.getIIIFResourceType())
);
})
: null;
if (service) {
id = service.id;
quality = Utils.getImageQuality(service.getProfile());
} else if (width === resource.getWidth()) {
// if the passed width is the same as the resource width
// i.e. not looking for a thumbnail
// return the full size image.
// used for download options when loading static images.
return resource.id;
}
}
// presentation 3.0
images = this.getContent();
if (images && images.length) {
const firstImage: Annotation = images[0];
const body: AnnotationBody[] = firstImage.getBody();
const anno: AnnotationBody = body[0];
const services: Service[] = anno.getServices();
if (!width) {
width = anno.getWidth();
}
const service = services
? services.find(service => {
return Utils.isImageServiceType(service.getIIIFResourceType());
})
: null;
if (service) {
id = service.id;
quality = Utils.getImageQuality(service.getProfile());
} else if (width === anno.getWidth()) {
// if the passed width is the same as the resource width
// i.e. not looking for a thumbnail
// return the full size image.
// used for download options when loading static images.
return anno.id;
}
}
// todo: should this be moved to getThumbUri?
if (!id) {
const thumbnail: any = this.getProperty("thumbnail");
if (thumbnail) {
if (typeof thumbnail === "string") {
return thumbnail;
} else {
if (thumbnail["@id"]) {
return thumbnail["@id"];
} else if (thumbnail.length) {
return thumbnail[0].id;
}
}
}
}
}
size = width + ",";
// trim off trailing '/'
if (id && id.endsWith("/")) {
id = id.substr(0, id.length - 1);
}
const uri: string = [id, region, size, rotation, quality + ".jpg"].join(
"/"
);
return uri;
}
getMaxDimensions(): Size | null {
let maxDimensions: Size | null = null;
let profile: any;
if (
this.externalResource &&
this.externalResource.data &&
this.externalResource.data.profile
) {
profile = this.externalResource.data.profile;
if (Array.isArray(profile)) {
profile = profile.filter(p => p["maxWidth"] ?? p["maxwidth"])[0];
if (profile) {
maxDimensions = new Size(
profile.maxWidth,
profile.maxHeight ? profile.maxHeight : profile.maxWidth
);
}
}
}
return maxDimensions;
}
// Presentation API 3.0
getContent(): Annotation[] {
const content: Annotation[] = [];
const items = this.__jsonld.items || this.__jsonld.content;
if (!items) return content;
// should be contained in an AnnotationPage
let annotationPage: AnnotationPage | null = null;
if (items.length) {
annotationPage = new AnnotationPage(items[0], this.options);
}
if (!annotationPage) {
return content;
}
const annotations: Annotation[] = annotationPage.getItems();
for (let i = 0; i < annotations.length; i++) {
const a = annotations[i];
const annotation = new Annotation(a, this.options);
content.push(annotation);
}
return content;
}
getDuration(): number | null {
return this.getProperty("duration");
}
// presentation 2.0
getImages(): Annotation[] {
const images: Annotation[] = [];
if (!this.__jsonld.images) return images;
for (let i = 0; i < this.__jsonld.images.length; i++) {
const a = this.__jsonld.images[i];
const annotation = new Annotation(a, this.options);
images.push(annotation);
}
return images;
}
getIndex(): number {
return this.getProperty("index");
}
getOtherContent(): Promise<AnnotationList[]> {
const otherContent = Array.isArray(this.getProperty("otherContent"))
? this.getProperty("otherContent")
: [this.getProperty("otherContent")];
const canonicalComparison = (typeA, typeB): boolean => {
if (typeof typeA !== "string" || typeof typeB !== "string") {
return false;
}
return typeA.toLowerCase() === typeA.toLowerCase();
};
const otherPromises: Promise<AnnotationList>[] = otherContent
.filter(
otherContent =>
otherContent &&
canonicalComparison(otherContent["@type"], "sc:AnnotationList")
)
.map(
(annotationList, i) =>
new AnnotationList(
annotationList["label"] || `Annotation list ${i}`,
annotationList,
this.options
)
)
.map(annotationList => annotationList.load());
return Promise.all(otherPromises);
}
// Prefer thumbnail service to image service if supplied and if
// the thumbnail service can provide a satisfactory size +/- x pixels.
// this is used to get thumb URIs *before* the info.json has been requested
// and populate thumbnails in a viewer.
// the publisher may also provide pre-computed fixed-size thumbs for better performance.
//getThumbUri(width: number): string {
//
// var uri;
// var images: IAnnotation[] = this.getImages();
//
// if (images && images.length) {
// var firstImage = images[0];
// var resource: IResource = firstImage.getResource();
// var services: IService[] = resource.getServices();
//
// for (let i = 0; i < services.length; i++) {
// var service: IService = services[i];
// var id = service.id;
//
// if (!_endsWith(id, '/')) {
// id += '/';
// }
//
// uri = id + 'full/' + width + ',/0/' + Utils.getImageQuality(service.getProfile()) + '.jpg';
// }
// }
//
// return uri;
//}
//getType(): CanvasType {
// return new CanvasType(this.getProperty('@type').toLowerCase());
//}
getWidth(): number {
return this.getProperty("width");
}
getHeight(): number {
return this.getProperty("height");
}
getViewingHint(): ViewingHint | null {
return this.getProperty("viewingHint");
}
get imageResources() {
const resources = flattenDeep([
this.getImages().map(i => i.getResource()),
this.getContent().map(i => i.getBody())
]);
return flatten(
resources.map(resource => {
switch (resource.getProperty("type").toLowerCase()) {
case ExternalResourceType.CHOICE:
case ExternalResourceType.OA_CHOICE:
return new Canvas(
{
images: flatten([
resource.getProperty("default"),
resource.getProperty("item")
]).map(r => ({ resource: r }))
},
this.options
)
.getImages()
.map(i => i.getResource());
default:
return resource;
}
})
);
}
get resourceAnnotations() {
return flattenDeep([this.getImages(), this.getContent()]);
}
/**
* Returns a given resource Annotation, based on a contained resource or body
* id
*/
resourceAnnotation(id) {
return this.resourceAnnotations.find(
anno =>
anno.getResource().id === id ||
flatten(new Array(anno.getBody())).some(body => body.id === id)
);
}
/**
* Returns the fragment placement values if a resourceAnnotation is placed on
* a canvas somewhere besides the full extent
*/
onFragment(id) {
const resourceAnnotation = this.resourceAnnotation(id);
if (!resourceAnnotation) return undefined;
// IIIF v2
const on = resourceAnnotation.getProperty("on");
// IIIF v3
const target = resourceAnnotation.getProperty("target");
if (!on || !target) {
return undefined;
}
const fragmentMatch = (on || target).match(/xywh=(.*)$/);
if (!fragmentMatch) return undefined;
return fragmentMatch[1].split(",").map(str => parseInt(str, 10));
}
get iiifImageResources() {
return this.imageResources.filter(
r => r && r.getServices()[0] && r.getServices()[0].id
);
}
get imageServiceIds() {
return this.iiifImageResources.map(r => r.getServices()[0].id);
}
get aspectRatio() {
return this.getWidth() / this.getHeight();
}
}