Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
f95dc91707 | |||
2c8180d9b2 | |||
12f87afe63 | |||
3496e21af5 | |||
40906eebf8 | |||
acaf58f456 | |||
5ac69157dc | |||
b4e01b6098 | |||
415c0e622f | |||
a9ba9d94f8 |
10
build.xml
10
build.xml
@ -8,6 +8,16 @@
|
|||||||
<mkdir dir="${build.dir}/main/classes"/>
|
<mkdir dir="${build.dir}/main/classes"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="jlp-docs">
|
||||||
|
<exec executable="jlp">
|
||||||
|
<arg value="--no-source"/>
|
||||||
|
<arg value="--output-dir"/>
|
||||||
|
<arg value="doc"/>
|
||||||
|
<arg value="src"/>
|
||||||
|
<arg value="README.md"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="ng-deploy" depends="build">
|
<target name="ng-deploy" depends="build">
|
||||||
<!-- Stop the Nailgun Server -->
|
<!-- Stop the Nailgun Server -->
|
||||||
<exec executable="cmd" os="Windows XP">
|
<exec executable="cmd" os="Windows XP">
|
||||||
|
Binary file not shown.
BIN
lib/compile/jar/jdb-util-3.2.jar
Normal file
BIN
lib/compile/jar/jdb-util-3.2.jar
Normal file
Binary file not shown.
BIN
lib/compile/jar/logback-classic-0.9.26.jar
Normal file
BIN
lib/compile/jar/logback-classic-0.9.26.jar
Normal file
Binary file not shown.
BIN
lib/compile/jar/logback-core-0.9.26.jar
Normal file
BIN
lib/compile/jar/logback-core-0.9.26.jar
Normal file
Binary file not shown.
0
lib/compile/jar/logback.groovy
Normal file
0
lib/compile/jar/logback.groovy
Normal file
Binary file not shown.
BIN
lib/runtime/jar/jdb-util-3.2.jar
Normal file
BIN
lib/runtime/jar/jdb-util-3.2.jar
Normal file
Binary file not shown.
0
lib/runtime/jar/logback.groovy
Normal file
0
lib/runtime/jar/logback.groovy
Normal file
@ -1,8 +1,8 @@
|
|||||||
#Mon, 21 Oct 2013 14:00:48 +0000
|
#Mon, 01 Dec 2014 12:03:37 -0600
|
||||||
lib.local=true
|
lib.local=true
|
||||||
name=jdb-gtd
|
name=jdb-gtd
|
||||||
version=1.4
|
version=1.11
|
||||||
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
|
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
|
||||||
executable.jar=true
|
executable.jar=true
|
||||||
main.class=com.jdblabs.gtd.cli.GTDCLI
|
main.class=com.jdblabs.gtd.cli.GTDCLI
|
||||||
build.number=1
|
build.number=10
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<init-param>
|
<init-param>
|
||||||
<param-name>gtdRootDir</param-name>
|
<param-name>gtdRootDir</param-name>
|
||||||
<param-value>/home/jdbernard/Dropbox/gtd</param-value>
|
<param-value>/home/jdbernard/gtd</param-value>
|
||||||
</init-param>
|
</init-param>
|
||||||
</servlet>
|
</servlet>
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ package com.jdblabs.gtd
|
|||||||
* calendar to "schedule" items, but only to represent items which must be
|
* calendar to "schedule" items, but only to represent items which must be
|
||||||
* done by or on that day.
|
* done by or on that day.
|
||||||
* * `details`: more information related to this item.
|
* * `details`: more information related to this item.
|
||||||
|
* * `project`: the name of the project with which this item is associated.
|
||||||
* @org gtd.jdb-labs.com/Item
|
* @org gtd.jdb-labs.com/Item
|
||||||
*/
|
*/
|
||||||
public class Item {
|
public class Item {
|
||||||
|
@ -104,7 +104,7 @@ public class Util {
|
|||||||
def gtdDirs = [:]
|
def gtdDirs = [:]
|
||||||
|
|
||||||
/// Start by considering the current directory as a candidate.
|
/// Start by considering the current directory as a candidate.
|
||||||
File currentDir = givenDir
|
File currentDir = givenDir.canonicalFile
|
||||||
while (currentDir != null) {
|
while (currentDir != null) {
|
||||||
/// We recognize the GTD root directory when it contains all of the
|
/// We recognize the GTD root directory when it contains all of the
|
||||||
/// GTD top-level directories.
|
/// GTD top-level directories.
|
||||||
|
@ -5,17 +5,29 @@
|
|||||||
*/
|
*/
|
||||||
package com.jdblabs.gtd.cli
|
package com.jdblabs.gtd.cli
|
||||||
|
|
||||||
|
import ch.qos.logback.classic.Level
|
||||||
|
import ch.qos.logback.classic.Logger
|
||||||
|
import ch.qos.logback.classic.LoggerContext
|
||||||
|
import ch.qos.logback.classic.encoder.PatternLayoutEncoder
|
||||||
|
import ch.qos.logback.classic.filter.LevelFilter
|
||||||
|
import ch.qos.logback.classic.filter.ThresholdFilter
|
||||||
|
import ch.qos.logback.core.OutputStreamAppender
|
||||||
|
import ch.qos.logback.core.spi.FilterReply
|
||||||
import com.jdblabs.gtd.Item
|
import com.jdblabs.gtd.Item
|
||||||
import com.jdblabs.gtd.PropertyHelp
|
import com.jdblabs.gtd.PropertyHelp
|
||||||
import com.jdbernard.util.LightOptionParser
|
import com.jdbernard.util.LightOptionParser
|
||||||
import com.martiansoftware.nailgun.NGContext
|
import com.martiansoftware.nailgun.NGContext
|
||||||
|
import java.io.FileFilter
|
||||||
|
import java.nio.file.Files
|
||||||
|
import java.nio.file.Path
|
||||||
import java.security.MessageDigest
|
import java.security.MessageDigest
|
||||||
import org.joda.time.DateMidnight
|
import org.joda.time.DateMidnight
|
||||||
import org.joda.time.DateTime
|
import org.joda.time.DateTime
|
||||||
//import org.slf4j.Logger
|
import org.slf4j.Logger as SFL4JLogger
|
||||||
//import org.slf4j.LoggerFactory
|
import org.slf4j.LoggerFactory
|
||||||
|
|
||||||
import static com.jdblabs.gtd.Util.*
|
import static com.jdblabs.gtd.Util.*
|
||||||
|
import static java.nio.file.StandardCopyOption.*
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Command-line helper for working with this implementation of the Getting
|
* Command-line helper for working with this implementation of the Getting
|
||||||
@ -23,7 +35,7 @@ import static com.jdblabs.gtd.Util.*
|
|||||||
* @org gtd.jdb-labs.com/cli/GTDCLI */
|
* @org gtd.jdb-labs.com/cli/GTDCLI */
|
||||||
public class GTDCLI {
|
public class GTDCLI {
|
||||||
|
|
||||||
public static final String VERSION = "1.3"
|
public static final String VERSION = "1.9"
|
||||||
private static String EOL = System.getProperty("line.separator")
|
private static String EOL = System.getProperty("line.separator")
|
||||||
|
|
||||||
/// We have a persistent instance when we are in the context of a Nailgun
|
/// We have a persistent instance when we are in the context of a Nailgun
|
||||||
@ -41,7 +53,21 @@ public class GTDCLI {
|
|||||||
/// [root-map]: jlp://gtd.jdb-labs.com/notes/root-directory-map
|
/// [root-map]: jlp://gtd.jdb-labs.com/notes/root-directory-map
|
||||||
private Map<String, File> gtdDirs
|
private Map<String, File> gtdDirs
|
||||||
|
|
||||||
//private Logger log = LoggerFactory.getLogger(getClass())
|
/// Logging objects
|
||||||
|
private Logger log
|
||||||
|
private OutputStreamAppender otherAppender
|
||||||
|
private OutputStreamAppender infoAppender
|
||||||
|
private ThresholdFilter thresholdFilter
|
||||||
|
private LevelFilter rejectInfo
|
||||||
|
private String loggingThreshold
|
||||||
|
|
||||||
|
public void setLoggingThreshold(String level) {
|
||||||
|
if (thresholdFilter) {
|
||||||
|
System.out.println "Changing logging level to $level"
|
||||||
|
thresholdFilter.stop()
|
||||||
|
thresholdFilter.level = level
|
||||||
|
thresholdFilter.start() }
|
||||||
|
this.loggingThreshold = level }
|
||||||
|
|
||||||
/** #### `main`
|
/** #### `main`
|
||||||
* Main entry point for a normal GTD CLI process. */
|
* Main entry point for a normal GTD CLI process. */
|
||||||
@ -54,16 +80,18 @@ public class GTDCLI {
|
|||||||
/// Actual processing is done by the
|
/// Actual processing is done by the
|
||||||
/// [`run`](jlp://gtd.jdb-labs.com/cli/GTDCLI/run) method
|
/// [`run`](jlp://gtd.jdb-labs.com/cli/GTDCLI/run) method
|
||||||
if (args.length > 0) args[-1] = args[-1].trim()
|
if (args.length > 0) args[-1] = args[-1].trim()
|
||||||
|
|
||||||
inst.run(args) }
|
inst.run(args) }
|
||||||
|
|
||||||
/** #### `nailMain`
|
/** #### `nailMain`
|
||||||
* Entry point for a GTD CLI process under [Nailgun][ng].
|
* Entry point for a GTD CLI process under [Nailgun][ng].
|
||||||
* [ng]: http://www.martiansoftware.com/nailgun/ */
|
* [ng]: http://www.martiansoftware.com/nailgun/ */
|
||||||
public static void nailMain(NGContext context) {
|
public static void nailMain(NGContext context) {
|
||||||
if (nailgunInst == null)
|
|
||||||
|
if (nailgunInst == null) {
|
||||||
nailgunInst = new GTDCLI(new File(
|
nailgunInst = new GTDCLI(new File(
|
||||||
System.getProperty("user.home"), ".gtdclirc"))
|
System.getProperty("user.home"), ".gtdclirc")) }
|
||||||
else nailgunInst.stdin = new Scanner(context.in)
|
else { nailgunInst.stdin = new Scanner(context.in) }
|
||||||
|
|
||||||
/// Trim the last argument; not all cli's are well-behaved
|
/// Trim the last argument; not all cli's are well-behaved
|
||||||
if (context.args.length > 0) context.args[-1] = context.args[-1].trim()
|
if (context.args.length > 0) context.args[-1] = context.args[-1].trim()
|
||||||
@ -74,6 +102,7 @@ public class GTDCLI {
|
|||||||
* This method reloads the configuration before invoking the run function,
|
* This method reloads the configuration before invoking the run function,
|
||||||
* allowing a long-lived instance to react to configuration changes. */
|
* allowing a long-lived instance to react to configuration changes. */
|
||||||
public static void reconfigure(String[] args) {
|
public static void reconfigure(String[] args) {
|
||||||
|
|
||||||
/// If we do not have a long-running Nailgun instance we just call
|
/// If we do not have a long-running Nailgun instance we just call
|
||||||
/// main.
|
/// main.
|
||||||
if (nailgunInst == null) main(args)
|
if (nailgunInst == null) main(args)
|
||||||
@ -82,7 +111,7 @@ public class GTDCLI {
|
|||||||
/// read afresh the configuration file.
|
/// read afresh the configuration file.
|
||||||
nailgunInst = null
|
nailgunInst = null
|
||||||
nailgunInst = new GTDCLI(new File(
|
nailgunInst = new GTDCLI(new File(
|
||||||
System.getProperty("user.home"), ".gritterrc"))
|
System.getProperty("user.home"), ".gtdclirc"))
|
||||||
|
|
||||||
nailgunInst.run(args) } }
|
nailgunInst.run(args) } }
|
||||||
|
|
||||||
@ -95,6 +124,55 @@ public class GTDCLI {
|
|||||||
if (configFile.exists())
|
if (configFile.exists())
|
||||||
config = new ConfigSlurper().parse(configFile.toURL())
|
config = new ConfigSlurper().parse(configFile.toURL())
|
||||||
|
|
||||||
|
/// Setup logging
|
||||||
|
LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory()
|
||||||
|
lc.reset()
|
||||||
|
|
||||||
|
thresholdFilter = new ThresholdFilter()
|
||||||
|
loggingThreshold = config.defaultLoggingLevel ?: 'INFO'
|
||||||
|
thresholdFilter.level = loggingThreshold
|
||||||
|
|
||||||
|
infoAppender = new OutputStreamAppender()
|
||||||
|
otherAppender = new OutputStreamAppender()
|
||||||
|
PatternLayoutEncoder infoLayout = new PatternLayoutEncoder()
|
||||||
|
PatternLayoutEncoder otherLayout = new PatternLayoutEncoder()
|
||||||
|
LevelFilter acceptInfo = new LevelFilter()
|
||||||
|
rejectInfo = new LevelFilter()
|
||||||
|
|
||||||
|
[infoAppender, otherAppender, infoLayout, otherLayout, acceptInfo,
|
||||||
|
rejectInfo].each { it.context = lc }
|
||||||
|
|
||||||
|
// Setup filter and layout for INFO appender
|
||||||
|
infoLayout.context = lc
|
||||||
|
infoLayout.pattern = '%msg'
|
||||||
|
infoLayout.start()
|
||||||
|
acceptInfo.level = Level.INFO
|
||||||
|
acceptInfo.onMatch = FilterReply.ACCEPT
|
||||||
|
acceptInfo.onMismatch = FilterReply.DENY
|
||||||
|
acceptInfo.start()
|
||||||
|
infoAppender.encoder = infoLayout
|
||||||
|
infoAppender.outputStream = System.out
|
||||||
|
infoAppender.addFilter(acceptInfo)
|
||||||
|
infoAppender.start()
|
||||||
|
|
||||||
|
// Setup filters and layout for non-INFO appender
|
||||||
|
otherLayout.context = lc
|
||||||
|
otherLayout.pattern = '%level -- %msg%n'
|
||||||
|
otherLayout.start()
|
||||||
|
rejectInfo.level = Level.INFO
|
||||||
|
rejectInfo.onMatch = FilterReply.DENY
|
||||||
|
rejectInfo.start()
|
||||||
|
thresholdFilter.start()
|
||||||
|
otherAppender.encoder = otherLayout
|
||||||
|
otherAppender.outputStream = System.err
|
||||||
|
otherAppender.addFilter(rejectInfo)
|
||||||
|
otherAppender.addFilter(thresholdFilter)
|
||||||
|
otherAppender.start()
|
||||||
|
|
||||||
|
log = lc.getLogger(getClass())
|
||||||
|
log.addAppender(infoAppender)
|
||||||
|
log.addAppender(otherAppender)
|
||||||
|
|
||||||
/// Configure the terminal width
|
/// Configure the terminal width
|
||||||
terminalWidth = (System.getenv().COLUMNS ?: config.terminalWidth ?: 79) as int
|
terminalWidth = (System.getenv().COLUMNS ?: config.terminalWidth ?: 79) as int
|
||||||
|
|
||||||
@ -111,6 +189,8 @@ public class GTDCLI {
|
|||||||
* @org gtd.jdb-labs.com/cli/GTDCLI/run */
|
* @org gtd.jdb-labs.com/cli/GTDCLI/run */
|
||||||
protected void run(String[] args) {
|
protected void run(String[] args) {
|
||||||
|
|
||||||
|
log.debug("Args: $args")
|
||||||
|
|
||||||
/// Simple CLI options:
|
/// Simple CLI options:
|
||||||
def cliDefinition = [
|
def cliDefinition = [
|
||||||
/// -h, --help
|
/// -h, --help
|
||||||
@ -127,7 +207,7 @@ public class GTDCLI {
|
|||||||
|
|
||||||
if (opts.h) { printUsage(null); return }
|
if (opts.h) { printUsage(null); return }
|
||||||
if (opts.v) { println "GTD CLI v$VERSION"; return }
|
if (opts.v) { println "GTD CLI v$VERSION"; return }
|
||||||
if (opts.d) workingDir = new File(opts.d)
|
if (opts.d) workingDir = new File(opts.d[0])
|
||||||
|
|
||||||
/// View the arguments as a [`LinkedList`][1] so we can use [`peek`][2]
|
/// View the arguments as a [`LinkedList`][1] so we can use [`peek`][2]
|
||||||
/// and [`poll`][3].
|
/// and [`poll`][3].
|
||||||
@ -137,18 +217,23 @@ public class GTDCLI {
|
|||||||
/// [3]: http://docs.oracle.com/javase/6/docs/api/java/util/LinkedList.html#poll()
|
/// [3]: http://docs.oracle.com/javase/6/docs/api/java/util/LinkedList.html#poll()
|
||||||
def parsedArgs = (opts.args as List) as LinkedList
|
def parsedArgs = (opts.args as List) as LinkedList
|
||||||
|
|
||||||
|
log.debug("Parsed args: ${parsedArgs}")
|
||||||
|
|
||||||
if (parsedArgs.size() < 1) printUsage()
|
if (parsedArgs.size() < 1) printUsage()
|
||||||
|
|
||||||
/// Make sure we are in a GTD directory.
|
/// Make sure we are in a GTD directory.
|
||||||
gtdDirs = findGtdRootDir(workingDir)
|
gtdDirs = findGtdRootDir(workingDir)
|
||||||
|
log.debug("gtdDirs:$EOL\t${gtdDirs}")
|
||||||
|
|
||||||
if (!gtdDirs) {
|
if (!gtdDirs) {
|
||||||
println "fatal: '${workingDir.canonicalPath}'"
|
log.error "fatal: '${workingDir.canonicalPath}'"
|
||||||
println " is not a GTD repository (or any of the parent directories)."
|
log.error " is not a GTD repository (or any of the parent directories)."
|
||||||
return }
|
return }
|
||||||
|
|
||||||
while (parsedArgs.peek()) {
|
while (parsedArgs.peek()) {
|
||||||
/// Pull off the first argument.
|
/// Pull off the first argument.
|
||||||
def command = parsedArgs.poll()
|
def command = parsedArgs.poll()
|
||||||
|
log.trace("Processing command: ${command}")
|
||||||
|
|
||||||
/// Match the first argument and invoke the proper command method.
|
/// Match the first argument and invoke the proper command method.
|
||||||
switch (command.toLowerCase()) {
|
switch (command.toLowerCase()) {
|
||||||
@ -160,8 +245,11 @@ public class GTDCLI {
|
|||||||
case ~/new/: newAction(parsedArgs); break
|
case ~/new/: newAction(parsedArgs); break
|
||||||
case ~/tickler/: tickler(parsedArgs); break
|
case ~/tickler/: tickler(parsedArgs); break
|
||||||
case ~/ls|list/: ls(parsedArgs); break;
|
case ~/ls|list/: ls(parsedArgs); break;
|
||||||
|
case ~/debug/: debug(parsedArgs); break;
|
||||||
|
case ~/delegate/: delegateAction(parsedArgs); break;
|
||||||
|
case ~/rp|rename-project/: renameProject(parsedArgs); break;
|
||||||
default:
|
default:
|
||||||
println "Unrecognized command: ${command}"
|
log.error "Unrecognized command: ${command}"
|
||||||
break } } }
|
break } } }
|
||||||
|
|
||||||
/** #### `process`
|
/** #### `process`
|
||||||
@ -176,7 +264,7 @@ public class GTDCLI {
|
|||||||
if (path) {
|
if (path) {
|
||||||
def givenDir = new File(path)
|
def givenDir = new File(path)
|
||||||
if (!(gtdDirs = findGtdRootDir(givenDir))) {
|
if (!(gtdDirs = findGtdRootDir(givenDir))) {
|
||||||
println "'$path' is not a valid directory."; return }}
|
log.error "'$path' is not a valid directory."; return }}
|
||||||
|
|
||||||
/// Start processing items
|
/// Start processing items
|
||||||
gtdDirs.in.listFiles().collect { new Item(it) }.each { item ->
|
gtdDirs.in.listFiles().collect { new Item(it) }.each { item ->
|
||||||
@ -267,28 +355,28 @@ public class GTDCLI {
|
|||||||
if (response =~ /del/) {
|
if (response =~ /del/) {
|
||||||
|
|
||||||
item.action = prompt([
|
item.action = prompt([
|
||||||
"Next action (who needs to do what).", ""])
|
"Next action (who needs to do what)?", ""])
|
||||||
|
|
||||||
item.file = new File(promptContext(gtdDirs.waiting),
|
item.file = new File(promptContext(gtdDirs.waiting),
|
||||||
stringToFilename(item.action)) }
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
|
|
||||||
/// Defer, move to the *next-actions* folder.
|
/// Defer, move to the *next-actions* folder.
|
||||||
else if (response =~ /def/) {
|
else if (response =~ /def/) {
|
||||||
item.action = prompt(["Next action.", ""])
|
item.action = prompt(["Next action?", ""])
|
||||||
|
|
||||||
item.file = new File(promptContext(gtdDirs["next-actions"]),
|
item.file = new File(promptContext(gtdDirs["next-actions"]),
|
||||||
stringToFilename(item.action)) }
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
/// Forget for now, move it to the *tickler* folder.
|
/// Forget for now, move it to the *tickler* folder.
|
||||||
else {
|
else {
|
||||||
item.action = prompt(["Next action.", ""])
|
item.action = prompt(["Next action?", ""])
|
||||||
item.tickle = prompt([
|
item.tickle = prompt([
|
||||||
"When do you want it to become active?",
|
"When do you want it to become active?",
|
||||||
"(YYYY-MM-DD)"])
|
"(YYYY-MM-DD)"])
|
||||||
|
|
||||||
item.file = new File(gtdDirs.tickler,
|
item.file = new File(gtdDirs.tickler,
|
||||||
stringToFilename(item.action)) }
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
item.save()
|
item.save()
|
||||||
oldFile.delete()
|
oldFile.delete()
|
||||||
@ -303,7 +391,7 @@ public class GTDCLI {
|
|||||||
if (item.project && projectDir.exists() &&
|
if (item.project && projectDir.exists() &&
|
||||||
projectDir.isDirectory()) {
|
projectDir.isDirectory()) {
|
||||||
item.file = new File(projectDir,
|
item.file = new File(projectDir,
|
||||||
stringToFilename(item.action))
|
stringToFilename(item.toString()))
|
||||||
item.save()
|
item.save()
|
||||||
println "Copied to " +
|
println "Copied to " +
|
||||||
getRelativePath(gtdDirs.root, item.file.parentFile) } } } } }
|
getRelativePath(gtdDirs.root, item.file.parentFile) } } } } }
|
||||||
@ -317,16 +405,25 @@ public class GTDCLI {
|
|||||||
*/
|
*/
|
||||||
protected void done(LinkedList args) {
|
protected void done(LinkedList args) {
|
||||||
|
|
||||||
def selectedFilePath = args.poll()
|
def selectedFilePath
|
||||||
def selectedFile = new File(selectedFilePath)
|
|
||||||
|
|
||||||
if (!selectedFile) {
|
if (!args) {
|
||||||
println "gtd done command requires a <action-file> parameter."
|
log.error "The 'gtd done' command requires an <action-file> parameter."
|
||||||
return }
|
return }
|
||||||
|
|
||||||
|
while ((selectedFilePath = args.poll())) {
|
||||||
def item
|
def item
|
||||||
if (selectedFile.isAbsolute()) item = new Item(selectedFile)
|
def selectedFile = new File(selectedFilePath)
|
||||||
else item = new Item(new File(workingDir, selectedFilePath))
|
|
||||||
|
if (!selectedFile.isAbsolute())
|
||||||
|
selectedFile = new File(workingDir, selectedFilePath)
|
||||||
|
|
||||||
|
if (!selectedFile.exists() || !selectedFile.isFile()) {
|
||||||
|
log.error "File does not exist or is a directory:"
|
||||||
|
log.error "\t" + selectedFile.canonicalPath
|
||||||
|
continue }
|
||||||
|
|
||||||
|
item = new Item(selectedFile)
|
||||||
|
|
||||||
/// Move to the done folder.
|
/// Move to the done folder.
|
||||||
def oldFile = item.file
|
def oldFile = item.file
|
||||||
@ -338,16 +435,16 @@ public class GTDCLI {
|
|||||||
if (inPath(gtdDirs.projects, oldFile)) {
|
if (inPath(gtdDirs.projects, oldFile)) {
|
||||||
|
|
||||||
/// Delete any copies of this item from the next actions folder.
|
/// Delete any copies of this item from the next actions folder.
|
||||||
findAllCopies(oldFile, gtdDirs."next-actions").each { file ->
|
findAllCopies(oldFile, gtdDirs["next-actions"]).each { file ->
|
||||||
println "Deleting duplicate entry from the " +
|
println "Deleting duplicate entry from the " +
|
||||||
"${file.parentFile.name} context."
|
"${file.parentFile.name} context."
|
||||||
file.delete() }
|
if (file.exists()) file.delete() }
|
||||||
|
|
||||||
/// Delete any copies of this item from the waiting folder.
|
/// Delete any copies of this item from the waiting folder.
|
||||||
findAllCopies(oldFile, gtdDirs.waiting).each { file ->
|
findAllCopies(oldFile, gtdDirs.waiting).each { file ->
|
||||||
println "Deleting duplicate entry from the " +
|
println "Deleting duplicate entry from the " +
|
||||||
"${file.parentFile.name} waiting context."
|
"${file.parentFile.name} waiting context."
|
||||||
file.delete() }}
|
if (file.exists()) file.delete() }}
|
||||||
|
|
||||||
/// Check if this item was in the next-action or waiting folder.
|
/// Check if this item was in the next-action or waiting folder.
|
||||||
if (inPath(gtdDirs["next-actions"], oldFile) ||
|
if (inPath(gtdDirs["next-actions"], oldFile) ||
|
||||||
@ -357,12 +454,12 @@ public class GTDCLI {
|
|||||||
findAllCopies(oldFile, gtdDirs.projects).each { file ->
|
findAllCopies(oldFile, gtdDirs.projects).each { file ->
|
||||||
println "Deleting duplicate entry from the " +
|
println "Deleting duplicate entry from the " +
|
||||||
"${file.parentFile.name} project."
|
"${file.parentFile.name} project."
|
||||||
file.delete() }}
|
if (file.exists()) file.delete() }}
|
||||||
|
|
||||||
/// Delete the original
|
/// Delete the original
|
||||||
oldFile.delete()
|
oldFile.delete()
|
||||||
|
|
||||||
println "'$item' marked as done." }
|
println "'$item' marked as done." } }
|
||||||
|
|
||||||
/** #### `calendar`
|
/** #### `calendar`
|
||||||
* Implement the `calendar` command to show all the items which are
|
* Implement the `calendar` command to show all the items which are
|
||||||
@ -424,7 +521,7 @@ public class GTDCLI {
|
|||||||
if (!file.isAbsolute()) file = new File(workingDir, filePath)
|
if (!file.isAbsolute()) file = new File(workingDir, filePath)
|
||||||
|
|
||||||
if (!file.isFile()) {
|
if (!file.isFile()) {
|
||||||
println "${file.canonicalPath} is not a regular file."
|
log.error "${file.canonicalPath} is not a regular file."
|
||||||
return }
|
return }
|
||||||
|
|
||||||
String originalRelativePath = getRelativePath(gtdDirs.root, file)
|
String originalRelativePath = getRelativePath(gtdDirs.root, file)
|
||||||
@ -482,7 +579,7 @@ public class GTDCLI {
|
|||||||
/// exists, copy the item there.
|
/// exists, copy the item there.
|
||||||
def projectDir = new File(gtdDirs.projects, item.project ?: '')
|
def projectDir = new File(gtdDirs.projects, item.project ?: '')
|
||||||
if (item.project && projectDir.exists() && projectDir.isDirectory()) {
|
if (item.project && projectDir.exists() && projectDir.isDirectory()) {
|
||||||
item.file = new File(projectDir, stringToFilename(item.action))
|
item.file = new File(projectDir, stringToFilename(item.toString()))
|
||||||
item.save()
|
item.save()
|
||||||
println "Copied to " +
|
println "Copied to " +
|
||||||
getRelativePath(gtdDirs.root, item.file.parentFile) } }
|
getRelativePath(gtdDirs.root, item.file.parentFile) } }
|
||||||
@ -504,10 +601,10 @@ public class GTDCLI {
|
|||||||
/// If the item is scheduled to be tickled today (or in the past)
|
/// If the item is scheduled to be tickled today (or in the past)
|
||||||
/// then move it into the next-actions folder
|
/// then move it into the next-actions folder
|
||||||
if ((item.tickle as DateMidnight) <= today) {
|
if ((item.tickle as DateMidnight) <= today) {
|
||||||
println "Moving '${item.action}' out of the tickler."
|
println "Moving '${item}' out of the tickler."
|
||||||
def oldFile = item.file
|
def oldFile = item.file
|
||||||
item.file = new File(gtdDirs."next-actions",
|
item.file = new File(gtdDirs."next-actions",
|
||||||
stringToFilename(item.action))
|
stringToFilename(item.toString()))
|
||||||
item.gtdProperties.remove("tickle")
|
item.gtdProperties.remove("tickle")
|
||||||
item.save()
|
item.save()
|
||||||
oldFile.delete() }}}
|
oldFile.delete() }}}
|
||||||
@ -522,7 +619,7 @@ public class GTDCLI {
|
|||||||
*/
|
*/
|
||||||
protected void ls(LinkedList args) {
|
protected void ls(LinkedList args) {
|
||||||
|
|
||||||
def target = args.poll()
|
def target
|
||||||
|
|
||||||
/// Temporary helper function to print all the items in a given
|
/// Temporary helper function to print all the items in a given
|
||||||
/// directory.
|
/// directory.
|
||||||
@ -535,25 +632,218 @@ public class GTDCLI {
|
|||||||
return
|
return
|
||||||
|
|
||||||
def item = new Item(file)
|
def item = new Item(file)
|
||||||
println item.action }
|
println item}
|
||||||
|
|
||||||
println "" }
|
println "" }
|
||||||
|
|
||||||
/// If we have a named context or project, look for those items
|
/// If we have no named context or project, print all items in the
|
||||||
/// specifically
|
/// *next-actions* and *waiting* folders and all their subfolders.
|
||||||
if (target) {
|
if (!args) {
|
||||||
|
|
||||||
printItems(new File(gtdDirs['next-actions'], target))
|
|
||||||
printItems(new File(gtdDirs.waiting, target))
|
|
||||||
printItems(new File(gtdDirs.projects, target)) }
|
|
||||||
|
|
||||||
/// Otherwise print all items in the *next-actions* and *waiting*
|
|
||||||
/// folders and all their subfolders.
|
|
||||||
else {
|
|
||||||
printItems(gtdDirs['next-actions'])
|
printItems(gtdDirs['next-actions'])
|
||||||
printItems(gtdDirs['waiting'])
|
printItems(gtdDirs['waiting'])
|
||||||
gtdDirs['next-actions'].eachDir(printItems)
|
gtdDirs['next-actions'].eachDir(printItems)
|
||||||
gtdDirs['waiting'].eachDir(printItems) } }
|
gtdDirs['waiting'].eachDir(printItems) }
|
||||||
|
|
||||||
|
/// For every name we do have, look for a project or context and
|
||||||
|
/// recursively print their contents.
|
||||||
|
else while ((target = args.poll())) {
|
||||||
|
printItems(new File(gtdDirs['next-actions'], target))
|
||||||
|
printItems(new File(gtdDirs.waiting, target))
|
||||||
|
printItems(new File(gtdDirs.projects, target)) } }
|
||||||
|
|
||||||
|
/** #### `debug`
|
||||||
|
* Print out debug information. Currently this prints out the internal
|
||||||
|
* state of the CLI. I may add other subcommands if the need arises. */
|
||||||
|
protected void debug(LinkedList args) {
|
||||||
|
|
||||||
|
def command = args.poll()
|
||||||
|
|
||||||
|
if (!command || "state" == command) {
|
||||||
|
println "GTD CLI v${VERSION}"
|
||||||
|
println ""
|
||||||
|
println "-- General"
|
||||||
|
println " Running under nailgun? ${nailgunInst ? 'yes' : 'no'}"
|
||||||
|
println " Terminal width ${terminalWidth}"
|
||||||
|
println " Working directory ${workingDir.canonicalPath}"
|
||||||
|
println ""
|
||||||
|
println "-- GTD Directories"
|
||||||
|
gtdDirs.each { k, v -> println " ${k.padRight(12)} ${v.canonicalPath}" }
|
||||||
|
println ""
|
||||||
|
println "-- Logging"
|
||||||
|
println " Threshold ${loggingThreshold}"
|
||||||
|
log.trace " Message from TRACE"
|
||||||
|
log.debug " Message from DEBUG"
|
||||||
|
log.info " Message from INFO${EOL}"
|
||||||
|
log.warn " Message from WARN"
|
||||||
|
log.error " Message from ERROR" }
|
||||||
|
|
||||||
|
else if ("loglevel" == command) {
|
||||||
|
def level = args.poll()
|
||||||
|
|
||||||
|
if (!level)
|
||||||
|
log.error "debug loglevel command requires additional arguments."
|
||||||
|
|
||||||
|
else setLoggingThreshold(level) }
|
||||||
|
else log.error "Unrecognized debug command: '${command}'." }
|
||||||
|
|
||||||
|
/** #### `delegate`
|
||||||
|
* Implement the `delegate` command. This allows you to move an action
|
||||||
|
* from the next action list to the delegate list, providing the name of
|
||||||
|
* the responsible party and optionally renaming the item. For detailed
|
||||||
|
* information see the [online help][help-delegate] by running
|
||||||
|
* `gtd help delegate`.
|
||||||
|
*
|
||||||
|
* [help-delegate]: jlp://gtd.jdb-labs.com/cli/GTDCLI/help/delegate
|
||||||
|
*/
|
||||||
|
protected void delegateAction(LinkedList args) {
|
||||||
|
def selectedFilePath
|
||||||
|
|
||||||
|
if (!args) {
|
||||||
|
log.error("The 'gtd delegate' command requires an " +
|
||||||
|
"<action-file> parameter.")
|
||||||
|
return }
|
||||||
|
|
||||||
|
while ((selectedFilePath = args.poll())) {
|
||||||
|
|
||||||
|
Item item
|
||||||
|
File oldFile, newContextDir
|
||||||
|
File selectedFile = new File(selectedFilePath)
|
||||||
|
|
||||||
|
if (!selectedFile.isAbsolute())
|
||||||
|
selectedFile = new File(workingDir, selectedFilePath)
|
||||||
|
|
||||||
|
if (!selectedFile.exists() || !selectedFile.isFile()) {
|
||||||
|
log.error "File does not exist or is a directory:"
|
||||||
|
log.error "\t" + selectedFile.canonicalPath
|
||||||
|
continue }
|
||||||
|
|
||||||
|
item = new Item(selectedFile)
|
||||||
|
oldFile = item.file
|
||||||
|
|
||||||
|
/// Move to the waiting folder, with the name of the delegatee and
|
||||||
|
/// optionally a new next action.
|
||||||
|
def delegatee = prompt(
|
||||||
|
["Who is responsible for the next action? You may also update the next action",
|
||||||
|
"by including it after a colon (e.g. 'Delegatee Name: New next action.').",
|
||||||
|
""])
|
||||||
|
|
||||||
|
if (delegatee.indexOf(':') > 0) item.action = delegatee
|
||||||
|
else item.action = delegatee + ': ' + item.action
|
||||||
|
|
||||||
|
/// Check if this item was in a project folder.
|
||||||
|
if (inPath(gtdDirs.projects, oldFile)) {
|
||||||
|
|
||||||
|
/// Rename the file in the project folder
|
||||||
|
item.file = new File(oldFile.parentFile,
|
||||||
|
stringToFilename(item.toString()))
|
||||||
|
item.save()
|
||||||
|
|
||||||
|
/// Move any copies of this item from the next actions folder
|
||||||
|
/// to the waiting folder.
|
||||||
|
findAllCopies(oldFile, gtdDirs['next-actions']).each { dupFile ->
|
||||||
|
println "Moving duplicate entry from the " +
|
||||||
|
"${dupFile.parentFile.name} context."
|
||||||
|
|
||||||
|
/// Retain the item's context if possible
|
||||||
|
newContextDir = new File(gtdDirs.waiting,
|
||||||
|
dupFile.parentFile.name)
|
||||||
|
|
||||||
|
/// Instead of creating a new Item object, let's just
|
||||||
|
/// create a copy of the existing one on the filesystem by
|
||||||
|
/// saving the existing object to a the new location.
|
||||||
|
if (newContextDir.exists() && newContextDir.isDirectory()) {
|
||||||
|
item.file = new File(newContextDir,
|
||||||
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
|
else { item.file = new File(gtdDirs.waiting,
|
||||||
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
|
item.save()
|
||||||
|
dupfile.delete() }}
|
||||||
|
|
||||||
|
/// Check if this item was in the next-action folder.
|
||||||
|
else if (inPath(gtdDirs["next-actions"], oldFile) ||
|
||||||
|
inPath(gtdDirs.waiting, oldFile)) {
|
||||||
|
|
||||||
|
/// Retain the item's context if possible.
|
||||||
|
newContextDir = new File(gtdDirs.waiting,
|
||||||
|
oldFile.parentFile.name)
|
||||||
|
|
||||||
|
/// Move the file to the waiting folder.
|
||||||
|
if (newContextDir.exists() && newContextDir.isDirectory()) {
|
||||||
|
item.file = new File(newContextDir,
|
||||||
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
|
else { item.file = new File(gtdDirs.waiting,
|
||||||
|
stringToFilename(item.toString())) }
|
||||||
|
|
||||||
|
item.save()
|
||||||
|
|
||||||
|
/// Rename any copies of this item from the projects folder.
|
||||||
|
findAllCopies(oldFile, gtdDirs.projects).each { dupFile ->
|
||||||
|
println "Renaming duplicate entry from the " +
|
||||||
|
"${dupFile.parentFile.name} project."
|
||||||
|
item.file = new File(dupFile.parentFile,
|
||||||
|
stringToFilename(item.toString()))
|
||||||
|
|
||||||
|
item.save()
|
||||||
|
dupFile.delete() } }
|
||||||
|
|
||||||
|
/// Delete the original file.
|
||||||
|
oldFile.delete() } }
|
||||||
|
|
||||||
|
/** #### `rename-project`
|
||||||
|
* Implement the `rename-project` command. This will rename the project
|
||||||
|
* directory in TODO as well as change the project reference in any of the
|
||||||
|
* items from the `next-actions` contexts.
|
||||||
|
*
|
||||||
|
* `gtd help rename-project`.
|
||||||
|
*
|
||||||
|
* [help-rename-project]: jlp://gtd.jdb-labs.com/cli/GTDCLI/help/rename-project
|
||||||
|
*/
|
||||||
|
protected void renameProject(LinkedList args) {
|
||||||
|
def projectName = args.poll()
|
||||||
|
def newName = args.poll()
|
||||||
|
|
||||||
|
if (!projectName || !newName) {
|
||||||
|
log.error "The 'gtd rename-project' command requires two " +
|
||||||
|
"parameters: <existing-project-name> and a <new-name>."
|
||||||
|
return }
|
||||||
|
|
||||||
|
def projectDir = new File(gtdDirs.projects, projectName)
|
||||||
|
if (!projectDir.exists() || !projectDir.isDirectory()) {
|
||||||
|
log.error "There is no directory named '$projectName' in the " +
|
||||||
|
"'projects' directory."
|
||||||
|
return }
|
||||||
|
|
||||||
|
def newDir = new File(gtdDirs.projects, newName)
|
||||||
|
if (newDir.exists()) {
|
||||||
|
log.error "There is already a project named '$newName'."
|
||||||
|
return }
|
||||||
|
|
||||||
|
// Perform the rename of the directory itself.
|
||||||
|
try { Files.move(projectDir.toPath(), newDir.toPath(), REPLACE_EXISTING) }
|
||||||
|
catch (Exception e) {
|
||||||
|
log.error "Unable to rename the project: ${e.localizedMessage}."
|
||||||
|
return }
|
||||||
|
|
||||||
|
// Update all of the items associated with this project.
|
||||||
|
def projectFiles = newDir.
|
||||||
|
listFiles({ File f ->
|
||||||
|
f.exists() && !f.isHidden() &&
|
||||||
|
f.isFile() && !f.name.startsWith('.') } as FileFilter)
|
||||||
|
|
||||||
|
def allProjectItems = projectFiles.collectMany { f ->
|
||||||
|
findAllCopies(f, gtdDirs.root).collect { new Item(it) } }
|
||||||
|
|
||||||
|
allProjectItems.each {
|
||||||
|
it.project = newName
|
||||||
|
it.save() }
|
||||||
|
|
||||||
|
println "Project renamed. ${allProjectItems.size()} items updated." }
|
||||||
|
|
||||||
|
private void print(String msg) { log.info(msg) }
|
||||||
|
private void println(String line) { log.info(line + EOL) }
|
||||||
|
|
||||||
/** #### `help`
|
/** #### `help`
|
||||||
* Implement the `help` command which provides the online-help. Users can
|
* Implement the `help` command which provides the online-help. Users can
|
||||||
@ -574,20 +864,41 @@ options are:
|
|||||||
top-level commands:
|
top-level commands:
|
||||||
|
|
||||||
help <command> Print detailed help about a command.
|
help <command> Print detailed help about a command.
|
||||||
|
|
||||||
process Process inbox items systematically.
|
process Process inbox items systematically.
|
||||||
|
|
||||||
done <action-file> Mark an action as done. This will automatically
|
done <action-file> Mark an action as done. This will automatically
|
||||||
take care of duplicates of the action in project
|
take care of duplicates of the action in project
|
||||||
or next-actions sub-folders.
|
or next-actions sub-folders.
|
||||||
|
|
||||||
calendar Show the tasks with specific days assigned to
|
calendar Show the tasks with specific days assigned to
|
||||||
them, sorted by date.
|
them, sorted by date.
|
||||||
|
|
||||||
list-copies <action-file> Given an action item, list all the other places
|
list-copies <action-file> Given an action item, list all the other places
|
||||||
there the same item is filed (cross-reference
|
there the same item is filed (cross-reference
|
||||||
with a project folder, for example).
|
with a project folder, for example).
|
||||||
|
|
||||||
new Interactively create a new action item in the
|
new Interactively create a new action item in the
|
||||||
current folder.
|
current folder.
|
||||||
|
|
||||||
tickler Search the tickler file for items that need to be
|
tickler Search the tickler file for items that need to be
|
||||||
delivered and move them to the *next-actions*
|
delivered and move them to the *next-actions*
|
||||||
folder."""
|
folder.
|
||||||
|
|
||||||
|
list, ls [<context> ...] List all the tasks for a given set of contexts
|
||||||
|
projects.
|
||||||
|
|
||||||
|
debug n
|
||||||
|
|
||||||
|
delegate Move an item from a next-action context or a
|
||||||
|
project folder to a waiting context and attach
|
||||||
|
the name of the party now responsible for the
|
||||||
|
item.
|
||||||
|
|
||||||
|
rename-project, rp <existing-project> <new-name>
|
||||||
|
|
||||||
|
Rename a project directory and update any task
|
||||||
|
items that reference it."""
|
||||||
} else {
|
} else {
|
||||||
def command = args.poll()
|
def command = args.poll()
|
||||||
|
|
||||||
@ -691,15 +1002,35 @@ file for any items that should become active (based on their <tickle> property)
|
|||||||
and moves them out of the tickler file and into the next-actions file."""
|
and moves them out of the tickler file and into the next-actions file."""
|
||||||
break
|
break
|
||||||
|
|
||||||
/// Online help for the `ls`/`list-context` command.
|
/// Online help for the `ls`/`list` command.
|
||||||
/// @org gtd.jdb-labs.com/cli/GTDCLI/help/ls
|
/// @org gtd.jdb-labs.com/cli/GTDCLI/help/ls
|
||||||
case ~/ls|list-context/: println """\
|
case ~/ls|list/: println """\
|
||||||
usage gtd ls [<context> ...]
|
usage gtd list [<context> ...]
|
||||||
|
or gtd ls [<context> ...]
|
||||||
|
|
||||||
This command lists all the tasks for a given context or project. The purpose is
|
This command lists all the tasks for a given context or project. The purpose is
|
||||||
to list in one place items that are sitting in the next-actions folder or the
|
to list in one place items that are sitting in the next-actions folder or the
|
||||||
waiting folder for a specific context or list items for a given project. If no
|
waiting folder for a specific context or list items for a given project. If no
|
||||||
context or project is named, all contexts are listed."""
|
context or project is named, all contexts are listed."""
|
||||||
|
|
||||||
|
/// Online help for the `delegate` command.
|
||||||
|
/// @org gtd.jdb-labs.com/cli/GTDCLI/help/delegate
|
||||||
|
case ~/delegate/: println """\
|
||||||
|
usage gtd delegate [<action-file> ...]
|
||||||
|
|
||||||
|
This command moves an action item from a next-action context or project folder
|
||||||
|
to the delegate folder. It allows the user to attach the name of the newly
|
||||||
|
responsible party and optionally rename the item."""
|
||||||
|
|
||||||
|
/// Online help for the `rename-project` command.
|
||||||
|
/// @org gtd.jdb-labs.com/cli/GTDCLI/help/rename-project
|
||||||
|
case ~/delegate/: println """\
|
||||||
|
usage gtd rename-project <existing-project> <new-name>
|
||||||
|
or gtd rp <existing-project> <new-name>
|
||||||
|
|
||||||
|
This command renames a project directory and updates any items that reference
|
||||||
|
the project."""
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -729,6 +1060,7 @@ context or project is named, all contexts are listed."""
|
|||||||
contextFile = line ? new File(baseDir, line) : baseDir
|
contextFile = line ? new File(baseDir, line) : baseDir
|
||||||
|
|
||||||
while (!contextFile.exists() || !contextFile.isDirectory()) {
|
while (!contextFile.exists() || !contextFile.isDirectory()) {
|
||||||
|
log.warn "'$line' is not a valid context."
|
||||||
println "Available contexts:"
|
println "Available contexts:"
|
||||||
baseDir.eachDir { print "\t${it.name}"}
|
baseDir.eachDir { print "\t${it.name}"}
|
||||||
println ""
|
println ""
|
||||||
@ -749,7 +1081,7 @@ context or project is named, all contexts are listed."""
|
|||||||
* palatable for a filename. */
|
* palatable for a filename. */
|
||||||
public static String stringToFilename(String s) {
|
public static String stringToFilename(String s) {
|
||||||
return s.replaceAll(/\s/, '-').
|
return s.replaceAll(/\s/, '-').
|
||||||
replaceAll(/[';:(\.$)]/, '').
|
replaceAll(/[';:(\.$\/)]/, '').
|
||||||
toLowerCase() }
|
toLowerCase() }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ public class GTDServlet extends HttpServlet {
|
|||||||
/// Get this user's session
|
/// Get this user's session
|
||||||
HttpSession session = request.getSession(true);
|
HttpSession session = request.getSession(true);
|
||||||
|
|
||||||
/// If the user is posting to `/gtd/login` then let's try to
|
/// If the user is posting to `/login` then let's try to
|
||||||
/// authenticate them. We don't care about the state of the existing
|
/// authenticate them. We don't care about the state of the existing
|
||||||
/// session.
|
/// session.
|
||||||
if (request.servletPath == '/login') {
|
if (request.servletPath == '/login') {
|
||||||
@ -161,8 +161,8 @@ public class GTDServlet extends HttpServlet {
|
|||||||
/// Right now there is no other endpoint that supports `POST`, so return
|
/// Right now there is no other endpoint that supports `POST`, so return
|
||||||
/// `404 Not Found` or `405 Method Not Allowed`
|
/// `404 Not Found` or `405 Method Not Allowed`
|
||||||
switch (request.servletPath) {
|
switch (request.servletPath) {
|
||||||
case ~/\/gtd\/contexts.*/:
|
case ~/\/contexts.*/:
|
||||||
case ~/\/gtd\/projects.*/:
|
case ~/\/projects.*/:
|
||||||
response.status = SC_METHOD_NOT_ALLOWED
|
response.status = SC_METHOD_NOT_ALLOWED
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
@ -207,14 +207,14 @@ public class GTDServlet extends HttpServlet {
|
|||||||
|
|
||||||
switch(request.servletPath) {
|
switch(request.servletPath) {
|
||||||
|
|
||||||
/// If they are invoking `/gtd/logout` then invalidate their session
|
/// If they are invoking `/logout` then invalidate their session
|
||||||
/// and return `200 OK`
|
/// and return `200 OK`
|
||||||
case "/logout":
|
case "/logout":
|
||||||
session.removeAttribute("authenticated")
|
session.removeAttribute("authenticated")
|
||||||
session.invalidate()
|
session.invalidate()
|
||||||
break
|
break
|
||||||
|
|
||||||
/// ##### `/gtd/contexts`
|
/// ##### `/contexts`
|
||||||
/// Return the list of contexts that are readable by this user.
|
/// Return the list of contexts that are readable by this user.
|
||||||
case "/contexts":
|
case "/contexts":
|
||||||
|
|
||||||
@ -230,7 +230,7 @@ public class GTDServlet extends HttpServlet {
|
|||||||
writeJSON(returnData, response)
|
writeJSON(returnData, response)
|
||||||
break
|
break
|
||||||
|
|
||||||
/// ##### `/gtd/contexts/<contextId>`
|
/// ##### `/contexts/<contextId>`
|
||||||
/// Return data for the requested context, assuming it is
|
/// Return data for the requested context, assuming it is
|
||||||
/// readable for this user.
|
/// readable for this user.
|
||||||
case ~'/contexts/(.+)':
|
case ~'/contexts/(.+)':
|
||||||
@ -251,7 +251,7 @@ public class GTDServlet extends HttpServlet {
|
|||||||
writeJSON(returnData, response)
|
writeJSON(returnData, response)
|
||||||
break
|
break
|
||||||
|
|
||||||
/// ##### `/gtd/projects`
|
/// ##### `/projects`
|
||||||
/// Return the list of projects that are readable for this user.
|
/// Return the list of projects that are readable for this user.
|
||||||
case "/projects":
|
case "/projects":
|
||||||
/// Filter the project directories to find the ones that the
|
/// Filter the project directories to find the ones that the
|
||||||
@ -264,7 +264,7 @@ public class GTDServlet extends HttpServlet {
|
|||||||
writeJSON(returnData, response)
|
writeJSON(returnData, response)
|
||||||
break
|
break
|
||||||
|
|
||||||
/// ##### `/gtd/projects/<projectId>`
|
/// ##### `/projects/<projectId>`
|
||||||
/// Return data for the requested project, assuming it is readable
|
/// Return data for the requested project, assuming it is readable
|
||||||
/// for this user.
|
/// for this user.
|
||||||
case ~'/projects/(.+)':
|
case ~'/projects/(.+)':
|
||||||
@ -286,7 +286,7 @@ public class GTDServlet extends HttpServlet {
|
|||||||
writeJSON(returnData, response)
|
writeJSON(returnData, response)
|
||||||
break
|
break
|
||||||
|
|
||||||
/// ##### `/gtd/next-actions/<contexts-and-projects>`
|
/// ##### `/next-actions/<contexts-and-projects>`
|
||||||
/// Return all of the items contained in the named contexts and
|
/// Return all of the items contained in the named contexts and
|
||||||
/// projects, assuming the user has access to them.
|
/// projects, assuming the user has access to them.
|
||||||
/// `<contexts-and-projects>` is expected to be a comma-delimited
|
/// `<contexts-and-projects>` is expected to be a comma-delimited
|
||||||
|
Reference in New Issue
Block a user