2013-07-31 04:48:07 +02:00
|
|
|
#!/usr/bin/env python
|
2013-08-11 21:37:11 +02:00
|
|
|
import os
|
2013-07-31 04:48:07 +02:00
|
|
|
import sys
|
|
|
|
|
2013-08-20 03:35:51 +02:00
|
|
|
# assembles a list of directories containing cheatsheets
|
2013-08-18 21:53:40 +02:00
|
|
|
def cheat_directories():
|
2013-08-19 10:02:53 +02:00
|
|
|
default_directories = [os.path.expanduser('~/.cheat')]
|
|
|
|
try:
|
|
|
|
import cheatsheets
|
|
|
|
default_directories.append(cheatsheets.cheat_dir)
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
default = [ default_dir for default_dir in default_directories if os.path.isdir(default_dir) ]
|
2013-08-18 21:53:40 +02:00
|
|
|
if 'CHEATPATH' in os.environ and os.environ['CHEATPATH']:
|
2013-08-19 04:52:35 +02:00
|
|
|
return [ path for path in os.environ['CHEATPATH'].split(os.pathsep)\
|
|
|
|
if os.path.isdir(path) ] + default
|
2013-08-18 21:53:40 +02:00
|
|
|
else:
|
|
|
|
return default
|
2013-08-17 04:16:44 +02:00
|
|
|
|
2013-08-20 03:35:51 +02:00
|
|
|
# assembles a dictionary of cheatsheets found in the above directories
|
2013-08-18 21:53:40 +02:00
|
|
|
def cheat_files(cheat_directories):
|
|
|
|
cheats = {}
|
|
|
|
for cheat_dir in reversed(cheat_directories):
|
2013-08-19 04:52:35 +02:00
|
|
|
cheats.update(dict([ (cheat, cheat_dir)\
|
2013-08-21 08:35:39 +02:00
|
|
|
for cheat in os.listdir(cheat_dir) if not cheat.startswith('.')]))
|
2013-08-18 21:53:40 +02:00
|
|
|
return cheats
|
2013-08-10 05:46:34 +02:00
|
|
|
|
2013-08-19 21:23:53 +02:00
|
|
|
def main():
|
|
|
|
"""MAIN"""
|
|
|
|
|
|
|
|
# assemble a keyphrase out of all params passed to the script
|
|
|
|
keyphrase = ' '.join(sys.argv[1:])
|
|
|
|
cheat_dirs = cheat_directories()
|
|
|
|
|
|
|
|
# verify that we have at least one cheat directory
|
|
|
|
if not cheat_dirs:
|
|
|
|
print >> sys.stderr, \
|
|
|
|
'The ~/.cheat dir does not exist or the CHEATPATH var is not set.'
|
|
|
|
exit()
|
|
|
|
|
|
|
|
# list the files in the ~/.cheat directory
|
|
|
|
cheatsheets = cheat_files(cheat_dirs)
|
|
|
|
|
|
|
|
# print help if requested
|
|
|
|
if keyphrase.lower() in ['', 'cheat', 'help', '-h', '-help', '--help']:
|
|
|
|
print "Usage: cheat [keyphrase]\n"
|
|
|
|
print "Available keyphrases:"
|
|
|
|
max_command = max([ len(x) for x in cheatsheets.keys() ]) + 3
|
|
|
|
print '\n'.join(sorted([ '%s [%s]' % (key.ljust(max_command), value)\
|
|
|
|
for key, value in cheatsheets.items() ]))
|
|
|
|
exit()
|
|
|
|
|
|
|
|
# print the cheatsheet if it exists
|
|
|
|
if keyphrase in cheatsheets:
|
|
|
|
with open (os.path.join(cheatsheets[keyphrase], keyphrase), 'r')\
|
|
|
|
as cheatsheet:
|
|
|
|
print cheatsheet.read()
|
|
|
|
|
|
|
|
# if it does not, say so
|
|
|
|
else:
|
|
|
|
print 'No cheatsheet found for %s.' % keyphrase
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|