summaryrefslogtreecommitdiff
path: root/jt
blob: 48bbaf6f102164613a0fbc3726aa548778111b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
#!/usr/bin/python
# Copyright 2010-2014  Lars Wirzenius
# 
# 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/>.


import cliapp
import optparse
import os
import re
import shutil
import string
import subprocess
import sys
import tempfile
import time
import traceback


__version__ = '0.3'


template = '''\
[[!meta title="%(title)s"]]
[[!tag ]]
[[!meta date="%(date)s"]]

%(topiclink)s

'''


class DraftsDirectory(object):

    def __init__(self, dirname):
        self.dirname = dirname

    def create_if_missing(self):
        if not os.path.exists(self.dirname):
            os.mkdir(self.dirname)

    def get_draft_pathname(self, draft_id):
        return os.path.join(self.dirname, '%s.mdwn' % draft_id)

    def get_draft_attachments_dirname(self, draft_id):
        return os.path.join(self.dirname, '%s' % draft_id)

    def create_draft(self, content):
        draft_id = self._pick_available_draft_id()
        pathname = self.get_draft_pathname(draft_id)
        with open(pathname, 'w') as f:
            f.write(content)
        return draft_id

    def _pick_available_draft_id(self):
        for i in range(1000):
            pathname = self.get_draft_pathname(i)
            if not os.path.exists(pathname):
                return i
        else:
            raise cliapp.AppException('ERROR: too many existing drafts')

    def get_drafts(self):
        for basename in os.listdir(self.dirname):
            # .# is what Emacs autosave files start with.
            if basename.endswith('.mdwn') and not basename.startswith('.#'):
                yield basename[:-len('.mdwn')], os.path.join(self.dirname, basename)

    def remove_draft(self, draft_id):
        filename = self.get_draft_pathname(draft_id)
        os.remove(filename)

        dirname = self.get_draft_attachments_dirname(draft_id)
        if os.path.exists(dirname):
            shutil.rmtree(dirname)

    def get_draft_title(self, draft_id):
        pathname = self.get_draft_pathname(draft_id)
        with open(pathname) as f:
            for line in f:
                m = re.match(
                    '\[\[!meta title="(?P<title>.*)("\]\])$',
                    line)
                if m:
                    title = m.group('title')
                    break
            else:
                title = None
            return title
        return ''


class Command(object):

    def __init__(self, app):
        self._app = app

    def run(self, args):
        raise NotImplementedError()


class NewCommand(Command):

    def run(self, args):
        if not args:
            raise cliapp.AppException('Usage: journal-note new TITLE')

        self._app.settings.require('source')
        topic = self._app.settings['topic']

        values = {
            'title': args[0],
            'date': time.strftime('%Y-%m-%d %H:%M'),
            'topiclink': self._get_topic_link(topic),
        }

        drafts_dir = DraftsDirectory(self._app.drafts_dir())
        drafts_dir.create_if_missing()
        draft_id = drafts_dir.create_draft(template % values)
        self._app.edit_file(drafts_dir.get_draft_pathname(draft_id))

    def _get_topic_link(self, topic):
        if topic:
            return 'Part of [[%s]]' % topic
        else:
            return ''


class ListCommand(Command):

    def run(self, args):
        drafts_dir = DraftsDirectory(self._app.drafts_dir())
        for draft_id, filename in drafts_dir.get_drafts():
            print draft_id, drafts_dir.get_draft_title(draft_id)


class EditCommand(Command):

    def run(self, args):
        if len(args) > 1:
            raise cliapp.AppException('Must be given at most one draft ID')
        drafts_dir = DraftsDirectory(self._app.drafts_dir())
        draft_id, pathname = self._app.choose_draft(drafts_dir, args)
        self._app.edit_file(pathname)


class AttachCommand(Command):

    def run(self, args):
        if len(args) < 2:
            raise cliapp.AppException('Usage: journal-note attach ID file...')

        drafts_dir = DraftsDirectory(self._app.draft_dir())
        dirname = drafts_dir.get_draft_attachments_dirname(args[0])
        if not os.path.exists(dirname):
            os.mkdir(dirname)
        for filename in args[1:]:
            shutil.copy(filename, dirname)


class RemoveCommand(Command):

    def run(self, args):
        if not args:
            raise cliapp.AppException('Usage: journal-note remove ID')
        drafts_dir = DraftsDirectory(self._app.drafts_dir())
        drafts_dir.remove_draft(args[0])


class FinishCommand(Command):

    def run(self, args):
        drafts_dir = DraftsDirectory(self._app.drafts_dir())

        draft_id, draft_mdwn = self._app.choose_draft(drafts_dir, args)
        draft_attch = drafts_dir.get_draft_attachments_dirname(draft_id)

        title = drafts_dir.get_draft_title(draft_id)
        if not title:
            raise Exception("%s has no title" % draft_mdwn)

        pub_attch = os.path.join(
            self._published_dir(),
            self._summarise_title(title))
        pub_mdwn = pub_attch + '.mdwn'

        if os.path.exists(pub_mdwn):
            raise cliapp.AppException('%s already exists' % pub_mdwn)

        self._publish_draft(draft_mdwn, draft_attch, pub_mdwn, pub_attch)

        if self._app.settings['git']:
            if os.path.exists(pub_attch):
                self.commit_to_git([pub_mdwn, pub_attch])
            else:
                self.commit_to_git([pub_mdwn])
            if self._app.settings['push']:
                self.push_git()

    def _published_dir(self):
        subdir = time.strftime('notes/%Y/%m/%d')
        return os.path.join(self._app.settings['source'], subdir)

    def _summarise_title(self, title):
        basename = ''
        acceptable = set(string.ascii_letters + string.digits + '-_')
        for c in title.lower():
            if c in acceptable:
                basename += c
            elif not basename.endswith('_'):
                basename += '_'
        return basename

    def _publish_draft(self, draft_mdwn, draft_attch, pub_mdwn, pub_attch):
        parent_dir = os.path.dirname(pub_mdwn)
        if not os.path.exists(parent_dir):
            os.makedirs(parent_dir)
        os.rename(draft_mdwn, pub_mdwn)
        if os.path.exists(draft_attch):
            os.rename(draft_attch, pub_attch)

    def _commit_to_git(self, pathnames):
        cliapp.runcmd(
            ['git', 'add'] + pathname,
            cwd=self._app.settings['source'])

        cliapp.runcmd(
            ['git', 'commit', '-m', 'Publish log entry'],
            cwd=self._app.settings['source'])

    def _push_git(self):
        cliapp.runcmd(
            ['git', 'push', 'origin', 'HEAD'],
            cwd=self._app.settings['source'])


