|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
## Personal Issue Tracker CLI interface
|
|
|
|
|
## ====================================
|
|
|
|
|
|
|
|
|
|
import algorithm, cliutils, docopt, json, logging, options, os, sequtils,
|
|
|
|
|
std/wordwrap, tables, terminal, times, timeutils, unicode, uuids
|
|
|
|
|
import algorithm, cliutils, data_uri, docopt, json, logging, options, os,
|
|
|
|
|
sequtils, std/wordwrap, tables, terminal, times, timeutils, unicode, uuids
|
|
|
|
|
|
|
|
|
|
from nre import re
|
|
|
|
|
import strutils except alignLeft, capitalize, strip, toUpper, toLower
|
|
|
|
@ -70,6 +70,8 @@ proc formatIssue(ctx: CliContext, issue: Issue): string =
|
|
|
|
|
if not issue.details.isEmptyOrWhitespace:
|
|
|
|
|
result &= issue.details.strip.withColor(fgCyan) & "\n"
|
|
|
|
|
|
|
|
|
|
result &= termReset
|
|
|
|
|
|
|
|
|
|
proc formatSectionIssue(ctx: CliContext, issue: Issue, width: int, indent = "",
|
|
|
|
|
verbose = false): string =
|
|
|
|
|
|
|
|
|
@ -194,18 +196,23 @@ proc edit(issue: Issue) =
|
|
|
|
|
getCurrentExceptionMsg()
|
|
|
|
|
issue.store()
|
|
|
|
|
|
|
|
|
|
proc list(ctx: CliContext, filter: Option[IssueFilter], state: Option[IssueState], showToday, showFuture, verbose: bool) =
|
|
|
|
|
proc list(ctx: CliContext, filter: Option[IssueFilter], states: Option[seq[IssueState]], showToday, showFuture, verbose: bool) =
|
|
|
|
|
|
|
|
|
|
if state.isSome:
|
|
|
|
|
ctx.loadIssues(state.get)
|
|
|
|
|
if filter.isSome: ctx.filterIssues(filter.get)
|
|
|
|
|
stdout.write ctx.formatSection(ctx.issues[state.get], state.get, "", verbose)
|
|
|
|
|
if states.isSome:
|
|
|
|
|
for state in states.get:
|
|
|
|
|
ctx.loadIssues(state)
|
|
|
|
|
if filter.isSome: ctx.filterIssues(filter.get)
|
|
|
|
|
if state == Done and showToday:
|
|
|
|
|
ctx.issues[Done] = ctx.issues[Done].filterIt(
|
|
|
|
|
it.hasProp("completed") and
|
|
|
|
|
sameDay(getTime().local, it.getDateTime("completed")))
|
|
|
|
|
stdout.write ctx.formatSection(ctx.issues[state], state, "", verbose)
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
ctx.loadAllIssues()
|
|
|
|
|
if filter.isSome: ctx.filterIssues(filter.get)
|
|
|
|
|
|
|
|
|
|
let today = showToday and [Current, TodoToday].anyIt(
|
|
|
|
|
let today = showToday and [Current, TodoToday, Pending].anyIt(
|
|
|
|
|
ctx.issues.hasKey(it) and ctx.issues[it].len > 0)
|
|
|
|
|
|
|
|
|
|
let future = showFuture and [Pending, Todo].anyIt(
|
|
|
|
@ -217,44 +224,44 @@ proc list(ctx: CliContext, filter: Option[IssueFilter], state: Option[IssueState
|
|
|
|
|
if today:
|
|
|
|
|
if future: ctx.writeHeader("Today")
|
|
|
|
|
|
|
|
|
|
for s in [Current, TodoToday]:
|
|
|
|
|
for s in [Current, TodoToday, Pending]:
|
|
|
|
|
if ctx.issues.hasKey(s) and ctx.issues[s].len > 0:
|
|
|
|
|
stdout.write ctx.formatSection(ctx.issues[s], s, indent, verbose)
|
|
|
|
|
|
|
|
|
|
if ctx.issues.hasKey(Done):
|
|
|
|
|
let doneIssues = ctx.issues[Done].filterIt(
|
|
|
|
|
it.hasProp("completed") and
|
|
|
|
|
sameDay(getTime().local, it.getDateTime("completed")))
|
|
|
|
|
if doneIssues.len > 0:
|
|
|
|
|
stdout.write ctx.formatSection(doneIssues, Done, indent, verbose)
|
|
|
|
|
|
|
|
|
|
# Future items
|
|
|
|
|
if future:
|
|
|
|
|
if today: ctx.writeHeader("Future")
|
|
|
|
|
|
|
|
|
|
for s in [Pending, Todo]:
|
|
|
|
|
if ctx.issues.hasKey(s) and ctx.issues[s].len > 0:
|
|
|
|
|
stdout.write ctx.formatSection(ctx.issues[s], s, indent, verbose)
|
|
|
|
|
let visibleIssues = ctx.issues[s].filterIt(
|
|
|
|
|
not (it.hasProp("hide-until") and
|
|
|
|
|
it.getDateTime("hide-until") > getTime().local))
|
|
|
|
|
|
|
|
|
|
stdout.write ctx.formatSection(visibleIssues, s, indent, verbose)
|
|
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
let doc = """
|
|
|
|
|
let usage = """
|
|
|
|
|
Usage:
|
|
|
|
|
pit ( new | add) <summary> [<state>] [options]
|
|
|
|
|
pit list contexts
|
|
|
|
|
pit list [<stateOrId>] [options]
|
|
|
|
|
pit list contexts [options]
|
|
|
|
|
pit list [<stateOrId>...] [options]
|
|
|
|
|
pit ( start | done | pending | todo-today | todo | suspend ) <id>... [options]
|
|
|
|
|
pit edit <ref>...
|
|
|
|
|
pit edit <ref>... [options]
|
|
|
|
|
pit tag <id>... [options]
|
|
|
|
|
pit untag <id>... [options]
|
|
|
|
|
pit reorder <state>
|
|
|
|
|
pit reorder <state> [options]
|
|
|
|
|
pit delegate <id> <delegated-to>
|
|
|
|
|
pit ( delete | rm ) <id>...
|
|
|
|
|
pit hide-until <id> <date> [options]
|
|
|
|
|
pit ( delete | rm ) <id>... [options]
|
|
|
|
|
pit add-binary-property <id> <propName> <propSource> [options]
|
|
|
|
|
pit get-binary-property <id> <propName> <propDest> [options]
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
|
|
-h, --help Print this usage information.
|
|
|
|
|
-h, --help Print this usage and help information.
|
|
|
|
|
|
|
|
|
|
-p, --properties <props> Specify properties. Formatted as "key:val;key:val"
|
|
|
|
|
When used with the list command this option applies
|
|
|
|
@ -291,17 +298,84 @@ Options:
|
|
|
|
|
--term-width <width> Manually set the terminal width to use.
|
|
|
|
|
|
|
|
|
|
--ptk Enable PTK integration for this command.
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
let onlineHelp = """
|
|
|
|
|
Issue States
|
|
|
|
|
|
|
|
|
|
PIT organizes issues around their state, which is one of:
|
|
|
|
|
|
|
|
|
|
current - issues actively being worked
|
|
|
|
|
todo-today - issues planned for today
|
|
|
|
|
pending - issues that are blocked by some third-party
|
|
|
|
|
done - issues that have been completely resolved
|
|
|
|
|
todo - issues that need to be done in the future
|
|
|
|
|
dormant - issues that are low-priority, to be tracked, but hidden
|
|
|
|
|
by default
|
|
|
|
|
|
|
|
|
|
Issue Properties
|
|
|
|
|
|
|
|
|
|
PIT supports adding arbitrary properties to any issue to track any metadata
|
|
|
|
|
about the issue the user may wish. There are several properties that have
|
|
|
|
|
special behavior attached to them. They are:
|
|
|
|
|
|
|
|
|
|
created
|
|
|
|
|
|
|
|
|
|
If present, expected to be an ISO 8601-formatted date that represents the
|
|
|
|
|
time when the issue was created.
|
|
|
|
|
|
|
|
|
|
completed
|
|
|
|
|
|
|
|
|
|
If present, expected to be an ISO 8601-formatted date that represents the
|
|
|
|
|
time when the issue moved to the "done" state. PIT will add this
|
|
|
|
|
property automatically when you use the "done" command, and can filter on
|
|
|
|
|
this value.
|
|
|
|
|
|
|
|
|
|
context
|
|
|
|
|
|
|
|
|
|
Allows issues to be organized into contexts. The -c option is short-hand
|
|
|
|
|
for '-p context:<context-name>' and the 'list contexts' command will show
|
|
|
|
|
all values of 'context' set in existing issues.
|
|
|
|
|
|
|
|
|
|
delegated-to
|
|
|
|
|
|
|
|
|
|
When an issue now belongs to someone else, but needs to be monitored for
|
|
|
|
|
completion, this allows you to keep the issue in its current state but
|
|
|
|
|
note how it has been delegated. When present PIT will prepend this value
|
|
|
|
|
to the issue summary with an accent color.
|
|
|
|
|
|
|
|
|
|
hide-until
|
|
|
|
|
|
|
|
|
|
When present, expected to be an ISO 8601-formatted date and used to
|
|
|
|
|
supress the display of the issue until on or after the given date.
|
|
|
|
|
|
|
|
|
|
pending
|
|
|
|
|
|
|
|
|
|
When an issue is blocked by a third party, this property can be used to
|
|
|
|
|
capture details about the dependency When present PIT will display this
|
|
|
|
|
value after the issue summary.
|
|
|
|
|
|
|
|
|
|
recurrence
|
|
|
|
|
|
|
|
|
|
TODO, not yet implemented.
|
|
|
|
|
|
|
|
|
|
tags
|
|
|
|
|
|
|
|
|
|
If present, expected to be a comma-delimited list of text tags. The -g
|
|
|
|
|
option is a short-hand for '-p tags:<tags-value>'.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
logging.addHandler(newConsoleLogger())
|
|
|
|
|
|
|
|
|
|
# Parse arguments
|
|
|
|
|
let args = docopt(doc, version = PIT_VERSION)
|
|
|
|
|
let args = docopt(usage, version = PIT_VERSION)
|
|
|
|
|
|
|
|
|
|
if args["--echo-args"]: stderr.writeLine($args)
|
|
|
|
|
|
|
|
|
|
if args["--help"]:
|
|
|
|
|
stderr.writeLine(doc)
|
|
|
|
|
stderr.writeLine(usage)
|
|
|
|
|
stderr.writeLine(onlineHelp)
|
|
|
|
|
quit()
|
|
|
|
|
|
|
|
|
|
let ctx = initContext(args)
|
|
|
|
@ -422,6 +496,13 @@ Options:
|
|
|
|
|
elif targetState == Done or targetState == Pending:
|
|
|
|
|
discard execShellCmd("ptk stop")
|
|
|
|
|
|
|
|
|
|
elif args["hide-until"]:
|
|
|
|
|
|
|
|
|
|
let issue = ctx.tasksDir.loadIssueById($(args["<id>"]))
|
|
|
|
|
issue.setDateTime("hide-until", parseDate($args["<date>"]))
|
|
|
|
|
|
|
|
|
|
issue.store()
|
|
|
|
|
|
|
|
|
|
elif args["delegate"]:
|
|
|
|
|
|
|
|
|
|
let issue = ctx.tasksDir.loadIssueById($(args["<id>"]))
|
|
|
|
@ -477,13 +558,13 @@ Options:
|
|
|
|
|
filter.properties.del("context")
|
|
|
|
|
|
|
|
|
|
var listContexts = false
|
|
|
|
|
var stateOption = none(IssueState)
|
|
|
|
|
var issueIdOption = none(string)
|
|
|
|
|
var statesOption = none(seq[IssueState])
|
|
|
|
|
var issueIdsOption = none(seq[string])
|
|
|
|
|
|
|
|
|
|
if args["contexts"]: listContexts = true
|
|
|
|
|
elif args["<stateOrId>"]:
|
|
|
|
|
try: stateOption = some(parseEnum[IssueState]($args["<stateOrId>"]))
|
|
|
|
|
except: issueIdOption = some($args["<stateOrId>"])
|
|
|
|
|
try: statesOption = some(args["<stateOrId>"].mapIt(parseEnum[IssueState]($it)))
|
|
|
|
|
except: issueIdsOption = some(args["<stateOrId>"].mapIt($it))
|
|
|
|
|
|
|
|
|
|
# List the known contexts
|
|
|
|
|
if listContexts:
|
|
|
|
@ -503,17 +584,45 @@ Options:
|
|
|
|
|
stdout.writeLine(c.alignLeft(maxLen+2) & ctx.getIssueContextDisplayName(c))
|
|
|
|
|
|
|
|
|
|
# List a specific issue
|
|
|
|
|
elif issueIdOption.isSome:
|
|
|
|
|
let issue = ctx.tasksDir.loadIssueById(issueIdOption.get)
|
|
|
|
|
stdout.writeLine ctx.formatIssue(issue)
|
|
|
|
|
elif issueIdsOption.isSome:
|
|
|
|
|
for issueId in issueIdsOption.get:
|
|
|
|
|
let issue = ctx.tasksDir.loadIssueById(issueId)
|
|
|
|
|
stdout.writeLine ctx.formatIssue(issue)
|
|
|
|
|
|
|
|
|
|
# List all issues
|
|
|
|
|
else:
|
|
|
|
|
let showBoth = args["--today"] == args["--future"]
|
|
|
|
|
ctx.list(filterOption, stateOption, showBoth or args["--today"],
|
|
|
|
|
ctx.list(filterOption, statesOption, showBoth or args["--today"],
|
|
|
|
|
showBoth or args["--future"],
|
|
|
|
|
ctx.verbose)
|
|
|
|
|
|
|
|
|
|
elif args["add-binary-property"]:
|
|
|
|
|
let issue = ctx.tasksDir.loadIssueById($(args["<id>"]))
|
|
|
|
|
|
|
|
|
|
let propIn =
|
|
|
|
|
if $(args["<propSource>"]) == "-": stdin
|
|
|
|
|
else: open($(args["<propSource>"]))
|
|
|
|
|
|
|
|
|
|
try: issue[$(args["<propName>"])] = encodeAsDataUri(readAll(propIn))
|
|
|
|
|
finally: close(propIn)
|
|
|
|
|
|
|
|
|
|
issue.store()
|
|
|
|
|
|
|
|
|
|
elif args["get-binary-property"]:
|
|
|
|
|
let issue = ctx.tasksDir.loadIssueById($(args["<id>"]))
|
|
|
|
|
|
|
|
|
|
if not issue.hasProp($(args["<propName>"])):
|
|
|
|
|
raise newException(Exception,
|
|
|
|
|
"issue " & ($issue.id)[0..<6] & " has no property name '" &
|
|
|
|
|
$(args["<propName>"]) & "'")
|
|
|
|
|
|
|
|
|
|
let propOut =
|
|
|
|
|
if $(args["<propDest>"]) == "-": stdout
|
|
|
|
|
else: open($(args["<propDest>"]), fmWrite)
|
|
|
|
|
|
|
|
|
|
try: write(propOut, decodeDataUri(issue[$(args["<propName>"])]))
|
|
|
|
|
finally: close(propOut)
|
|
|
|
|
|
|
|
|
|
except:
|
|
|
|
|
fatal "pit: " & getCurrentExceptionMsg()
|
|
|
|
|
#raise getCurrentException()
|
|
|
|
|