forked from stashapp/stash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.graphql
586 lines (522 loc) · 15.7 KB
/
config.graphql
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
input SetupInput {
"Empty to indicate $HOME/.stash/config.yml default"
configLocation: String!
stashes: [StashConfigInput!]!
"Empty to indicate default"
databaseFile: String!
"Empty to indicate default"
generatedLocation: String!
"Empty to indicate default"
cacheLocation: String!
storeBlobsInDatabase: Boolean!
"Empty to indicate default - only applicable if storeBlobsInDatabase is false"
blobsLocation: String!
}
enum StreamingResolutionEnum {
"240p"
LOW
"480p"
STANDARD
"720p"
STANDARD_HD
"1080p"
FULL_HD
"4k"
FOUR_K
"Original"
ORIGINAL
}
enum PreviewPreset {
"X264_ULTRAFAST"
ultrafast
"X264_VERYFAST"
veryfast
"X264_FAST"
fast
"X264_MEDIUM"
medium
"X264_SLOW"
slow
"X264_SLOWER"
slower
"X264_VERYSLOW"
veryslow
}
enum HashAlgorithm {
MD5
"oshash"
OSHASH
}
enum BlobsStorageType {
# blobs are stored in the database
"Database"
DATABASE
# blobs are stored in the filesystem under the configured blobs directory
"Filesystem"
FILESYSTEM
}
input ConfigGeneralInput {
"Array of file paths to content"
stashes: [StashConfigInput!]
"Path to the SQLite database"
databasePath: String
"Path to backup directory"
backupDirectoryPath: String
"Path to generated files"
generatedPath: String
"Path to import/export files"
metadataPath: String
"Path to scrapers"
scrapersPath: String
"Path to plugins"
pluginsPath: String
"Path to cache"
cachePath: String
"Path to blobs - required for filesystem blob storage"
blobsPath: String
"Where to store blobs"
blobsStorage: BlobsStorageType
"Path to the ffmpeg binary. If empty, stash will attempt to find it in the path or config directory"
ffmpegPath: String
"Path to the ffprobe binary. If empty, stash will attempt to find it in the path or config directory"
ffprobePath: String
"Whether to calculate MD5 checksums for scene video files"
calculateMD5: Boolean
"Hash algorithm to use for generated file naming"
videoFileNamingAlgorithm: HashAlgorithm
"Number of parallel tasks to start during scan/generate"
parallelTasks: Int
"Include audio stream in previews"
previewAudio: Boolean
"Number of segments in a preview file"
previewSegments: Int
"Preview segment duration, in seconds"
previewSegmentDuration: Float
"Duration of start of video to exclude when generating previews"
previewExcludeStart: String
"Duration of end of video to exclude when generating previews"
previewExcludeEnd: String
"Preset when generating preview"
previewPreset: PreviewPreset
"Transcode Hardware Acceleration"
transcodeHardwareAcceleration: Boolean
"Max generated transcode size"
maxTranscodeSize: StreamingResolutionEnum
"Max streaming transcode size"
maxStreamingTranscodeSize: StreamingResolutionEnum
"""
ffmpeg transcode input args - injected before input file
These are applied to generated transcodes (previews and transcodes)
"""
transcodeInputArgs: [String!]
"""
ffmpeg transcode output args - injected before output file
These are applied to generated transcodes (previews and transcodes)
"""
transcodeOutputArgs: [String!]
"""
ffmpeg stream input args - injected before input file
These are applied when live transcoding
"""
liveTranscodeInputArgs: [String!]
"""
ffmpeg stream output args - injected before output file
These are applied when live transcoding
"""
liveTranscodeOutputArgs: [String!]
"whether to include range in generated funscript heatmaps"
drawFunscriptHeatmapRange: Boolean
"Write image thumbnails to disk when generating on the fly"
writeImageThumbnails: Boolean
"Create Image Clips from Video extensions when Videos are disabled in Library"
createImageClipsFromVideos: Boolean
"Username"
username: String
"Password"
password: String
"Maximum session cookie age"
maxSessionAge: Int
"Name of the log file"
logFile: String
"Whether to also output to stderr"
logOut: Boolean
"Minimum log level"
logLevel: String
"Whether to log http access"
logAccess: Boolean
"True if galleries should be created from folders with images"
createGalleriesFromFolders: Boolean
"Regex used to identify images as gallery covers"
galleryCoverRegex: String
"Array of video file extensions"
videoExtensions: [String!]
"Array of image file extensions"
imageExtensions: [String!]
"Array of gallery zip file extensions"
galleryExtensions: [String!]
"Array of file regexp to exclude from Video Scans"
excludes: [String!]
"Array of file regexp to exclude from Image Scans"
imageExcludes: [String!]
"Custom Performer Image Location"
customPerformerImageLocation: String
"Stash-box instances used for tagging"
stashBoxes: [StashBoxInput!]
"Python path - resolved using path if unset"
pythonPath: String
"Source of scraper packages"
scraperPackageSources: [PackageSourceInput!]
"Source of plugin packages"
pluginPackageSources: [PackageSourceInput!]
}
type ConfigGeneralResult {
"Array of file paths to content"
stashes: [StashConfig!]!
"Path to the SQLite database"
databasePath: String!
"Path to backup directory"
backupDirectoryPath: String!
"Path to generated files"
generatedPath: String!
"Path to import/export files"
metadataPath: String!
"Path to the config file used"
configFilePath: String!
"Path to scrapers"
scrapersPath: String!
"Path to plugins"
pluginsPath: String!
"Path to cache"
cachePath: String!
"Path to blobs - required for filesystem blob storage"
blobsPath: String!
"Where to store blobs"
blobsStorage: BlobsStorageType!
"Path to the ffmpeg binary. If empty, stash will attempt to find it in the path or config directory"
ffmpegPath: String!
"Path to the ffprobe binary. If empty, stash will attempt to find it in the path or config directory"
ffprobePath: String!
"Whether to calculate MD5 checksums for scene video files"
calculateMD5: Boolean!
"Hash algorithm to use for generated file naming"
videoFileNamingAlgorithm: HashAlgorithm!
"Number of parallel tasks to start during scan/generate"
parallelTasks: Int!
"Include audio stream in previews"
previewAudio: Boolean!
"Number of segments in a preview file"
previewSegments: Int!
"Preview segment duration, in seconds"
previewSegmentDuration: Float!
"Duration of start of video to exclude when generating previews"
previewExcludeStart: String!
"Duration of end of video to exclude when generating previews"
previewExcludeEnd: String!
"Preset when generating preview"
previewPreset: PreviewPreset!
"Transcode Hardware Acceleration"
transcodeHardwareAcceleration: Boolean!
"Max generated transcode size"
maxTranscodeSize: StreamingResolutionEnum
"Max streaming transcode size"
maxStreamingTranscodeSize: StreamingResolutionEnum
"""
ffmpeg transcode input args - injected before input file
These are applied to generated transcodes (previews and transcodes)
"""
transcodeInputArgs: [String!]!
"""
ffmpeg transcode output args - injected before output file
These are applied to generated transcodes (previews and transcodes)
"""
transcodeOutputArgs: [String!]!
"""
ffmpeg stream input args - injected before input file
These are applied when live transcoding
"""
liveTranscodeInputArgs: [String!]!
"""
ffmpeg stream output args - injected before output file
These are applied when live transcoding
"""
liveTranscodeOutputArgs: [String!]!
"whether to include range in generated funscript heatmaps"
drawFunscriptHeatmapRange: Boolean!
"Write image thumbnails to disk when generating on the fly"
writeImageThumbnails: Boolean!
"Create Image Clips from Video extensions when Videos are disabled in Library"
createImageClipsFromVideos: Boolean!
"API Key"
apiKey: String!
"Username"
username: String!
"Password"
password: String!
"Maximum session cookie age"
maxSessionAge: Int!
"Name of the log file"
logFile: String
"Whether to also output to stderr"
logOut: Boolean!
"Minimum log level"
logLevel: String!
"Whether to log http access"
logAccess: Boolean!
"Array of video file extensions"
videoExtensions: [String!]!
"Array of image file extensions"
imageExtensions: [String!]!
"Array of gallery zip file extensions"
galleryExtensions: [String!]!
"True if galleries should be created from folders with images"
createGalleriesFromFolders: Boolean!
"Regex used to identify images as gallery covers"
galleryCoverRegex: String!
"Array of file regexp to exclude from Video Scans"
excludes: [String!]!
"Array of file regexp to exclude from Image Scans"
imageExcludes: [String!]!
"Custom Performer Image Location"
customPerformerImageLocation: String
"Stash-box instances used for tagging"
stashBoxes: [StashBox!]!
"Python path - resolved using path if unset"
pythonPath: String!
"Source of scraper packages"
scraperPackageSources: [PackageSource!]!
"Source of plugin packages"
pluginPackageSources: [PackageSource!]!
}
input ConfigDisableDropdownCreateInput {
performer: Boolean
tag: Boolean
studio: Boolean
movie: Boolean
}
enum ImageLightboxDisplayMode {
ORIGINAL
FIT_XY
FIT_X
}
enum ImageLightboxScrollMode {
ZOOM
PAN_Y
}
input ConfigImageLightboxInput {
slideshowDelay: Int
displayMode: ImageLightboxDisplayMode
scaleUp: Boolean
resetZoomOnNav: Boolean
scrollMode: ImageLightboxScrollMode
scrollAttemptsBeforeChange: Int
}
type ConfigImageLightboxResult {
slideshowDelay: Int
displayMode: ImageLightboxDisplayMode
scaleUp: Boolean
resetZoomOnNav: Boolean
scrollMode: ImageLightboxScrollMode
scrollAttemptsBeforeChange: Int!
}
input ConfigInterfaceInput {
"Ordered list of items that should be shown in the menu"
menuItems: [String!]
"Enable sound on mouseover previews"
soundOnPreview: Boolean
"Show title and tags in wall view"
wallShowTitle: Boolean
"Wall playback type"
wallPlayback: String
"Show scene scrubber by default"
showScrubber: Boolean
"Show scene range markers by default"
showRangeMarkers: Boolean
"Maximum duration (in seconds) in which a scene video will loop in the scene player"
maximumLoopDuration: Int
"If true, video will autostart on load in the scene player"
autostartVideo: Boolean
"If true, video will autostart when loading from play random or play selected"
autostartVideoOnPlaySelected: Boolean
"If true, next scene in playlist will be played at video end by default"
continuePlaylistDefault: Boolean
"If true, studio overlays will be shown as text instead of logo images"
showStudioAsText: Boolean
"Custom CSS"
css: String
cssEnabled: Boolean
"Custom Javascript"
javascript: String
javascriptEnabled: Boolean
"Custom Locales"
customLocales: String
customLocalesEnabled: Boolean
"Interface language"
language: String
imageLightbox: ConfigImageLightboxInput
"Set to true to disable creating new objects via the dropdown menus"
disableDropdownCreate: ConfigDisableDropdownCreateInput
"Handy Connection Key"
handyKey: String
"Funscript Time Offset"
funscriptOffset: Int
"Whether to use Stash Hosted Funscript"
useStashHostedFunscript: Boolean
"True if we should not auto-open a browser window on startup"
noBrowser: Boolean
"True if we should send notifications to the desktop"
notificationsEnabled: Boolean
}
type ConfigDisableDropdownCreate {
performer: Boolean!
tag: Boolean!
studio: Boolean!
movie: Boolean!
}
type ConfigInterfaceResult {
"Ordered list of items that should be shown in the menu"
menuItems: [String!]
"Enable sound on mouseover previews"
soundOnPreview: Boolean
"Show title and tags in wall view"
wallShowTitle: Boolean
"Wall playback type"
wallPlayback: String
"Show scene scrubber by default"
showScrubber: Boolean
"Show scene range markers by default"
showRangeMarkers: Boolean
"Maximum duration (in seconds) in which a scene video will loop in the scene player"
maximumLoopDuration: Int
"True if we should not auto-open a browser window on startup"
noBrowser: Boolean
"True if we should send desktop notifications"
notificationsEnabled: Boolean
"If true, video will autostart on load in the scene player"
autostartVideo: Boolean
"If true, video will autostart when loading from play random or play selected"
autostartVideoOnPlaySelected: Boolean
"If true, next scene in playlist will be played at video end by default"
continuePlaylistDefault: Boolean
"If true, studio overlays will be shown as text instead of logo images"
showStudioAsText: Boolean
"Custom CSS"
css: String
cssEnabled: Boolean
"Custom Javascript"
javascript: String
javascriptEnabled: Boolean
"Custom Locales"
customLocales: String
customLocalesEnabled: Boolean
"Interface language"
language: String
imageLightbox: ConfigImageLightboxResult!
"Fields are true if creating via dropdown menus are disabled"
disableDropdownCreate: ConfigDisableDropdownCreate!
"Handy Connection Key"
handyKey: String
"Funscript Time Offset"
funscriptOffset: Int
"Whether to use Stash Hosted Funscript"
useStashHostedFunscript: Boolean
}
input ConfigDLNAInput {
serverName: String
"True if DLNA service should be enabled by default"
enabled: Boolean
"Defaults to 1338"
port: Int
"List of IPs whitelisted for DLNA service"
whitelistedIPs: [String!]
"List of interfaces to run DLNA on. Empty for all"
interfaces: [String!]
"Order to sort videos"
videoSortOrder: String
}
type ConfigDLNAResult {
serverName: String!
"True if DLNA service should be enabled by default"
enabled: Boolean!
"Defaults to 1338"
port: Int!
"List of IPs whitelisted for DLNA service"
whitelistedIPs: [String!]!
"List of interfaces to run DLNA on. Empty for all"
interfaces: [String!]!
"Order to sort videos"
videoSortOrder: String!
}
input ConfigScrapingInput {
"Scraper user agent string"
scraperUserAgent: String
"Scraper CDP path. Path to chrome executable or remote address"
scraperCDPPath: String
"Whether the scraper should check for invalid certificates"
scraperCertCheck: Boolean
"Tags blacklist during scraping"
excludeTagPatterns: [String!]
}
type ConfigScrapingResult {
"Scraper user agent string"
scraperUserAgent: String
"Scraper CDP path. Path to chrome executable or remote address"
scraperCDPPath: String
"Whether the scraper should check for invalid certificates"
scraperCertCheck: Boolean!
"Tags blacklist during scraping"
excludeTagPatterns: [String!]!
}
type ConfigDefaultSettingsResult {
scan: ScanMetadataOptions
identify: IdentifyMetadataTaskOptions
autoTag: AutoTagMetadataOptions
generate: GenerateMetadataOptions
"If true, delete file checkbox will be checked by default"
deleteFile: Boolean
"If true, delete generated supporting files checkbox will be checked by default"
deleteGenerated: Boolean
}
input ConfigDefaultSettingsInput {
scan: ScanMetadataInput
identify: IdentifyMetadataInput
autoTag: AutoTagMetadataInput
generate: GenerateMetadataInput
"If true, delete file checkbox will be checked by default"
deleteFile: Boolean
"If true, delete generated files checkbox will be checked by default"
deleteGenerated: Boolean
}
"All configuration settings"
type ConfigResult {
general: ConfigGeneralResult!
interface: ConfigInterfaceResult!
dlna: ConfigDLNAResult!
scraping: ConfigScrapingResult!
defaults: ConfigDefaultSettingsResult!
ui: Map!
plugins(include: [ID!]): PluginConfigMap!
}
"Directory structure of a path"
type Directory {
path: String!
parent: String
directories: [String!]!
}
"Stash configuration details"
input StashConfigInput {
path: String!
excludeVideo: Boolean!
excludeImage: Boolean!
}
type StashConfig {
path: String!
excludeVideo: Boolean!
excludeImage: Boolean!
}
input GenerateAPIKeyInput {
clear: Boolean
}
type StashBoxValidationResult {
valid: Boolean!
status: String!
}