youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

fish-completion.py (1614B)


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