-
Notifications
You must be signed in to change notification settings - Fork 2
/
content.ts
791 lines (682 loc) · 17.3 KB
/
content.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
import { Region } from "./portal";
export type EmptyObject = Record<string, never>;
export interface ContentLibrary {
/**
* This function fetches a content
*/
get<Data extends object, XData extends object = object>(
params: GetContentParams
): Content<Data, EmptyObject, XData> | null;
/**
* This command queries content
*/
query<Data extends object, AggregationKeys extends string = never>(
params: QueryContentParams<AggregationKeys>
): QueryResponse<Data, AggregationKeys, QueryResponseMetaDataScore>;
query<Data extends object, AggregationKeys extends string = never>(
params: QueryContentParamsWithSort<AggregationKeys>
): QueryResponse<Data, AggregationKeys, QueryResponseMetaDataSort>;
/**
* This function creates a content.
*/
create<Data extends object>(params: CreateContentParams<Data>): Content<Data>;
/**
* Modifies properties of a content
*/
modify<Data extends object, PageConfig extends object = object, XData extends object = object>(
params: ModifyContentParams<Data, PageConfig, XData>
): Content<Data, PageConfig, XData>;
/**
* This function deletes a content
*/
delete(params: DeleteContentParams): boolean;
/**
* This function checks if a content exists for the current context.
*/
exists(params: ExistsParams): boolean;
/**
* This function publishes content to a branch
*/
publish(params: PublishContentParams): PublishResponse;
/**
* This function unpublishes content that had been published to the master branch
*/
unpublish(params: UnpublishContentParams): ReadonlyArray<string>;
/**
* This function fetches children of a content
*/
getChildren<Data extends object>(params: GetChildrenParams): QueryResponse<Data>;
/**
* This function returns the list of content items that are outbound dependencies of specified content.
*/
getOutboundDependencies(params: GetOutboundDependenciesParams): ReadonlyArray<string>;
/**
* Rename a content or move it to a new path
*/
move<Data extends object>(params: MoveParams): Content<Data>;
/**
* This function returns the parent site of a content
*/
getSite<Config extends object, PageConfig extends object = never>(params: GetSiteParams): Site<Config, PageConfig>;
/**
* This function returns the site configuration for this app in the parent site of a content
*/
getSiteConfig<Config extends object>(params: GetSiteConfigParams): Config;
/**
* Creates a media content
*/
createMedia<Data extends object>(params: CreateMediaParams): Content<Data>;
/**
* Adds an attachment to an existing content.
*/
addAttachment(params: AddAttachmentParams): void;
/**
* This function returns a content attachments
*/
getAttachments(key: string): Attachments | null;
/**
* This function returns a data-stream for the specified content attachment
*/
getAttachmentStream(params: AttachmentStreamParams): ByteSource | null;
/**
* Removes an attachment from an existing content
*/
removeAttachment(params: RemoveAttachmentParams): void;
/**
* Resets custom inheritance flags of a content item. For an item that was inherited from a parent content
* project/layer this action will reset specified changes made inside a specified layer.
* @since 7.6.0
*/
resetInheritance(params: ResetInheritanceParams): void;
/**
* Gets permissions on a content
*/
getPermissions(params: GetPermissionsParams): GetPermissionsResult;
/**
* Sets permissions on a content
*/
setPermissions(params: SetPermissionsParams): GetPermissionsResult;
/**
* Returns the properties and icon of the specified content type
*/
getType(name: string): ContentType | null;
/**
* Returns the list of all the content types currently registered in the system
*/
getTypes(): ReadonlyArray<ContentType>;
}
export interface ResetInheritanceParams {
/**
* Path or id to the content
*/
key: string;
/**
* A unique id of a Content Layer in which the inherited content item should be reset
*/
projectName: string;
/**
* Array of inheritance flags (case-sensitive, all upper-case).
* Supported values are:
* - CONTENT (resets any customized content data)
* - PARENT (resets item moved under a different parent)
* - NAME (resets renamed item)
* - SORT (resets custom sorting)
*/
inherit: Array<"CONTENT" | "PARENT" | "NAME" | "SORT">;
}
export type WORKFLOW_STATES = "IN_PROGRESS" | "PENDING_APPROVAL" | "REJECTED" | "READY";
export interface Content<
Data extends object = object,
PageConfig extends object = object,
XData extends object = object
> {
readonly _id: string;
readonly _name: string;
readonly _path: string;
readonly creator: string;
readonly modifier: string;
readonly createdTime: string;
readonly modifiedTime: string;
owner: string;
type: string;
displayName: string;
readonly hasChildren: boolean;
language?: string;
readonly valid: boolean;
childOrder: string;
data: Data;
x: Record<string, Record<string, XData>>;
page: Page<PageConfig>;
attachments: Attachments;
publish?: ScheduleParams;
workflow: {
state: WORKFLOW_STATES;
checks: Record<string, WORKFLOW_STATES>;
};
}
/**
* Implements the "data" of type "base:shortcut"
*/
export interface BaseShortcut {
target: string;
parameters?: Array<BaseShortcutParameter> | BaseShortcutParameter;
}
export interface BaseShortcutParameter {
name: string;
value: string;
}
/**
* Implements the "data" of type "base:media"
*/
export interface BaseMedia<Media extends object = BaseMediaConfig> {
media: Media;
caption?: string;
artist?: string | Array<string>;
copyright?: string;
tags?: string | Array<string>;
}
export interface BaseMediaConfig {
attachment: string;
}
/**
* Implements the "data" of type "media:image"
*/
export interface MediaImage extends BaseMedia<ImageConfig> {
altText?: string;
}
// Image is alias for MediaImage
export type Image = MediaImage;
export interface ImageConfig {
attachment: string;
focalPoint: {
x: number;
y: number;
};
zoomPosition: {
left: number;
top: number;
right: number;
bottom: number;
};
cropPosition: {
left: number;
top: number;
right: number;
bottom: number;
zoom: number;
};
}
export interface Page<Config> {
readonly type: string;
readonly path: string;
readonly descriptor: string;
readonly config: Config;
readonly regions: Record<string, Region>;
}
export interface Attachment {
name: string;
label?: string;
size: number;
mimeType: string;
}
export interface Attachments {
[key: string]: Attachment;
}
export interface QueryContentParams<AggregationKeys extends string = never> {
start?: number;
count: number;
query?: string;
filters?: BasicFilters | BooleanFilter;
aggregations?: Record<AggregationKeys, Aggregation>;
contentTypes?: Array<string>;
highlight?: Highlight;
}
export interface ExistsFilter {
exists: {
field: string;
};
}
export interface NotExistsFilter {
notExists: {
field: string;
};
}
export interface HasValueFilter {
hasValue: {
field: string;
values: Array<unknown>;
};
}
export interface IdsFilter {
ids: {
values: Array<string>;
};
}
export type BasicFilters = ExistsFilter | NotExistsFilter | HasValueFilter | IdsFilter;
export interface BooleanFilter {
boolean: {
must?: BasicFilters | Array<BasicFilters>;
mustNot?: BasicFilters | Array<BasicFilters>;
should?: BasicFilters | Array<BasicFilters>;
};
}
export type QueryContentParamsWithSort<AggregationKeys extends string = never> = QueryContentParams<AggregationKeys> & {
sort: string;
};
export interface QueryResponse<
Data extends object,
AggregationKeys extends string = never,
QueryMetaData extends QueryResponseMetaDataSort | QueryResponseMetaDataScore | {} = {}
> {
readonly count: number;
readonly hits: ReadonlyArray<Content<Data, EmptyObject> & QueryMetaData>;
readonly total: number;
readonly aggregations: AggregationsResponse<AggregationKeys>;
readonly highlight: HighlightResponse;
}
export interface QueryResponseMetaDataSort {
readonly _score: null;
readonly _sort: Array<string>;
}
export interface QueryResponseMetaDataScore {
readonly _score: number;
}
export type Aggregation =
| TermsAggregation
| StatsAggregation
| RangeAggregation
| GeoDistanceAggregation
| DateRangeAggregation
| DateHistogramAggregation
| MinAggregation
| MaxAggregation
| ValueCountAggregation;
export interface TermsAggregation {
terms: {
field: string;
order: string;
size: number;
minDocCount?: number;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
export interface StatsAggregation {
stats: {
field: string;
order: string;
size: number;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
export interface RangeAggregation {
range: {
field: string;
ranges?: Array<{
from?: number;
to?: number;
}>;
range?: {
from: number;
to: number;
};
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
export interface GeoDistanceAggregation {
geoDistance: {
field: string;
ranges?: Array<{
from?: number;
to?: number;
}>;
range?: {
from: number;
to: number;
};
unit: string;
origin: {
lat: string;
lon: string;
};
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
export interface DateRangeAggregation {
dateRange: {
field: string;
format: string;
ranges: Array<{
from?: string;
to?: string;
}>;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
export interface DateHistogramAggregation {
dateHistogram: {
field: string;
interval: string;
minDocCount: number;
format: string;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
/**
* @since 7.7.0
*/
export interface MinAggregation {
min: {
field: string;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
/**
* @since 7.7.0
*/
export interface MaxAggregation {
max: {
field: string;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
/**
* @since 7.7.0
*/
export interface ValueCountAggregation {
count: {
field: string;
};
aggregations?: {
[subaggregation: string]: Aggregation;
};
}
export interface AggregationsResponseBucket {
readonly docCount: number;
readonly key: string;
readonly from?: number | string;
readonly to?: number | string;
readonly [key2: string]: any; // sub aggregations
}
export interface AggregationsResponseEntry {
readonly buckets: Array<AggregationsResponseBucket>;
}
export type AggregationsResponse<AggregationKeys extends string> = {
[K in AggregationKeys]: AggregationsResponseEntry;
};
export interface Highlight {
encoder?: "default" | "html";
fragmenter?: "simple" | "span";
fragmentSize?: number;
numberOfFragments?: number;
noMatchSize?: number;
order?: "score" | "none";
preTag?: string;
postTag?: string;
requireFieldMatch?: boolean;
tagsSchema?: string;
properties: Record<string, Highlight>;
}
export interface HighlightResponse {
readonly [uuid: string]:
| {
[name: string]: ReadonlyArray<string>;
}
| undefined;
}
export interface GetContentParams {
key: string;
versionId?: string;
}
export interface DeleteContentParams {
key: string;
}
export interface ExistsParams {
key: string;
}
export interface CreateContentParams<Data> {
/**
* Name of content
*
* The parameter name is optional, but if it is not set then displayName must be specified.
* When name is not set, the system will auto-generate a name based on the displayName,
* by lower-casing and replacing certain characters. If there is already a content with the
* auto-generated name, a suffix will be added to the name in order to make it unique.
*/
name?: string;
/**
* Path to place content under
*/
parentPath: string;
/**
* Display name. Default is same as name
*/
displayName?: string;
/**
* The content has to be valid, according to the content type, to be created.
* If requireValid=true and the content is not strictly valid, an error will be thrown
*/
requireValid?: boolean;
/**
* If refresh is true, the created content will to be searchable through queries immediately,
* else within 1 second. Since there is a performance penalty doing this refresh,
* refresh should be set to false for bulk operations
*/
refresh?: boolean;
/**
* Content type to use
*/
contentType: string;
/**
* The language tag representing the content’s locale
*/
language?: string;
/**
* Default ordering of children when doing getChildren if no order is given in query
*/
childOrder?: string;
/**
* Actual content data
*/
data: Data;
/**
* eXtra data to use
*/
x?: Record<string, any>;
}
export interface ModifyContentParams<
Data extends object,
PageConfig extends object = object,
XData extends object = object
> {
/**
* Path or id to the content
*/
key: string;
/**
* Editor callback function
*/
editor: (c: Content<Data, PageConfig, XData>) => Content<Data, PageConfig, XData>;
/**
* The content has to be valid, according to the content type, to be updated.
* If requireValid=true and the content is not strictly valid, an error will be thrown
*/
requireValid?: boolean;
}
export interface PublishContentParams {
keys: Array<string>;
sourceBranch: string;
targetBranch: string;
schedule?: ScheduleParams;
excludeChildrenIds?: Array<string>;
includeDependencies?: boolean;
}
export interface ScheduleParams {
from?: string;
to?: string;
first?: string;
}
export interface PublishResponse {
readonly pushedContents: ReadonlyArray<string>;
readonly deletedContents: ReadonlyArray<string>;
readonly failedContents: ReadonlyArray<string>;
}
export interface UnpublishContentParams {
readonly keys: ReadonlyArray<string>;
}
export interface GetChildrenParams {
key: string;
count: number;
start?: number;
sort?: string;
}
export interface GetOutboundDependenciesParams {
/**
* Path or id to the content
*/
key: string;
}
export interface MoveParams {
source: string;
target: string;
}
export interface GetSiteParams {
key: string;
}
export interface Site<Config extends object, PageConfig extends object = never, XData extends object = object> {
readonly _id: string;
readonly _name: string;
readonly _path: string;
type: string;
readonly hasChildren: boolean;
readonly valid: boolean;
data: {
siteConfig: SiteConfig<Config> | Array<SiteConfig<Config>>;
};
x: Record<string, Record<string, XData>>;
page: Page<PageConfig>;
attachments: Attachments;
publish: ScheduleParams;
}
export interface SiteConfig<Config> {
applicationKey: string;
config: Config;
}
export interface GetSiteConfigParams {
key: string;
applicationKey: string;
}
export interface AttachmentStreamParams {
key: string;
name: string;
}
export interface RemoveAttachmentParams {
key: string;
name: string | Array<string>;
}
// com.google.common.io.ByteSource
export interface ByteSource {
isEmpty(): boolean;
size(): number;
}
export interface CreateMediaParams {
name: string;
parentPath: string;
mimeType?: string;
focalX?: number;
focalY?: number;
data: ByteSource;
}
export interface AddAttachmentParams {
key: string;
name: string;
mimeType: string;
label?: string;
data?: ByteSource;
}
export interface GetPermissionsParams {
key: string;
}
export interface GetPermissionsResult {
readonly inheritsPermissions: boolean;
readonly permissions: ReadonlyArray<PermissionsParams>;
}
/**
* From enum "com.enonic.xp.security.acl.Permission"
*/
export type Permission = "READ" | "CREATE" | "MODIFY" | "DELETE" | "PUBLISH" | "READ_PERMISSIONS" | "WRITE_PERMISSIONS";
export interface PermissionsParams {
principal: string;
allow: Array<Permission>;
deny: Array<Permission>;
}
export interface SetPermissionsParams {
key: string;
inheritPermissions: boolean;
overwriteChildPermissions: boolean;
permissions: Array<PermissionsParams>;
}
export interface IconType {
readonly data?: ByteSource;
readonly mimeType?: string;
readonly modifiedTime?: string;
}
export interface ContentType {
readonly name: string;
readonly displayName: string;
readonly description: string;
readonly superType: string;
readonly abstract: boolean;
readonly final: boolean;
readonly allowChildContent: boolean;
readonly displayNameExpression: string;
readonly icon: ReadonlyArray<IconType>;
readonly form: ReadonlyArray<FormItem>;
}
export type InputType =
| "Time"
| "DateTime"
| "CheckBox"
| "ComboBox"
| "Long"
| "Double"
| "RadioButton"
| "TextArea"
| "ContentTypeFilter"
| "GeoPoint"
| "TextLine"
| "Tag"
| "CustomSelector"
| "AttachmentUploader"
| "ContentSelector"
| "MediaSelector"
| "ImageSelector"
| "HtmlArea";
export type FormItemType = "Input" | "ItemSet" | "Layout" | "OptionSet";
export interface FormItem<Config = unknown> {
readonly formItemType: FormItemType | string;
readonly name: string;
readonly label: string;
readonly maximize: boolean;
readonly inputType: InputType;
readonly occurrences: {
readonly maximum: 1;
readonly minimum: 1;
};
readonly config: Config;
}