]> jfr.im git - yt-dlp.git/blob - devscripts/fish-completion.py
[cleanup] Misc cleanup (#2173)
[yt-dlp.git] / devscripts / fish-completion.py
1 #!/usr/bin/env python3
2 import optparse
3 import os
4 import sys
5
6 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
7
8 import yt_dlp
9 from yt_dlp.utils import shell_quote
10
11 FISH_COMPLETION_FILE = 'completions/fish/yt-dlp.fish'
12 FISH_COMPLETION_TEMPLATE = 'devscripts/fish-completion.in'
13
14 EXTRA_ARGS = {
15 'remux-video': ['--arguments', 'mp4 mkv', '--exclusive'],
16 'recode-video': ['--arguments', 'mp4 flv ogg webm mkv', '--exclusive'],
17
18 # Options that need a file parameter
19 'download-archive': ['--require-parameter'],
20 'cookies': ['--require-parameter'],
21 'load-info': ['--require-parameter'],
22 'batch-file': ['--require-parameter'],
23 }
24
25
26 def build_completion(opt_parser):
27 commands = []
28
29 for group in opt_parser.option_groups:
30 for option in group.option_list:
31 long_option = option.get_opt_string().strip('-')
32 complete_cmd = ['complete', '--command', 'yt-dlp', '--long-option', long_option]
33 if option._short_opts:
34 complete_cmd += ['--short-option', option._short_opts[0].strip('-')]
35 if option.help != optparse.SUPPRESS_HELP:
36 complete_cmd += ['--description', option.help]
37 complete_cmd.extend(EXTRA_ARGS.get(long_option, []))
38 commands.append(shell_quote(complete_cmd))
39
40 with open(FISH_COMPLETION_TEMPLATE) as f:
41 template = f.read()
42 filled_template = template.replace('{{commands}}', '\n'.join(commands))
43 with open(FISH_COMPLETION_FILE, 'w') as f:
44 f.write(filled_template)
45
46
47 parser = yt_dlp.parseOpts()[0]
48 build_completion(parser)