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-23 20:30:03 +02:00
|
|
|
import subprocess
|
2013-07-31 04:48:07 +02:00
|
|
|
|
2013-08-22 04:28:28 +02:00
|
|
|
DEFAULT_CHEAT_DIR = os.path.join(os.path.expanduser('~'), '.cheat')
|
2013-08-22 04:49:07 +02:00
|
|
|
USE_PYGMENTS = False
|
2013-08-22 01:19:31 +02:00
|
|
|
|
|
|
|
# NOTE remove this check if it is confirmed to work on windows
|
2013-08-22 04:56:33 +02:00
|
|
|
if os.name == 'posix' and 'CHEATCOLORS' in os.environ:
|
2013-08-22 01:19:31 +02:00
|
|
|
try:
|
|
|
|
from pygments import highlight
|
|
|
|
from pygments.util import ClassNotFound
|
|
|
|
from pygments.lexers import get_lexer_for_filename, TextLexer
|
|
|
|
from pygments.formatters import TerminalFormatter
|
|
|
|
USE_PYGMENTS = True
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2013-08-20 23:56:12 +02:00
|
|
|
|
2013-08-18 21:53:40 +02:00
|
|
|
def cheat_directories():
|
2013-08-21 08:46:10 +02:00
|
|
|
"Assembles a list of directories containing cheatsheets."
|
2013-08-20 23:56:12 +02:00
|
|
|
default_directories = [DEFAULT_CHEAT_DIR]
|
2013-08-19 10:02:53 +02:00
|
|
|
try:
|
|
|
|
import cheatsheets
|
|
|
|
default_directories.append(cheatsheets.cheat_dir)
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
2013-08-21 08:46:10 +02:00
|
|
|
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-21 08:46:10 +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-21 08:46:10 +02:00
|
|
|
|
2013-08-18 21:53:40 +02:00
|
|
|
def cheat_files(cheat_directories):
|
2013-08-21 08:46:10 +02:00
|
|
|
"Assembles a dictionary of cheatsheets found in the above directories."
|
2013-08-18 21:53:40 +02:00
|
|
|
cheats = {}
|
|
|
|
for cheat_dir in reversed(cheat_directories):
|
2013-08-21 08:46:10 +02:00
|
|
|
cheats.update(dict([(cheat, cheat_dir)
|
|
|
|
for cheat in os.listdir(cheat_dir)
|
2013-08-22 05:09:31 +02:00
|
|
|
if not cheat.startswith('.')
|
|
|
|
and not cheat.startswith('__')]))
|
2013-08-18 21:53:40 +02:00
|
|
|
return cheats
|
2013-08-10 05:46:34 +02:00
|
|
|
|
2013-08-23 21:25:04 +02:00
|
|
|
def edit_cheatsheet(cheat, cheatsheets):
|
|
|
|
"Edit a pre-existing cheatsheet."
|
|
|
|
if cheat not in cheatsheets:
|
2013-08-27 02:16:43 +02:00
|
|
|
print ('No cheatsheet found for "%s"' % cheat)
|
2013-08-23 21:25:04 +02:00
|
|
|
ans = raw_input('Create cheatsheet for "%s" (Y/N)? ' % cheat)
|
|
|
|
if ans.lower() in ['y', 'yes']:
|
|
|
|
create_cheatsheet(cheat, cheatsheets)
|
|
|
|
else:
|
|
|
|
exit()
|
|
|
|
|
|
|
|
subprocess.call([os.environ['EDITOR'],
|
|
|
|
os.path.join(cheatsheets[cheat], cheat)])
|
|
|
|
exit()
|
|
|
|
|
|
|
|
def create_cheatsheet(cheat, cheatsheets):
|
|
|
|
"Create a new cheatsheet."
|
|
|
|
if cheat in cheatsheets:
|
2013-08-27 02:16:43 +02:00
|
|
|
print ('Cheatsheet "%s" already exists' % cheat)
|
2013-08-23 21:25:04 +02:00
|
|
|
exit()
|
|
|
|
|
|
|
|
import cheatsheets as cs
|
2013-08-27 02:12:59 +02:00
|
|
|
|
|
|
|
# Attempt to write the new cheatsheet to the user's ~/.cheat dir if it
|
|
|
|
# exists. If it does not exist, attempt to create it.
|
|
|
|
if os.access(DEFAULT_CHEAT_DIR, os.W_OK) or os.makedirs(DEFAULT_CHEAT_DIR):
|
|
|
|
subprocess.call([os.environ['EDITOR'],
|
|
|
|
os.path.join(DEFAULT_CHEAT_DIR, cheat)])
|
|
|
|
|
|
|
|
# If the directory cannot be created, write to the python package
|
|
|
|
# directory, though that will likely require the use of sudo
|
|
|
|
else:
|
|
|
|
subprocess.call([os.environ['EDITOR'],
|
|
|
|
os.path.join(cs.cheat_dir, cheat)])
|
|
|
|
|
2013-08-23 21:25:04 +02:00
|
|
|
exit()
|
2013-08-19 21:23:53 +02:00
|
|
|
|
2013-08-21 08:46:10 +02:00
|
|
|
def main():
|
2013-08-19 21:23:53 +02:00
|
|
|
# assemble a keyphrase out of all params passed to the script
|
2013-08-22 04:56:33 +02:00
|
|
|
keyphrase = ' '.join(sys.argv[1:])
|
2013-08-19 21:23:53 +02:00
|
|
|
cheat_dirs = cheat_directories()
|
|
|
|
|
|
|
|
# verify that we have at least one cheat directory
|
|
|
|
if not cheat_dirs:
|
2013-08-20 23:56:12 +02:00
|
|
|
error_msg = 'The {default} dir does not exist or the CHEATPATH var is not set.'
|
|
|
|
print >> sys.stderr, error_msg.format(default=DEFAULT_CHEAT_DIR)
|
2013-08-19 21:23:53 +02:00
|
|
|
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']:
|
2013-08-25 20:29:44 +02:00
|
|
|
print ("Usage: cheat [keyphrase]\n")
|
|
|
|
print ("Available keyphrases:")
|
2013-08-21 08:46:10 +02:00
|
|
|
max_command = max([len(x) for x in cheatsheets.keys()]) + 3
|
2013-08-25 20:29:44 +02:00
|
|
|
print ('\n'.join(sorted(['%s [%s]' % (key.ljust(max_command), value)
|
|
|
|
for key, value in cheatsheets.items()])))
|
2013-08-19 21:23:53 +02:00
|
|
|
exit()
|
|
|
|
|
2013-08-23 21:25:04 +02:00
|
|
|
# create/edit option
|
|
|
|
option = sys.argv[1].lower()
|
|
|
|
if option in ['-e', '--edit', '-c', '--create']:
|
|
|
|
# make sure EDITOR environment variable is set and that at least 3 arguments
|
|
|
|
# are given
|
|
|
|
if 'EDITOR' not in os.environ:
|
|
|
|
print('In order to use "create" or "edit" you must set your '
|
|
|
|
'EDITOR environment variable to your favorite editor\'s path')
|
2013-08-23 20:30:03 +02:00
|
|
|
exit()
|
2013-08-23 21:25:04 +02:00
|
|
|
elif len(sys.argv) < 3:
|
2013-08-27 02:16:43 +02:00
|
|
|
print ('Must provide a cheatsheet to edit/create')
|
2013-08-23 20:30:03 +02:00
|
|
|
exit()
|
|
|
|
|
2013-08-23 21:25:04 +02:00
|
|
|
# if the user wants to edit a cheatsheet
|
|
|
|
if option in ['-e', '--edit']:
|
|
|
|
edit_cheatsheet(' '.join(sys.argv[2:]), cheatsheets)
|
2013-08-23 20:30:03 +02:00
|
|
|
|
2013-08-23 21:25:04 +02:00
|
|
|
# if the user wants to create a cheatsheet
|
|
|
|
elif option in ['-c', '--create']:
|
|
|
|
create_cheatsheet(' '.join(sys.argv[2:]), cheatsheets)
|
2013-08-23 20:30:03 +02:00
|
|
|
|
2013-08-19 21:23:53 +02:00
|
|
|
# print the cheatsheet if it exists
|
|
|
|
if keyphrase in cheatsheets:
|
2013-08-21 08:46:10 +02:00
|
|
|
filename = os.path.join(cheatsheets[keyphrase], keyphrase)
|
2013-08-21 11:33:09 +02:00
|
|
|
if USE_PYGMENTS:
|
|
|
|
pretty_print(filename)
|
|
|
|
else:
|
|
|
|
with open(filename) as istream:
|
|
|
|
for l in istream:
|
|
|
|
sys.stdout.write(l)
|
2013-08-19 21:23:53 +02:00
|
|
|
|
|
|
|
# if it does not, say so
|
|
|
|
else:
|
2013-08-25 20:29:44 +02:00
|
|
|
print ('No cheatsheet found for %s.' % keyphrase)
|
2013-08-19 21:23:53 +02:00
|
|
|
|
2013-08-21 08:46:10 +02:00
|
|
|
|
2013-08-21 09:00:24 +02:00
|
|
|
def pretty_print(filename):
|
|
|
|
try:
|
|
|
|
if os.path.splitext(filename)[1]:
|
|
|
|
lexer = get_lexer_for_filename(filename)
|
|
|
|
else:
|
|
|
|
# shell is a sensible default when there is no extension
|
|
|
|
lexer = get_lexer_for_filename(filename + '.sh')
|
|
|
|
|
|
|
|
except ClassNotFound:
|
|
|
|
lexer = TextLexer()
|
|
|
|
|
|
|
|
with open(filename) as istream:
|
|
|
|
code = istream.read()
|
|
|
|
|
|
|
|
fmt = TerminalFormatter()
|
|
|
|
highlight(code, lexer, fmt, sys.stdout)
|
|
|
|
|
|
|
|
|
2013-08-19 21:23:53 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|