#!/usr/bin/env python # -*- coding: iso-8859-15 -*- #depends on python-magic 0.4 import os, magic, argparse, sys from page_template import * parser = argparse.ArgumentParser(""" distbusi is a content management system for the web that produces static index pages based on folders in the filesystem. It is inspired by the automatic index functions featured in several web servers. It works by traversing the file system and directory hierarchy to automatically list all the files in the directory and providing them with html classes and tags for easy styling. """) parser.add_argument('-d', '--directory', help="Select which directory to distribute") parser.add_argument('-v', '--verbose', help="Print verbose debug output", action="store_true") args = parser.parse_args() if args.directory: print('Generating directory listing for', args.directory) directory = args.directory else: directory = '.' mime_type = magic.Magic(mime=True) file_types = {'image':'', 'pdf':'', 'text':'{}', 'video':'', 'audio':''} code_types = ['x-c', 'html'] def dict_by_value(dictionary, value): return(list(dictionary.keys())[list(dictionary.values()).index(value)]) # returns the key for the given value def div(mime, tag, *values): #name, full_path class_name = values[0].split('.')[0].replace(' ', '_') if 'image' in mime: html ='
"+open(full_path).read()+"" else: a = file_types[mime] else: a = file_types[mime] if format in file_types: a = file_types[format] if mime not in file_types and format not in file_types: #to catch exceptions we haven't defined in file_types before a = "{}" if args.verbose: print ('mime-type not in list, adding as href: \n', mime,format, name) a = a.replace('{}',name) html.append(div(mime,a,name)) #html.append(a) if root != directory: html.append('../') for name in dirs: i = os.path.join(root,name) a = "{}/".replace('{}',name) html.append(div('dir',a,'folder')) with open(os.path.join(root,'index.html'),'w') as f: f.write(html_head) for line in html: f.write(line+'\n') f.write(html_footer)