-
Notifications
You must be signed in to change notification settings - Fork 150
/
api.d.ts
759 lines (697 loc) · 17.6 KB
/
api.d.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
export type UnixtimeMS = number;
export type ChannelId = number;
export type ServiceId = number;
export type NetworkId = number;
export type ProgramId = number;
export type EventId = number;
export type RuleId = number;
export type ReserveId = number;
export type RecordedId = number;
export type RecordedHistoryId = number;
export type VideoFileId = number;
export type VideoFileType = 'ts' | 'encoded';
export type ThumbnailId = number;
export type DropLogFileId = number;
export type RecordedTagId = number;
export type EncodeId = number;
export type ChannelType = 'GR' | 'BS' | 'CS' | 'SKY';
export type ProgramGenreLv1 = number;
export type ProgramGenreLv2 = number;
export type ProgramVideoType = 'mpeg2' | 'h.264' | 'h.265';
export type ProgramVideoResolution = '240p' | '480i' | '480p' | '720p' | '1080i' | '2160p' | '4320p';
export type ProgramAudioSamplingRate = 16000 | 22050 | 24000 | 32000 | 44100 | 48000;
export type RawExtended = { [description: string]: string };
export type StreamId = number;
export type StreamType = 'LiveStream' | 'LiveHLS' | 'RecordedStream' | 'RecordedHLS';
/**
* チャンネル情報
*/
export interface ChannelItem {
id: ChannelId;
serviceId: ServiceId;
networkId: NetworkId;
name: string;
halfWidthName: string;
remoteControlKeyId?: number;
hasLogoData: boolean;
channelType: ChannelType;
channel: string;
type?: number;
}
/**
* 手動予約編集オプション
*/
export interface EditManualReserveOption {
allowEndLack: boolean; // 末尾切れを許すか
tags?: RecordedTagId[];
saveOption?: ReserveSaveOption;
encodeOption?: ReserveEncodedOption;
}
/**
* 手動予約オプション
*/
export interface ManualReserveOption extends EditManualReserveOption {
programId?: ProgramId; // program ID undefined の場合は時刻指定予約
timeSpecifiedOption?: {
name: string;
channelId: ChannelId;
startAt: UnixtimeMS;
endAt: UnixtimeMS;
};
}
/**
* 予約情報取得タイプ
*/
export type GetReserveType = 'all' | 'normal' | 'conflict' | 'skip' | 'overlap';
/**
* 予約情報取得オプション
*/
export interface GetReserveOption {
type?: GetReserveType;
isHalfWidth: boolean;
ruleId?: RuleId;
offset?: number;
limit?: number;
}
/**
* 予約情報
*/
export interface Reserves {
reserves: ReserveItem[];
total: number;
}
/**
* 予約番組情報
*/
export interface ReserveItem {
/**
* 予約情報
*/
id: ReserveId;
ruleId?: RuleId;
isSkip: boolean;
isConflict: boolean;
isOverlap: boolean;
allowEndLack: boolean;
isTimeSpecified: boolean;
tags?: RecordedTagId[];
/**
* 保存オプション
*/
parentDirectoryName?: string;
directory?: string;
recordedFormat?: string;
/**
* エンコード情報
*/
encodeMode1?: string;
encodeParentDirectoryName1?: string;
encodeDirectory1?: string;
encodeMode2?: string;
encodeParentDirectoryName2?: string;
encodeDirectory2?: string;
encodeMode3?: string;
encodeParentDirectoryName3?: string;
encodeDirectory3?: string;
isDeleteOriginalAfterEncode: boolean;
/**
* 番組情報
*/
programId?: ProgramId;
channelId: ChannelId;
startAt: UnixtimeMS;
endAt: UnixtimeMS;
name: string;
description?: string;
extended?: string;
rawExtended?: RawExtended;
genre1?: ProgramGenreLv1;
subGenre1?: ProgramGenreLv2;
genre2?: ProgramGenreLv1;
subGenre2?: ProgramGenreLv2;
genre3?: ProgramGenreLv1;
subGenre3?: ProgramGenreLv2;
videoType?: ProgramVideoType;
videoResolution?: ProgramVideoResolution;
videoStreamContent?: number;
videoComponentType?: number;
audioSamplingRate?: ProgramAudioSamplingRate;
audioComponentType?: number;
}
/**
* 予約情報のリスト取得オプション
*/
export interface GetReserveListsOption {
startAt: UnixtimeMS;
endAt: UnixtimeMS;
}
/**
* 予約情報のリスト
* 予約, 除外, 重複, 競合の reserveId リスト
*/
export interface ReserveLists {
normal: ReserveListItem[];
conflicts: ReserveListItem[];
skips: ReserveListItem[];
overlaps: ReserveListItem[];
}
/**
* 予約リストitem
*/
export interface ReserveListItem {
reserveId: ReserveId;
programId?: ProgramId;
ruleId?: RuleId;
}
export interface ReserveCnts {
normal: number;
conflicts: number;
skips: number;
overlaps: number;
}
/**
* 放送波の状態
* true のもが有効
*/
export interface BroadcastStatus {
GR: boolean;
BS: boolean;
CS: boolean;
SKY: boolean;
}
/**
* Rule
*/
export interface Rule extends AddRuleOption {
id: RuleId;
reservesCnt?: number;
}
export interface RuleKeywordItem {
id: RuleId;
keyword: string;
}
/**
* ルールのキーワード検索結果
*/
export interface RuleKeywordInfo {
items: RuleKeywordItem[];
}
/**
* Rule 追加オプション
*/
export interface AddRuleOption {
isTimeSpecification: boolean;
searchOption: RuleSearchOption;
reserveOption: RuleReserveOption;
saveOption?: ReserveSaveOption;
encodeOption?: ReserveEncodedOption;
}
/**
* ジャンル
*/
export interface Genre {
genre: ProgramGenreLv1;
subGenre?: ProgramGenreLv2;
}
/**
* 時刻指定
* program id 予約の場合は動画の長さ
* 時刻指定予約の場合は時刻範囲 (0 ~ 60 * 24)
*/
export interface SearchTime {
// program id 予約の場合は 0 ~ 23 時の開始時刻を指定する
// 時刻予約の場合は 0 時を 0 とした 0 ~ (60 * 50 * 24) - 1 秒までの開始時刻を指定する
start?: number;
// program id 予約の場合は 1 ~ 23 時間の長さを指定する
// 時刻予約の場合は秒で時間の長さを指定する 1 ~ 60 * 50 * 24 秒
range?: number;
// 曜日指定 0x01, 0x02, 0x04, 0x08, 0x10, 0x20 ,0x40 が日〜土に対応するので and 演算で曜日を指定する
week: number;
}
/**
* 検索期間指定
*/
export interface SearchPeriod {
startAt: UnixtimeMS;
endAt: UnixtimeMS;
}
/**
* Rule 検索オプション
*/
export interface RuleSearchOption {
keyword?: string; // 検索キーワード
ignoreKeyword?: string; // 除外検索キーワード
keyCS?: boolean; // 大文字小文字区別有効化 (検索キーワード)
keyRegExp?: boolean; // 正規表現 (検索キーワード)
name?: boolean; // 番組名 (検索キーワード)
description?: boolean; // 概要 (検索キーワード)
extended?: boolean; // 詳細 (検索キーワード)
ignoreKeyCS?: boolean; // 大文字小文字区別有効化 (除外検索キーワード)
ignoreKeyRegExp?: boolean; // 正規表現 (除外検索キーワード)
ignoreName?: boolean; // 番組名 (除外検索キーワード)
ignoreDescription?: boolean; // 概要 (除外検索キーワード)
ignoreExtended?: boolean; // 詳細 (除外検索キーワード)
GR?: boolean; // GR
BS?: boolean; // BS
CS?: boolean; // CS
SKY?: boolean; // SKY
channelIds?: ChannelId[]; // channels ids
genres?: Genre[];
times?: SearchTime[]; // 開始時間からの有効時間
isFree?: boolean; // 無料放送か
durationMin?: number; // 番組最小時間
durationMax?: number; // 番組最大時間
searchPeriods?: SearchPeriod[]; // 検索対象期間
}
/**
* ルール予約オプション
*/
export interface RuleReserveOption {
enable: boolean; // ルールが有効か
allowEndLack: boolean; // 末尾切れを許可するか
avoidDuplicate: boolean; // 録画済みの重複番組を排除するか
periodToAvoidDuplicate?: number; // 重複を避ける期間
tags?: RecordedTagId[]; // 録画完了後に付与する tag 設定
}
/**
* 保存オプション
*/
export interface ReserveSaveOption {
parentDirectoryName?: string; // 親保存ディレクトリ
directory?: string; // 保存ディレクトリ
recordedFormat?: string; // ファイル名フォーマット
}
/**
* エンコードオプション
*/
export interface ReserveEncodedOption {
mode1?: string; // エンコードモード
encodeParentDirectoryName1?: string; // 親保存ディレクトリ
directory1?: string; // 保存先ディレクトリ
mode2?: string;
encodeParentDirectoryName2?: string;
directory2?: string;
mode3?: string;
encodeParentDirectoryName3?: string;
directory3?: string;
isDeleteOriginalAfterEncode: boolean;
}
/**
* ルール情報
*/
export interface Rules {
rules: Rule[];
total: number;
}
/**
* ルール情報取得オプション
*/
export interface GetRuleOption {
offset?: number;
limit?: number;
type?: GetReserveType;
keyword?: string;
}
/**
* 録画一覧情報
*/
export interface Records {
records: RecordedItem[];
total: number;
}
/**
* Recorded
*/
export interface RecordedItem {
id: RecordedId;
ruleId?: RuleId;
programId?: ProgramId;
channelId: ChannelId;
startAt: UnixtimeMS;
endAt: UnixtimeMS;
name: string;
description?: string;
extended?: string;
rawExtended?: RawExtended;
genre1?: ProgramGenreLv1;
subGenre1?: ProgramGenreLv2;
genre2?: ProgramGenreLv1;
subGenre2?: ProgramGenreLv2;
genre3?: ProgramGenreLv1;
subGenre3?: ProgramGenreLv2;
videoType?: ProgramVideoType;
videoResolution?: ProgramVideoResolution;
videoStreamContent?: number;
videoComponentType?: number;
audioSamplingRate?: ProgramAudioSamplingRate;
audioComponentType?: number;
isRecording: boolean;
thumbnails?: ThumbnailId[];
videoFiles?: VideoFile[];
dropLogFile?: DropLogFile;
tags?: RecordedTag[];
isEncoding: boolean;
isProtected: boolean;
}
/**
* VideoFile
*/
export interface VideoFile {
id: VideoFileId;
name: string;
filename: string;
type: VideoFileType;
size: number;
}
export interface DropLogFile {
id: DropLogFileId;
errorCnt: number;
dropCnt: number;
scramblingCnt: number;
}
/**
* Recorded tag
*/
export interface RecordedTag {
id: RecordedTagId;
name: string;
color: string;
}
export interface RecordedTags {
tags: RecordedTag[];
total: number;
}
/**
* recorded 取得オプション
*/
export interface GetRecordedOption {
isHalfWidth: boolean;
offset?: number;
limit?: number;
isReverse?: boolean;
ruleId?: RuleId;
channelId?: ChannelId;
genre?: ProgramGenreLv1;
keyword?: string;
hasOriginalFile?: boolean;
}
/**
* recorded が持つ channelId のリスト
*/
export interface RecordedChannelListItem {
cnt: number; // 個数
channelId: ChannelId; // 放送局 id
}
/**
* recorded が持つ genre のリスト
*/
export interface RecordedGenreListItem {
cnt: number; // 個数
genre: ProgramGenreLv1; // ジャンル
}
/**
* recorded が持つ検索オプションリスト
*/
export interface RecordedSearchOptions {
channels: RecordedChannelListItem[];
genres: RecordedGenreListItem[];
}
/**
* tag 取得オプション
*/
export interface GetRecordedTagOption {
offset?: number;
limit?: number;
name?: string;
excludeTagId?: RecordedTagId[];
}
/**
* URL Scheme 情報
*/
export interface URLSchemeInfo {
ios?: string;
android?: string;
mac?: string;
win?: string;
}
export interface M2TSStreamParam {
name: string;
isUnconverted: boolean; // 無変換か
}
/**
* クライアントが受け取る設定情報
*/
export interface Config {
socketIOPort: number;
broadcast: BroadcastStatus;
recorded: string[];
encode: string[];
urlscheme: {
m2ts: URLSchemeInfo;
video: URLSchemeInfo;
download: URLSchemeInfo;
};
isEnableTSLiveStream: boolean;
isEnableTSRecordedStream: boolean;
isEnableEncodedRecordedStream: boolean;
streamConfig?: {
live?: {
ts?: {
m2ts?: M2TSStreamParam[];
m2tsll?: string[];
webm?: string[];
mp4?: string[];
hls?: string[];
};
};
recorded?: {
ts?: {
webm?: string[];
mp4?: string[];
hls?: string[];
};
encoded?: {
webm?: string[];
mp4?: string[];
hls?: string[];
};
};
};
kodiHosts?: string[];
}
/**
* 放送波指定の番組表情報取得オプション
*/
export interface ScheduleOption {
startAt: UnixtimeMS;
endAt: UnixtimeMS;
isHalfWidth: boolean;
needsRawExtended?: boolean;
isFree?: boolean;
GR: boolean;
BS: boolean;
CS: boolean;
SKY: boolean;
}
/**
* チャンネル指定の番組情報取得オプション
*/
export interface ChannelScheduleOption {
startAt: UnixtimeMS;
days: number; // 取得日数
isHalfWidth: boolean;
needsRawExtended?: boolean;
isFree?: boolean;
channelId: ChannelId;
}
export interface BroadcastingScheduleOption {
time?: UnixtimeMS; // 追加時間 (ms)
isHalfWidth: boolean;
}
/**
* 番組表の放送局データ
*/
export interface ScheduleChannleItem {
id: ChannelId;
serviceId: ServiceId;
networkId: NetworkId;
name: string;
remoteControlKeyId?: number;
hasLogoData: boolean;
channelType: ChannelType;
type?: number;
}
/**
* 番組表の番組データ
*/
export interface ScheduleProgramItem {
id: ProgramId;
channelId: ChannelId;
startAt: UnixtimeMS;
endAt: UnixtimeMS;
isFree: boolean;
name: string;
description?: string;
extended?: string;
rawExtended?: RawExtended;
genre1?: ProgramGenreLv1;
subGenre1?: ProgramGenreLv2;
genre2?: ProgramGenreLv1;
subGenre2?: ProgramGenreLv2;
genre3?: ProgramGenreLv1;
subGenre3?: ProgramGenreLv2;
videoType?: ProgramVideoType;
videoResolution?: ProgramVideoResolution;
videoStreamContent?: number;
videoComponentType?: number;
audioSamplingRate?: ProgramAudioSamplingRate;
audioComponentType?: number;
}
/**
* 番組表データ
*/
export interface Schedule {
channel: ScheduleChannleItem;
programs: ScheduleProgramItem[];
}
/**
* 番組検索オプション
*/
export interface ScheduleSearchOption {
option: RuleSearchOption;
isHalfWidth: boolean;
limit?: number;
}
/**
* Encode
*/
/**
* エンコード情報
*/
export interface EncodeInfo {
runningItems: EncodeProgramItem[]; // エンコード中
waitItems: EncodeProgramItem[]; // エンコード待ち
}
export interface EncodeProgramItem {
id: EncodeId;
mode: string;
recorded: RecordedItem;
percent?: number;
log?: string;
}
/**
* エンコード追加オプション
*/
export interface AddEncodeProgramOption {
recordedId: RecordedId;
sourceVideoFileId: VideoFileId;
parentDir: string; // 親ディレクトリ config recorded の name
directory?: string; // 親ディレクトリ以下のディレクトリ設定
mode: string; // config encode の name
removeOriginal: boolean;
}
export interface AddManualEncodeProgramOption {
recordedId: RecordedId;
sourceVideoFileId: VideoFileId;
parentDir?: string; // isSaveSameDirectory が false の場合は必須
directory?: string;
isSaveSameDirectory?: boolean; // ソースビデオファイルと同じ場所に保存する
mode: string; // config encode の name
removeOriginal: boolean;
}
/**
* ライブストリームオプション
*/
export interface LiveStreamOption {
channelId: ChannelId;
mode: number; // config 設定
}
export interface RecordedStreanOption {
videoFileId: VideoFileId;
playPosition: number; // 再生位置 (秒)
mode: number; // config 設定
}
/**
* ライブストリーム情報
*/
export interface LiveStreamInfoItem {
streamId: StreamId;
type: StreamType;
mode: number;
isEnable: boolean;
channelId: ChannelId;
name: string;
startAt: UnixtimeMS;
endAt: UnixtimeMS;
description?: string;
extended?: string;
rawExtended?: RawExtended;
}
/**
* ビデオファイルストリーム情報
*/
export interface VideoFileStreamInfoItem extends LiveStreamInfoItem {
viodeFileId: VideoFileId;
recordedId: RecordedId;
}
/**
* アップロードするビデオ情報
*/
export interface UploadVideoFileOption {
recordedId: RecordedId; // 紐付ける recorded id
parentDirectoryName: string; // 保存先ディレクトリ名
subDirectory?: string; // 保存先サブディレクトリ
viewName: string; // UI 上での表示名
fileType: VideoFileType; // ファイルタイプ
file: File; // ファイル
}
/**
* 新規追加する録画番組情報
*/
export interface CreateNewRecordedOption {
ruleId?: RuleId;
channelId: ChannelId;
startAt: UnixtimeMS;
endAt: UnixtimeMS;
name: string;
description?: string;
extended?: string;
genre1?: ProgramGenreLv1;
subGenre1?: ProgramGenreLv2;
genre2?: ProgramGenreLv1;
subGenre2?: ProgramGenreLv2;
genre3?: ProgramGenreLv1;
subGenre3?: ProgramGenreLv2;
}
/**
* ストリーム情報
*/
export interface StreamInfo {
items: (LiveStreamInfoItem | VideoFileStreamInfoItem)[];
}
/**
* ディスク使用情報
*/
export interface DiskUsage {
available: number;
used: number;
total: number;
}
/**
* ディスク使用状況 + 名称
*/
export interface StorageItem extends DiskUsage {
name: string;
}
/**
* ディスク情報
*/
export interface StorageInfo {
items: StorageItem[];
}
/**
* バージョン情報
*/
export interface VersionInfo {
version: string;
}