88 lines
2.0 KiB
Python
88 lines
2.0 KiB
Python
import argparse, os, sys
|
|
from os import listdir, mkdir
|
|
from os.path import abspath, exists, expanduser, isfile, join
|
|
|
|
from dulwich.errors import NotGitRepository
|
|
from dulwich.repo import Repo
|
|
|
|
|
|
COMMITTER = 'Joy <auto-commit@example.com>'
|
|
DEFAULT_JOY_HOME = '~/.joypy'
|
|
|
|
|
|
def home_dir(path):
|
|
'''Return the absolute path of an existing directory.'''
|
|
|
|
fullpath = expanduser(path) if path.startswith('~') else abspath(path)
|
|
|
|
if not exists(fullpath):
|
|
if path == DEFAULT_JOY_HOME:
|
|
print 'Creating JOY_HOME', repr(fullpath)
|
|
mkdir(fullpath, 0700)
|
|
else:
|
|
print >> sys.stderr, repr(fullpath), "doesn't exist."
|
|
raise ValueError(path)
|
|
|
|
return fullpath
|
|
|
|
|
|
def init_home(fullpath):
|
|
'''
|
|
Open or create the Repo.
|
|
If there are contents in the dir but it's not a git repo, quit.
|
|
'''
|
|
try:
|
|
repo = Repo(fullpath)
|
|
except NotGitRepository:
|
|
print >> sys.stderr, repr(fullpath), "no repository"
|
|
|
|
if listdir(fullpath):
|
|
print >> sys.stderr, repr(fullpath), "has contents\nQUIT."
|
|
sys.exit(2)
|
|
|
|
print 'Initializing repository in', fullpath
|
|
repo = init_repo(fullpath)
|
|
|
|
print 'Using repository in', fullpath
|
|
return repo
|
|
|
|
|
|
def init_repo(repo_dir):
|
|
'''
|
|
Create a repo, load the initial content, and make the first commit.
|
|
Return the Repo object.
|
|
'''
|
|
repo = Repo.init(repo_dir)
|
|
import joy.gui.init_joy_home
|
|
joy.gui.init_joy_home.initialize(repo_dir)
|
|
repo.stage([fn for fn in listdir(repo_dir) if isfile(join(repo_dir, fn))])
|
|
repo.do_commit('Initial commit.', committer=COMMITTER)
|
|
return repo
|
|
|
|
|
|
argparser = argparse.ArgumentParser(
|
|
description='Experimental Brutalist UI for Joy.',
|
|
)
|
|
|
|
|
|
argparser.add_argument(
|
|
'-j', '--joy-home',
|
|
help='Use a directory other than %s as JOY_HOME' % DEFAULT_JOY_HOME,
|
|
default=DEFAULT_JOY_HOME,
|
|
dest='joy_home',
|
|
type=home_dir,
|
|
)
|
|
|
|
|
|
class FileFaker(object):
|
|
|
|
def __init__(self, T):
|
|
self.T = T
|
|
|
|
def write(self, text):
|
|
self.T.insert('end', text)
|
|
self.T.see('end')
|
|
|
|
def flush(self):
|
|
pass
|