-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileMetadata.ts
562 lines (513 loc) · 17.8 KB
/
FileMetadata.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
import {Acl} from "./Acl";
import {nbLogger} from "./Head";
export interface FileMetadataJson {
filename: string;
contentType: string;
ACL: Acl;
length: number;
publicUrl: string;
createdAt: string;
updatedAt: string;
lastSyncTime: string;
metaId: string;
metaETag: string;
fileETag: string;
options: object;
cacheDisabled: boolean;
fileSyncState: number;
}
/**
* @class FileMetadata
* @classdesc ファイルメタデータ クラス
* @description FileMetadata インスタンスを生成する
* @example
* var meta = new Nebula.FileMetadata();
*/
export class FileMetadata {
static SYNC_STATE_UNDEFINED = -1;
static SYNC_STATE_SYNCED = 0;
static SYNC_STATE_DIRTY = 1;
static SYNC_STATE_SYNCING = 3;
static SYNC_STATE_CONFLICTED = 5;
_createdAt: string;
_updatedAt: string;
_acl: Acl;
_contentType: string;
_publicUrl: string;
_fileName: string;
_fileSize: number;
_syncState: number;
_lastSyncTime: string;
_metaId: string;
_metaETag: string;
_fileETag: string;
_options: object;
_cacheDisabled: boolean;
/** @private */
constructor() {
this._createdAt = null;
this._updatedAt = null;
this._acl = null;
this._contentType = null;
this._publicUrl = null;
this._fileName = null;
this._fileSize = -1;
this._syncState = FileMetadata.SYNC_STATE_UNDEFINED;
this._lastSyncTime = null;
this._metaId = null;
this._metaETag = null;
this._fileETag = null;
this._options = null;
this._cacheDisabled = false;
}
/**
* @memberOf FileMetadata
* @description
* ファイル名を取得する.
* <br/><br/>ファイル名がセットされていない場合は null を返す
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var fileName = metadata.getFileName();
* ....
* @return
* {String} ファイル名を返す。ファイル名がセットされていない場合は、null を返す。
*/
getFileName(): string {
return this._fileName;
}
/**
* @memberOf FileMetadata
* @description
* ファイル名をセットする.
* <br/><br/>すでにファイル名がセットされている場合は上書きされる。
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* metadata.setFileName("NewFileName.txt");
* ....
* @param {String} fileName ファイル名
* @return {FileMetadata} this
*/
setFileName(fileName: string): FileMetadata {
nbLogger("FileMetadata.setFileName(), " + this._fileName + " ---> " + fileName);
this._fileName = fileName;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルに設定されているACLを取得する.
* <br/><br/>ACLがセットされていない場合は null を返す
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var acl = metadata.getAcl();
* ....
* @return
* {Acl} ACLを返す。ACLがセットされていない場合は、null を返す。
*/
getAcl(): Acl {
return this._acl;
}
/**
* @memberOf FileMetadata
* @description
* ファイルにACLをセットする.
* <br/><br/>すでにACLがセットされている場合は上書きされる
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var newAcl = new Nebula.Acl();
* ....
* metadata.setAcl(newAcl);
* ....
* @param {Acl} acl セットするACL
* @return {FileMetadata} this
*/
setAcl(acl: Acl): FileMetadata {
if (acl != null && !(acl instanceof Acl)) {
throw new Error("FileMetadata.setAcl: Not Acl instance!");
}
//nbLogger("FileMetadata.setAcl() : " + acl instanceof Acl ? acl._toString() : "null");
this._acl = acl;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルに設定されているコンテンツタイプを取得する.
* <br/><br/>コンテンツタイプがセットされていない場合は null を返す。
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var contentType = metadata.getContentType();
* ....
* @return
* {String} ファイルにセットされているコンテンツタイプを返す。セットされていない場合は、null を返す。
*/
getContentType(): string {
return this._contentType;
}
/**
* @memberOf FileMetadata
* @description
* コンテンツタイプをセットする.
* <br/><br/>すでにコンテンツタイプがセットされている場合は上書きされる。
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* metadata.setContentType("image/jpeg");
* ....
* @param {Acl} contentType セットするコンテンツタイプ
* @return {FileMetadata} this
*/
setContentType(contentType: string): FileMetadata {
nbLogger("FileMetadata.setContentType(), " + this._contentType + " -> " + contentType);
this._contentType = contentType;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルの作成日時を取得する.
* <br/><br/>作成日時は、ISO 8601日付形式の文字列として返す。(例:2014-03-12T09:12:53.000Z)
* <br/>作成日時がセットされていない場合は null を返す。
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var createdAt = metadata.getCreatedAt();
* ....
* @return
* {String} ファイルの作成日時を返す。セットされていない場合は、null を返す。
*/
getCreatedAt(): string {
return this._createdAt;
}
/**
* @memberOf FileMetadata
* @description ファイルの作成日時をセットする
* @private
*/
_setCreatedAt(createdAt: string): FileMetadata {
this._createdAt = createdAt;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルの更新日時を取得する.
* <br/><br/>更新日時は、ISO 8601日付形式の文字列として返す。(例:2014-03-12T09:12:53.000Z)
* <br/>更新日時がセットされていない場合は null を返す。
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var updatedAt = metadata.getUpdatedAt();
* ....
* @return
* {String} ファイルの更新日時を返す。セットされていない場合は、null を返す。
*/
getUpdatedAt(): string {
return this._updatedAt;
}
/**
* @memberOf FileMetadata
* @description ファイルの更新日時をセットする
* @private
*/
_setUpdatedAt(updatedAt: string): FileMetadata {
this._updatedAt = updatedAt;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルのサイズを取得する.
* <br/><br/>ファイルサイズがセットされていない場合は -1 を返す
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var size = metadata.getSize();
* ....
* @return
* {Int} ファイルサイズを返す。セットされていない場合は、-1 を返す。
*/
getSize(): number {
return this._fileSize;
}
/**
* @memberOf FileMetadata
* @description ファイルサイズをセットする
* @private
*/
_setSize(size: number): FileMetadata {
this._fileSize = size;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルに設定されている公開URLを取得する.
* <br/><br/>公開URLがセットされていない場合は null を返す。
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var url = metadata.getPublicUrl();
* ....
* @return
* {String} 公開URLを返す。セットされていない場合は、null を返す。
*/
getPublicUrl(): string {
return this._publicUrl;
}
/**
* @memberOf FileMetadata
* @description 公開URLをセットする
* @private
*/
_setPublicUrl(url: string): FileMetadata {
this._publicUrl = url;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルの同期状態を取得する
* <br/><strong>現在、本APIは利用できません.</strong>
* <br/><br/>同期状態がセットされていない場合は Nebula.FileMetadata.SYNC_STATE_UNDEFINED を返す
* <br/><br/>本APIはオフラインのみで利用可能
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var syncState = metadata.getFileSyncState();
* ....
* @return
* {Integer} 以下のいずれかの同期状態を返す
* <ul>
* <li>Nebula.FileMetadata.SYNC_STATE_SYNCED : 同期済み
* <li>Nebula.FileMetadata.SYNC_STATE_DIRTY : 追加/更新/削除
* <li>Nebula.FileMetadata.SYNC_STATE_SYNCING : 同期中
* <li>Nebula.FileMetadata.SYNC_STATE_CONFLICTED : 衝突発生中
* <li>Nebula.FileMetadata.SYNC_STATE_UNDEFINED : 未設定
* </ul>
* @private
*/
getFileSyncState(): number {
return this._syncState;
}
/**
* @memberOf FileMetadata
* @description ファイルの同期状態をセットする
* @private
*/
_setFileSyncState(syncState: number): FileMetadata {
this._syncState = syncState;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルの最終同期日時を取得する
* <br/><strong>現在、本APIは利用できません.</strong>
* <br/><br/>最終同期日時がセットされていない場合は null を返す
* <br/>同期が完了していないファイルは、同期されるまで null が設定されている
* <br/><br/>本APIはオフラインのみで利用可能
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var lastSyncTime = metadata.getLastSyncTime();
* ....
* @return
* {String} 最終同期日時を返す。セットされていない場合は、null を返す。
* @private
*/
getLastSyncTime(): string {
return this._lastSyncTime;
}
/**
* @memberOf FileMetadata
* @description ファイルの最終同期日時をセットする
* @private
*/
_setLastSyncTime(lastSyncTime: string): FileMetadata {
this._lastSyncTime = lastSyncTime;
return this;
}
/**
* @memberOf FileMetadata
* @description
* ファイルメタデータIDを取得する.
* <br/><br/>ファイルメタデータIDがセットされていない場合は null を返す
* <br/>同期が完了していないファイルは、同期されるまで null が設定されている
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var metaId = metadata.getMetaId();
* ....
* @return
* {String} ファイルメタデータIDを返す。セットされていない場合は、null を返す。
*/
getMetaId(): string {
return this._metaId;
}
/**
* @memberOf FileMetadata
* @description ファイルメタIDをセットする
* @private
*/
_setMetaId(metaId: string): FileMetadata {
this._metaId = metaId;
return this;
}
/**
* @memberOf FileMetadata
* @description
* metaETag(ファイルメタデータに対するETag)を取得する.
* <br/><br/>metaEtagがセットされていない場合は null を返す
* <br/>同期が完了していないファイルは、同期されるまで null が設定されている
* <br/>metaETag値は、サーバ側で同期するときに使用され、一致しない場合は衝突と判断される
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var etag = metadata.getMetaETag();
* ....
* @return
* {String} metaEtagを返す。セットされていない場合は、null を返す。
*/
getMetaETag(): string {
return this._metaETag;
}
/**
* @memberOf FileMetadata
* @description metaETagをセットする
* @private
*/
_setMetaETag(metaETag: string): FileMetadata {
this._metaETag = metaETag;
return this;
}
/**
* @memberOf FileMetadata
* @description
* fileETag(ファイルに対するETag)を取得する.
* <br/><br/>fileEtagがセットされていない場合は null を返す
* <br/>同期が完了していないファイルは、同期されるまで null が設定されている
* <br/>fileETag値は、サーバ側で同期するときに使用され、一致しない場合は衝突と判断される
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* var etag = metadata.getFileETag();
* ....
* @return
* {String} fileEtagを返す。セットされていない場合は、null を返す。
*/
getFileETag(): string {
return this._fileETag;
}
/**
* @memberOf FileMetadata
* @description metaETagをセットする
* @private
*/
_setFileETag(fileETag: string): FileMetadata {
this._fileETag = fileETag;
return this;
}
/**
* @memberOf FileMetadata
* @description オプション情報(JSON)を取得する
* @returns {Object} オプション
*/
getOptions(): object {
return this._options;
}
/**
* @memberOf FileMetadata
* @description オプション情報(JSON)をセットする
* @param options オプション
* @return {FileMetadata} this
*/
setOptions(options: object): FileMetadata {
this._options = options;
return this;
}
/**
* @memberOf FileMetadata
* @description
* キャッシュ禁止かどうかを問い合わせる
* <br/><strong>現在、本APIは利用できません.</strong>
* <br/><br/>setCacheDisabled()で設定したキャッシュ禁止フラグを参照する
* <br/>キャッシュ禁止フラグが設定されていない場合は false を返す
* <br/><br/>本APIはオフラインのみで利用可能
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* if (metadata.isCacheDisabled()) {
* // キャッシュ禁止の場合の処理
* }
* else {
* // キャッシュOKの場合の処理
* ....
* }
* ....
* @return
* {Boolean} キャッシュ禁止の場合はtrue、それ以外の場合はfalseを返す
* @private
*/
isCacheDisabled(): boolean {
return this._cacheDisabled;
}
/**
* @memberOf FileMetadata
* @description
* キャッシュ禁止フラグを設定する
* <br/><strong>現在、本APIは利用できません.</strong>
* <br/><br/>キャッシュ禁止がtrueの場合、キャッシュへのファイル保存が行われない
* <br/><br/>本APIはオフラインのみで利用可能
* @example
* fileBucket.getMetadata("MyFile.txt").then(function(metadata) {
* metadata.setCacheDisabled(true);
* ....
* @param {Boolean} cacheDisabled キャッシュ禁止フラグ
* @private
*/
setCacheDisabled(cacheDisabled: boolean): FileMetadata {
this._cacheDisabled = cacheDisabled;
return this;
}
/**
* @memberOf FileMetadata
* @description JSONからFileMetadataインスタンスにデータをセットする
* @private
*/
_setMetadata(obj: FileMetadataJson): FileMetadata {
if (obj.filename != null) {
this.setFileName(obj.filename);
}
if (obj.contentType != null) {
this.setContentType(obj.contentType);
}
if (obj.ACL != null) {
const acl = new Acl(obj.ACL);
this.setAcl(acl);
}
if (obj["length"] != null) {
this._setSize(obj["length"]);
}
if (obj.publicUrl != null) {
this._setPublicUrl(obj.publicUrl);
}
if (obj.createdAt != null) {
this._setCreatedAt(obj.createdAt);
}
if (obj.updatedAt != null) {
this._setUpdatedAt(obj.updatedAt);
}
if (obj.lastSyncTime != null) {
this._setLastSyncTime(obj.lastSyncTime);
}
if (obj.metaId != null) {
this._setMetaId(obj.metaId);
}
if (obj.metaETag != null) {
this._setMetaETag(obj.metaETag);
}
if (obj.fileETag != null) {
this._setFileETag(obj.fileETag);
}
if (obj.options != null) {
this.setOptions(obj.options);
}
if (obj.cacheDisabled != null) {
this.setCacheDisabled(obj.cacheDisabled);
}
if (obj.fileSyncState != null) {
this._setFileSyncState(obj.fileSyncState);
}
return this;
}
}