view decoupage/templates.py @ 91:4a9c5cf9fec9

STUB: decoupage/templates.py decoupage/index.py
author Jeff Hammel <k0scist@gmail.com>
date Sat, 29 Mar 2014 17:17:21 -0700
parents 78139c3cecfa
children 6b79c13bb42b
line wrap: on
line source

#!/usr/bin/env python

"""
functionality related to templates
"""

import argparse
import os
import sys
from .index import index
from pkg_resources import iter_entry_points
from pkg_resources import resource_filename

def template_dirs():
    """registered template directories"""

    template_dirs = set()
    for formatter in iter_entry_points('decoupage.formatters'):
        try:
            formatter.load()
        except:
            continue
        template_dir = resource_filename(formatter.module_name, 'templates')
        if os.path.isdir(template_dir):
            template_dirs.add(template_dir)
    return template_dirs


def templates():
    """templates"""
    templates = []
    for directory in template_dirs():
        templates.extend([os.path.join(directory, filename)
                          for filename in os.listdir(directory)
                          if filename.endswith('.html')])
    return templates

def template_dict():
    """return a dict of templates"""
    return {os.path.basename(template):template for template in templates()}

def main(args=sys.argv[1:]):
    """CLI"""

    # parse command line
    description = 'list and output available templates'
    parser = argparse.ArgumentParser(description=description)
    parser.add_argument('template', nargs='?',
                        help="output this template")
    parser.add_argument('-o', '--output', dest='output',
                        help="output to file or directory or stdout")
    # TODO
    parser.add_argument('--cwd', dest='cwd',
                        help="output to current working directory")
    options = parser.parse_args(args)

    # retrieve templates
    _templates = template_dict()

    template = options.template
    if template:

        # look up template
        if not template.endswith('.html'):
            template = template + '.html'
        filename = _templates.get(template)
        if filename is None:
            parser.error("Template '{}' not in {}".format(template, ', '.join(sorted(_templates.keys()))))
        content = open(filename, 'r').read()

        # divine output
        output = options.output
        if output:
            if os.path.isdir(output):
                output = os.path.join(output, 'index.html')
            with open(output, 'w') as f:
                f.write(content)

            directory = os.path.dirname(os.path.abspath(output))
            ini = os.path.join(directory, 'index.ini')
            if not os.path.exists(ini):
                pass
                # TODO: output directory contents to ini
                # if specified

        else:
            print (content)

    else:
        # list templates
        for template in templates():
            print (template)


if __name__ == '__main__':
    main()