2015-01-09 15:22:18 +00:00
|
|
|
_ = require('lodash-contrib')
|
2014-12-01 14:11:00 +00:00
|
|
|
url = require('url')
|
2014-11-18 16:15:40 +00:00
|
|
|
async = require('async')
|
2015-01-08 12:04:37 +00:00
|
|
|
resin = require('resin-sdk')
|
2015-01-21 13:50:19 +00:00
|
|
|
visuals = require('resin-cli-visuals')
|
2014-12-22 19:48:11 +00:00
|
|
|
helpers = require('../helpers/helpers')
|
2014-11-18 12:41:13 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
exports.login =
|
|
|
|
signature: 'login [credentials]'
|
|
|
|
description: 'login to resin.io'
|
|
|
|
help: '''
|
|
|
|
Use this command to login to your resin.io account.
|
|
|
|
You need to login before you can use most of the commands this tool provides.
|
2014-11-18 16:15:40 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
You can pass your credentials as a colon separated string, or you can omit the
|
|
|
|
credentials, in which case the tool will present you with an interactive login form.
|
2014-11-18 16:15:40 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
Examples:
|
|
|
|
$ resin login username:password
|
|
|
|
$ resin login
|
|
|
|
'''
|
|
|
|
action: (params, options, done) ->
|
|
|
|
async.waterfall [
|
2014-11-18 16:15:40 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
(callback) ->
|
|
|
|
if params.credentials?
|
|
|
|
return helpers.parseCredentials(params.credentials, callback)
|
|
|
|
else
|
2015-01-21 13:50:19 +00:00
|
|
|
return visuals.widgets.login(callback)
|
2014-11-18 15:37:29 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
(credentials, callback) ->
|
|
|
|
resin.auth.login(credentials, callback)
|
2014-11-18 15:48:05 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
], done
|
2014-12-24 15:14:30 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
exports.logout =
|
|
|
|
signature: 'logout'
|
|
|
|
description: 'logout from resin.io'
|
|
|
|
help: '''
|
|
|
|
Use this command to logout from your resin.io account.o
|
2014-12-24 15:14:30 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
Examples:
|
|
|
|
$ resin logout
|
|
|
|
'''
|
2015-01-16 12:34:59 +00:00
|
|
|
permission: 'user'
|
|
|
|
action: (params, options, done) ->
|
2015-01-15 17:10:14 +00:00
|
|
|
resin.auth.logout(done)
|
2014-12-24 15:14:30 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
exports.signup =
|
|
|
|
signature: 'signup'
|
|
|
|
description: 'signup to resin.io'
|
|
|
|
help: '''
|
|
|
|
Use this command to signup for a resin.io account.
|
2014-12-24 15:14:30 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
If signup is successful, you'll be logged in to your new user automatically.
|
2014-12-12 14:25:32 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
Examples:
|
|
|
|
$ resin signup
|
|
|
|
Email: me@mycompany.com
|
|
|
|
Username: johndoe
|
|
|
|
Password: ***********
|
2014-12-12 14:25:32 +00:00
|
|
|
|
2015-02-09 15:43:10 +00:00
|
|
|
$ resin signup --email me@mycompany.com --username johndoe --password ***********
|
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
$ resin whoami
|
|
|
|
johndoe
|
|
|
|
'''
|
2015-02-09 15:43:10 +00:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
signature: 'email'
|
|
|
|
parameter: 'email'
|
|
|
|
description: 'user email'
|
|
|
|
alias: 'e'
|
|
|
|
}
|
|
|
|
{
|
|
|
|
signature: 'username'
|
|
|
|
parameter: 'username'
|
|
|
|
description: 'user name'
|
|
|
|
alias: 'u'
|
|
|
|
}
|
|
|
|
{
|
|
|
|
signature: 'password'
|
|
|
|
parameter: 'user password'
|
|
|
|
description: 'user password'
|
|
|
|
alias: 'p'
|
|
|
|
}
|
|
|
|
]
|
2015-01-15 17:10:14 +00:00
|
|
|
action: (params, options, done) ->
|
2015-02-09 15:43:10 +00:00
|
|
|
|
|
|
|
hasOptionCredentials = not _.isEmpty(options)
|
|
|
|
|
|
|
|
if hasOptionCredentials
|
|
|
|
|
|
|
|
if not options.email?
|
|
|
|
return done(new Error('Missing email'))
|
|
|
|
|
|
|
|
if not options.username?
|
|
|
|
return done(new Error('Missing username'))
|
|
|
|
|
|
|
|
if not options.password?
|
|
|
|
return done(new Error('Missing password'))
|
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
async.waterfall([
|
|
|
|
|
|
|
|
(callback) ->
|
2015-02-09 15:43:10 +00:00
|
|
|
return callback(null, options) if hasOptionCredentials
|
2015-01-21 13:50:19 +00:00
|
|
|
visuals.widgets.register(callback)
|
2015-01-15 17:10:14 +00:00
|
|
|
|
|
|
|
(credentials, callback) ->
|
|
|
|
resin.auth.register credentials, (error, token) ->
|
|
|
|
return callback(error, credentials)
|
|
|
|
|
|
|
|
(credentials, callback) ->
|
|
|
|
resin.auth.login(credentials, callback)
|
|
|
|
|
|
|
|
], done)
|
|
|
|
|
|
|
|
exports.whoami =
|
|
|
|
signature: 'whoami'
|
|
|
|
description: 'get current username'
|
|
|
|
help: '''
|
|
|
|
Use this command to find out the current logged in username.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
$ resin whoami
|
|
|
|
'''
|
2015-01-16 12:34:59 +00:00
|
|
|
permission: 'user'
|
|
|
|
action: (params, options, done) ->
|
2015-01-15 17:10:14 +00:00
|
|
|
resin.auth.whoami (error, username) ->
|
|
|
|
|
|
|
|
if not username?
|
|
|
|
return done(new Error('Username not found'))
|
|
|
|
|
|
|
|
console.log(username)
|