2013-07-31 04:48:07 +02:00
|
|
|
#!/usr/bin/env python
|
2013-09-02 13:39:43 +02:00
|
|
|
"""
|
2013-09-07 19:28:10 +02:00
|
|
|
cheat.py -- cheat allows you to create and view interactive cheatsheets on the
|
|
|
|
command-line. It was designed to help remind *nix system
|
|
|
|
administrators of options for commands that they use frequently,
|
2013-10-11 18:32:21 +02:00
|
|
|
but not frequently enough to remember.
|
2013-09-07 19:28:10 +02:00
|
|
|
|
2013-09-02 13:39:43 +02:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
|
2013-08-11 21:37:11 +02:00
|
|
|
import os
|
2013-07-31 04:48:07 +02:00
|
|
|
import sys
|
2013-09-06 04:50:55 +02:00
|
|
|
import argparse
|
2013-08-23 20:30:03 +02:00
|
|
|
import subprocess
|
2013-09-14 15:06:30 +02:00
|
|
|
from textwrap import dedent
|
2013-07-31 04:48:07 +02:00
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
DEFAULT_CHEAT_DIR = (os.environ.get('DEFAULT_CHEAT_DIR') or
|
|
|
|
os.path.join(os.path.expanduser('~'), '.cheat'))
|
|
|
|
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-10-11 18:32:21 +02:00
|
|
|
|
2013-09-14 14:56:36 +02:00
|
|
|
def pretty_print(filename):
|
2013-10-11 18:32:21 +02:00
|
|
|
"""Applies syntax highlighting to a cheatsheet and writes it to stdout"""
|
2013-09-14 14:56:36 +02:00
|
|
|
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-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 04:07:34 +02:00
|
|
|
class CheatSheets(object):
|
2013-11-07 11:23:51 +01:00
|
|
|
"""Cheatsheets database class."""
|
2013-09-16 04:07:34 +02:00
|
|
|
dirs = None
|
|
|
|
sheets = None
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.dirs = self.__cheat_directories()
|
|
|
|
# verify that we have at least one cheat directory
|
|
|
|
if not self.dirs:
|
2013-10-11 18:32:21 +02:00
|
|
|
error_msg = ('The {default} dir does not exist'
|
|
|
|
' or the CHEATPATH var is not set.')
|
2013-09-16 04:07:34 +02:00
|
|
|
print >> sys.stderr, error_msg.format(default=DEFAULT_CHEAT_DIR)
|
2013-09-20 02:27:06 +02:00
|
|
|
exit(1)
|
2013-09-16 04:07:34 +02:00
|
|
|
self.sheets = self.__cheat_files()
|
|
|
|
|
|
|
|
def __cheat_directories(self):
|
|
|
|
"""Assembles a list of directories containing cheatsheets."""
|
|
|
|
default_directories = [DEFAULT_CHEAT_DIR]
|
|
|
|
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)]
|
|
|
|
|
|
|
|
if 'CHEATPATH' in os.environ and os.environ['CHEATPATH']:
|
|
|
|
return [path for path in os.environ['CHEATPATH'].split(os.pathsep)
|
|
|
|
if os.path.isdir(path)] + default
|
|
|
|
else:
|
|
|
|
return default
|
|
|
|
|
|
|
|
def __cheat_files(self):
|
2013-10-11 18:32:21 +02:00
|
|
|
"""
|
|
|
|
Assembles a dictionary of cheatsheets found in the above directories.
|
|
|
|
"""
|
2013-09-16 04:07:34 +02:00
|
|
|
cheats = {}
|
|
|
|
for cheat_dir in reversed(self.dirs):
|
|
|
|
cheats.update(dict([(cheat, cheat_dir)
|
|
|
|
for cheat in os.listdir(cheat_dir)
|
|
|
|
if not cheat.startswith('.')
|
|
|
|
and not cheat.startswith('__')]))
|
|
|
|
return cheats
|
|
|
|
|
|
|
|
def edit(self, cheat):
|
|
|
|
"""Creates or edits a cheatsheet"""
|
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
# Assert that the EDITOR environment variable is set and that at least
|
|
|
|
# 3 arguments have been given
|
2013-09-16 04:07:34 +02:00
|
|
|
if 'EDITOR' not in os.environ:
|
2013-09-20 02:27:06 +02:00
|
|
|
print >> sys.stderr, ('In order to create/edit a cheatsheet you '
|
2013-10-11 18:32:21 +02:00
|
|
|
'must set your EDITOR environment variable '
|
|
|
|
'to your favorite editor\'s path.')
|
2013-09-20 02:27:06 +02:00
|
|
|
exit(1)
|
|
|
|
elif os.environ['EDITOR'] == "":
|
|
|
|
print >> sys.stderr, ('Your EDITOR environment variable is set '
|
2013-10-11 18:32:21 +02:00
|
|
|
'to nothing, in order to create/edit a '
|
|
|
|
'cheatsheet your must set it to a valid '
|
|
|
|
'editor\'s path.')
|
2013-09-20 02:27:06 +02:00
|
|
|
exit(1)
|
2013-09-20 02:12:48 +02:00
|
|
|
else:
|
|
|
|
editor = os.environ['EDITOR'].split()
|
2013-11-12 00:10:00 +01:00
|
|
|
|
2013-09-16 04:07:34 +02:00
|
|
|
# if the cheatsheet already exists, open it for editing
|
2013-09-20 02:27:06 +02:00
|
|
|
try:
|
2013-10-11 18:32:21 +02:00
|
|
|
if cheat in self.sheets:
|
|
|
|
sheet_path = os.path.join(self.sheets[cheat], cheat)
|
|
|
|
if os.access(sheet_path, os.W_OK):
|
|
|
|
subprocess.call(editor + [sheet_path])
|
|
|
|
else:
|
|
|
|
print >> sys.stderr, ("Sheet '%s' [%s] is not editable."
|
|
|
|
% (cheat, sheet_path))
|
|
|
|
print ('Do you want to '
|
|
|
|
'copy it to your user cheatsheets directory [%s] '
|
2013-11-12 00:10:00 +01:00
|
|
|
'before editing?\nKeep in mind that your sheet '
|
2013-10-11 18:32:21 +02:00
|
|
|
'will always be used before system-wide one.'
|
|
|
|
% DEFAULT_CHEAT_DIR)
|
|
|
|
awn = raw_input('[y/n] ')
|
|
|
|
if awn != 'y':
|
|
|
|
print ('Ok, if you want to edit system-wide sheet, '
|
|
|
|
'please try `cheat -e <cheatsheet>` '
|
|
|
|
'again with sudo.')
|
|
|
|
exit(1)
|
|
|
|
import shutil
|
2013-11-12 00:10:00 +01:00
|
|
|
|
|
|
|
# attempt to copy the cheatsheet to DEFAULT_CHEAT_DIR
|
|
|
|
try:
|
|
|
|
new_sheet = os.path.join(DEFAULT_CHEAT_DIR, cheat)
|
|
|
|
shutil.copy(sheet_path, new_sheet)
|
|
|
|
subprocess.call(editor + [new_sheet])
|
|
|
|
|
|
|
|
# fail gracefully if the cheatsheet cannot be copied. This
|
|
|
|
# can happen if DEFAULT_CHEAT_DIR does not exist
|
|
|
|
except IOError:
|
|
|
|
print ('Could not copy cheatsheet for editing.')
|
|
|
|
exit(1)
|
2013-09-16 04:07:34 +02:00
|
|
|
|
2013-09-20 02:27:06 +02:00
|
|
|
# otherwise, create it
|
2013-09-16 03:26:20 +02:00
|
|
|
else:
|
2013-09-20 02:27:06 +02:00
|
|
|
import cheatsheets as cs
|
2013-10-11 18:32:21 +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.
|
2013-09-20 02:27:06 +02:00
|
|
|
if os.access(DEFAULT_CHEAT_DIR, os.W_OK) or os.makedirs(DEFAULT_CHEAT_DIR):
|
2013-11-07 11:23:51 +01:00
|
|
|
subprocess.call(editor
|
|
|
|
+ [os.path.join(DEFAULT_CHEAT_DIR, cheat)])
|
2013-09-20 02:27:06 +02:00
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
# If the directory cannot be created, write to the python
|
|
|
|
# package directory, though that will likely require the use
|
|
|
|
# of sudo
|
2013-09-20 02:27:06 +02:00
|
|
|
else:
|
2013-10-11 18:32:21 +02:00
|
|
|
if os.access(sheet_path, os.W_OK):
|
2013-11-07 11:23:51 +01:00
|
|
|
subprocess.call(editor
|
|
|
|
+ [os.path.join(cs.cheat_dir, cheat)])
|
2013-10-11 18:32:21 +02:00
|
|
|
else:
|
2013-11-07 11:23:51 +01:00
|
|
|
error_msg = ("Couldn't create '%s' cheatsheet.\n"
|
|
|
|
"Please retry usig sudo." % cheat)
|
|
|
|
print >> sys.stderr, error_msg
|
2013-10-11 18:32:21 +02:00
|
|
|
exit(1)
|
2013-11-07 11:23:51 +01:00
|
|
|
except OSError, errno:
|
2013-09-20 02:27:06 +02:00
|
|
|
print >> sys.stderr, ("Could not launch `%s` as your editor : %s"
|
2013-11-07 11:23:51 +01:00
|
|
|
% (editor[0], errno.strerror))
|
2013-09-20 02:27:06 +02:00
|
|
|
exit(1)
|
2013-09-16 04:07:34 +02:00
|
|
|
|
|
|
|
def list(self):
|
|
|
|
"""Lists the cheatsheets that are currently available"""
|
|
|
|
max_command = max([len(x) for x in self.sheets.keys()]) + 3
|
|
|
|
return ('\n'.join(sorted(['%s [%s]' % (key.ljust(max_command), value)
|
|
|
|
for key, value in self.sheets.items()])))
|
|
|
|
|
2013-11-07 00:34:37 +01:00
|
|
|
def __parse_cheat_command_block(self, cheat):
|
|
|
|
"""Parse text blocks inside specified sheet file"""
|
2013-11-07 00:23:54 +01:00
|
|
|
block = ""
|
2013-11-07 00:34:37 +01:00
|
|
|
path = os.path.join(self.sheets[cheat], cheat)
|
2013-11-07 11:23:51 +01:00
|
|
|
with open(path) as cheat_fp:
|
|
|
|
for line in cheat_fp.readlines():
|
2013-11-07 00:34:37 +01:00
|
|
|
if line == '\n':
|
2013-11-07 11:23:51 +01:00
|
|
|
if block:
|
|
|
|
yield block
|
2013-11-07 00:34:37 +01:00
|
|
|
block = ""
|
|
|
|
else:
|
|
|
|
block += line
|
2013-11-07 11:23:51 +01:00
|
|
|
if block:
|
|
|
|
yield block
|
2013-11-07 00:23:54 +01:00
|
|
|
|
2013-11-06 00:36:49 +01:00
|
|
|
def search(self, term):
|
2013-11-07 00:34:37 +01:00
|
|
|
"""Search for a term in sheetcheats"""
|
|
|
|
for cheat in self.sheets.keys():
|
|
|
|
output = ''
|
|
|
|
for block in self.__parse_cheat_command_block(cheat):
|
|
|
|
if term in block:
|
|
|
|
if not output:
|
|
|
|
output = cheat + ":\n"
|
|
|
|
output += ''.join([" " + line + '\n' for line
|
|
|
|
in block.split('\n')])
|
2013-11-07 00:41:36 +01:00
|
|
|
if output:
|
|
|
|
print output,
|
2013-11-07 00:23:54 +01:00
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 04:07:34 +02:00
|
|
|
# Custom action for argparse
|
|
|
|
class ListDirectories(argparse.Action):
|
|
|
|
"""List cheat directories and exit"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
2013-09-20 01:05:22 +02:00
|
|
|
print("\n".join(sheets.dirs))
|
2013-09-16 04:07:34 +02:00
|
|
|
parser.exit()
|
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 04:07:34 +02:00
|
|
|
class ListCheatsheets(argparse.Action):
|
|
|
|
"""List cheatsheets and exit"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
print sheets.list()
|
|
|
|
parser.exit()
|
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 04:07:34 +02:00
|
|
|
class EditSheet(argparse.Action):
|
|
|
|
"""If the user wants to edit a cheatsheet"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
sheets.edit(values[0])
|
|
|
|
parser.exit()
|
|
|
|
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-11-06 00:36:49 +01:00
|
|
|
class SearchSheet(argparse.Action):
|
|
|
|
"""If the user wants to search a term inside all cheatsheets"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
|
|
sheets.search(values[0])
|
|
|
|
parser.exit()
|
|
|
|
|
|
|
|
|
2013-09-16 04:07:34 +02:00
|
|
|
def main():
|
2013-11-07 11:23:51 +01:00
|
|
|
"""Main execution function"""
|
2013-09-16 04:07:34 +02:00
|
|
|
global sheets
|
|
|
|
sheets = CheatSheets()
|
2013-09-16 03:26:20 +02:00
|
|
|
|
|
|
|
desc = dedent('''
|
|
|
|
cheat allows you to create and view interactive cheatsheets on the
|
|
|
|
command-line. It was designed to help remind *nix system
|
|
|
|
administrators of options for commands that they use frequently,
|
|
|
|
but not frequently enough to remember.''').strip()
|
|
|
|
|
|
|
|
epi = dedent('''
|
|
|
|
Examples:
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 03:26:20 +02:00
|
|
|
To look up 'tar':
|
|
|
|
cheat tar
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 03:26:20 +02:00
|
|
|
To create or edit the cheatsheet for 'foo':
|
|
|
|
cheat -e foo
|
2013-10-11 18:32:21 +02:00
|
|
|
|
2013-09-16 03:26:20 +02:00
|
|
|
To list the directories on the CHEATPATH
|
|
|
|
cheat -d
|
|
|
|
|
|
|
|
To list the available cheatsheets:
|
|
|
|
cheat -l
|
|
|
|
''').strip()
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(prog='cheat',
|
|
|
|
description=desc, epilog=epi,
|
2013-10-11 18:32:21 +02:00
|
|
|
formatter_class=argparse.
|
|
|
|
RawDescriptionHelpFormatter)
|
2013-09-16 03:26:20 +02:00
|
|
|
parser_group = parser.add_mutually_exclusive_group()
|
|
|
|
parser_group.add_argument('sheet', metavar='cheatsheet',
|
2013-09-16 04:07:34 +02:00
|
|
|
action='store', type=str, nargs='?',
|
2013-09-16 03:26:20 +02:00
|
|
|
help='Look at <cheatseet>')
|
|
|
|
parser_group.add_argument('-e', '--edit', metavar='cheatsheet',
|
|
|
|
action=EditSheet, type=str, nargs=1,
|
|
|
|
help='Edit <cheatsheet>')
|
2013-11-06 00:36:49 +01:00
|
|
|
parser_group.add_argument('-s', '--search', metavar='term',
|
|
|
|
action=SearchSheet, type=str, nargs=1,
|
|
|
|
help='Search <term> inside all cheatsheets')
|
2013-09-16 03:26:20 +02:00
|
|
|
parser_group.add_argument('-l', '--list',
|
|
|
|
action=ListCheatsheets, nargs=0,
|
|
|
|
help='List all available cheatsheets')
|
|
|
|
parser_group.add_argument('-d', '--cheat-directories',
|
|
|
|
action=ListDirectories, nargs=0,
|
|
|
|
help='List all current cheat dirs')
|
|
|
|
args = parser.parse_args()
|
2013-09-16 04:07:34 +02:00
|
|
|
sheet = args.sheet
|
|
|
|
|
|
|
|
# Print the cheatsheet if it exists
|
|
|
|
if not sheet or sheet in ['help', 'cheat']:
|
|
|
|
parser.print_help()
|
|
|
|
elif sheet in sheets.sheets:
|
|
|
|
filename = os.path.join(sheets.sheets[sheet], sheet)
|
|
|
|
if USE_PYGMENTS:
|
|
|
|
pretty_print(filename)
|
|
|
|
else:
|
|
|
|
with open(filename) as istream:
|
2013-11-07 11:23:51 +01:00
|
|
|
for line in istream:
|
|
|
|
sys.stdout.write(line)
|
2013-09-16 04:07:34 +02:00
|
|
|
|
|
|
|
# if it does not, say so
|
|
|
|
else:
|
|
|
|
print >> sys.stderr, ('No cheatsheet found for %s.' % sheet)
|
|
|
|
exit(1)
|
|
|
|
exit()
|
2013-08-21 08:46:10 +02:00
|
|
|
|
2013-08-19 21:23:53 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|