class NewTopicCommand(Command):

    def run(self, args):
        if len(args) != 2:
            raise cliapp.AppException(
                'Must be given two args (page path, title) (%r)' % args)

        pathname = self._topic_pathname(args[0])
        self._create_topic_page(pathname, args[1])
        self._app.edit_file(pathname)

    def _topic_pathname(self, page_path):
        return os.path.join(self._app.settings['source'], page_path + '.mdwn')

    def _create_topic_page(self, pathname, title):
        dirname = os.path.dirname(pathname)
        if not os.path.exists(dirname):
            os.makedirs(dirname)

        with open(pathname, 'w') as f:
            f.write('''\
[[!meta title="%(title)s"]]
[[!inline pages="link(.)" archive=yes reverse=yes trail=yes]]
''' % {
                    'title': title,
})


class NewPersonCommand(Command):

    def run(self, args):
        if len(args) != 1:
            raise cliapp.AppException(
                'Need the name of a person (in Last, First form)')

        def normalise(name):
            s = name.lower()
            s = ' '.join(s.split(','))
            s = '.'.join(s.split())
            return s

        name = args[0]
        basename = normalise(name)
        pathname = os.path.join(
            self._app.settings['source'], 'people', basename + '.mdwn')

        if os.path.exists(pathname):
            raise cliapp.AppException('File %s already exists' % pathname)

        with open(pathname, 'w') as f:
            f.write('''\
[[!meta title="%(name)s"]]

[[!inline archive=yes pages="link(.)"]]
''' %
                    {
                    'name': name,
                    'basename': basename,
                    })


class JournalTool(cliapp.Application):

    cmd_synopsis = {
        'attach': 'DRAFT-ID [FILE]...',
        'edit': '[DRAFT-ID]',
        'finish': '[DRAFT-ID]',
        'list': '',
        'new': 'TITLE',
        'remove': 'DRAFT-ID',
        }

    def add_settings(self):
        self.settings.string(
            ['source'],
            'use journal source tree in DIR',
            metavar='DIR')

        self.settings.boolean(
            ['git'],
            'add entries to git automatically',
            default=True)

        self.settings.string(
            ['editor'],
            'editor to launch for journal entries. Must include %s to '
            'indicate where the filename goes',
            default='sensible-editor %s')

        self.settings.boolean(
            ['push'],
            'push finished articles with git?')

        self.settings.string(
            ['topic'],
            'new entry belongs to TOPIC',
            metavar='TOPIC')

        self.settings.string(
            ['pretend-time'],
            'pretend that the time is NOW (form: YYYY-MM-DD HH:MM:DD form)',
            metavar='NOW')

    def cmd_new(self, args):
        '''Create a new journal entry draft.'''
        NewCommand(self).run(args)

    def cmd_list(self, args):
        '''List journal entry drafts.'''
        ListCommand(self).run(args)

    def cmd_edit(self, args):
        '''Edit a draft journal entry.'''
        EditCommand(self).run(args)

    def cmd_attach(self, args):
        '''Attach files to a journal entry draft.'''
        AttachCommand(self).run(args)

    def cmd_remove(self, args):
        '''Remove a draft.'''
        RemoveCommand(self).run(args)

    def cmd_finish(self, args):
        '''Publish a draft journal entry.'''
        FinishCommand(self).run(args)

    def cmd_new_topic(self, args):
        '''Create a new topic page.'''
        NewTopicCommand(self).run(args)

    def cmd_new_person(self, args):
        '''Create a page to list all notes referring to a person.

        This is probably only useful to Lars's personal journal.

        '''

        NewPersonCommand(self).run(args)

    def drafts_dir(self):
        return os.path.join(self.settings['source'], 'drafts')

    def edit_file(self, pathname):
        safe_pathname = cliapp.shell_quote(pathname)
        cmdline = ['sh', '-c', self.settings['editor'] % pathname]
        self.runcmd(cmdline, stdin=None, stdout=None, stderr=None)

    def choose_draft(self, drafts_dir, args):
        if len(args) == 0:
            drafts = list(drafts_dir.get_drafts())
            if len(drafts) == 1:
                draft_id, filename = drafts[0]
                return draft_id, filename
            elif len(drafts) == 0:
                raise cliapp.AppException('No drafts to choose from')
            else:
                raise cliapp.AppException('Cannot choose entry draft automatically')
        elif len(args) == 1:
            pathname = drafts_dir.get_draft_pathname(args[0])
            if not os.path.exists(pathname):
                raise cliapp.AppException('draft %s does not exist' % args[0])
            return args[0], pathname
        elif len(args) > 1:
            raise cliapp.AppException('Must give at most one draft number')


JournalTool(version=__version__).run()