1
0
mirror of https://github.com/fazo96/homework-cli.git synced 2025-01-09 12:10:10 +01:00

huge update

This commit is contained in:
Enrico Fasoli 2015-03-09 13:04:08 +01:00
parent d310243e8f
commit 0d354387a7

View File

@ -6,42 +6,84 @@ var moment = require('moment')
cli
.version('1.3.0')
.usage('command [arguments]')
.option('-k, --key [apikey]','use given api key')
.option('-u, --url [endpoint]','use given api endpoint')
.description('interact with a running instance of Homework (by default homework.meteor.com)')
.usage('[command] [arguments]')
.option('-k, --key <apikey>','use given api key')
.option('-u, --url <endpoint>','use given api endpoint instead of http://homework.meteor.com/api')
.option('-v, --verbose', 'be more verbose')
.option('-i, --id', 'show item IDs')
.parse(process.argv)
.option('-d, --delete <noteid> [otherids...]', 'delete note(s) with given id')
.option('-s, --silent',"don't print note list")
.option('-a, --archived','view archived notes')
cli
.command('new <title> [content]')
.description('create a new note')
.option('--date <date>', 'the due date for the program')
.action(postNote)
cli.parse(process.argv)
var baseurl = (cli.url || 'http://homework.meteor.com/api') + '/' + cli.key
if(!cli.key){
console.log(chalk.red("Invalid API key"));
process.exit(1)
cli.help()
}
var url = (cli.url || 'http://homework.meteor.com/api') + '/' + cli.key
if(cli.verbose) console.log(chalk.bold('URL: ') + url)
function notes(archived,callback){
request(url, function(error,response,body){
function postNote(title,content,options){
request.post({uri: (cli.url || 'http://homework.meteor.com/api') + '/' + cli.key, json: {
title: title,
content: content,
date: options.date || false
}},function(error,response,body){
if(error)
console.log(chalk.red("Error: ") + chalk.bold(error))
else
if(cli.verbose) console.log(chalk.bold("Response: ") + body)
var obj = JSON.parse(body)
if(cli.verbose) console.log(chalk.bold("Response: ") + JSON.stringify(body))
if(body.error) console.log(chalk.red("Error: ") + chalk.bold(body.error))
else console.log(chalk.green("Inserted note: " + chalk.bold(body.inserted)))
})
}
function notes(archived,callback){
if(cli.verbose) console.log(chalk.bold('URL: ') + baseurl)
request({ uri: baseurl + (archived?'/archived':''), json: true }, function(error,response,body){
if(error)
console.log(chalk.red("Error: ") + chalk.bold(error))
else
if(cli.verbose) console.log(chalk.bold("Response: ") + JSON.stringify(body))
var ret = ""
if(obj.forEach){
obj.forEach(function(x){
if(body.forEach){
body.forEach(function(x){
var date = x.date
if(date != false) date = moment.unix(x.date).format('DD/MM/YYYY')
var str = '\n' + chalk.green('- ') + chalk.bold(x.title)
if(date != false) str += ' (' + chalk.yellow("Due: ") + chalk.underline(date) + ')'
if(cli.id) str += ' (' + chalk.bold('ID: ') + chalk.underline(x._id) + ')'
if(archived) str += ' (' + chalk.green('archived') + ')'
if(x.content) str += '\n\t' + chalk.green(x.content)
ret += str.substring(1) + '\n'
})
} else callback(body)
callback(ret)
callback(ret.substring(0,ret.length-1))
})
}
notes(false,function(x){console.log(x)})
function delNotes(list){
var deleted = 0
list.forEach(function(x){
request.del({ uri: baseurl+'/'+x, json: true },function(error,response,body){
if(error)
console.log(chalk.red("Error: ") + chalk.bold(error))
else
if(cli.verbose) console.log(chalk.bold("Response: ") + JSON.stringify(body))
if(body.error) console.log(chalk.red("Error:") + obj.error)
else deleted += body.deleted
})
})
console.log(chalk.green('Delete: ') + chalk.bold(deleted) + ' notes deleted from the database')
if(!cli.silent) console.log()
}
if(cli.delete) delNotes(cli.delete.split(' '))
if(!cli.silent) notes(cli.archived || false, console.log)