2015-02-26 15:47:56 +00:00
( function ( ) {
2015-04-08 12:25:27 +00:00
var TOKEN _URL , _ , async , open , resin , settings , url , visuals ;
2015-03-13 12:53:31 +00:00
open = require ( 'open' ) ;
2015-02-26 15:47:56 +00:00
_ = require ( 'lodash-contrib' ) ;
url = require ( 'url' ) ;
async = require ( 'async' ) ;
resin = require ( 'resin-sdk' ) ;
2015-04-08 12:25:27 +00:00
settings = require ( 'resin-settings-client' ) ;
2015-02-26 15:47:56 +00:00
visuals = require ( 'resin-cli-visuals' ) ;
2015-06-02 17:21:59 +00:00
TOKEN _URL = url . resolve ( settings . get ( 'dashboardUrl' ) , '/preferences' ) ;
2015-03-13 12:53:31 +00:00
2015-02-26 15:47:56 +00:00
exports . login = {
2015-03-11 18:37:24 +00:00
signature : 'login [token]' ,
2015-02-26 15:47:56 +00:00
description : 'login to resin.io' ,
2015-03-13 12:53:31 +00:00
help : "Use this command to login to your resin.io account.\n\nTo login, you need your token, which is accesible from the preferences page:\n\n " + TOKEN _URL + "\n\nExamples:\n\n $ resin login\n $ resin login \"eyJ0eXAiOiJKV1Qi...\"" ,
2015-02-26 15:47:56 +00:00
action : function ( params , options , done ) {
return async . waterfall ( [
function ( callback ) {
2015-05-11 12:42:25 +00:00
if ( params . token != null ) {
return callback ( null , params . token ) ;
}
console . info ( "To login to the Resin CLI, you need your unique token, which is accesible from\nthe preferences page at " + TOKEN _URL + "\n\nAttempting to open a browser at that location..." ) ;
2015-03-13 12:53:31 +00:00
return open ( TOKEN _URL , function ( error ) {
if ( error != null ) {
console . error ( "Unable to open a web browser in the current environment.\nPlease visit " + TOKEN _URL + " manually." ) ;
}
2015-05-11 12:42:25 +00:00
return visuals . widgets . ask ( 'What\'s your token? (visible in the preferences page)' , null , callback ) ;
2015-03-13 12:53:31 +00:00
} ) ;
2015-03-11 18:37:24 +00:00
} , function ( token , callback ) {
2015-06-02 15:57:52 +00:00
return resin . auth . loginWithToken ( token , callback ) ;
} , function ( callback ) {
return resin . auth . whoami ( callback ) ;
} , function ( username , callback ) {
console . info ( "Successfully logged in as: " + username ) ;
return callback ( ) ;
2015-02-26 15:47:56 +00:00
}
] , done ) ;
}
} ;
exports . logout = {
signature : 'logout' ,
description : 'logout from resin.io' ,
2015-03-03 14:14:16 +00:00
help : 'Use this command to logout from your resin.io account.o\n\nExamples:\n\n $ resin logout' ,
2015-02-26 15:47:56 +00:00
permission : 'user' ,
action : function ( params , options , done ) {
return resin . auth . logout ( done ) ;
}
} ;
exports . signup = {
signature : 'signup' ,
description : 'signup to resin.io' ,
2015-03-03 14:14:16 +00:00
help : 'Use this command to signup for a resin.io account.\n\nIf signup is successful, you\'ll be logged in to your new user automatically.\n\nExamples:\n\n $ resin signup\n Email: me@mycompany.com\n Username: johndoe\n Password: ***********\n\n $ resin signup --email me@mycompany.com --username johndoe --password ***********\n\n $ resin whoami\n johndoe' ,
2015-02-26 15:47:56 +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'
}
] ,
action : function ( params , options , done ) {
var hasOptionCredentials ;
hasOptionCredentials = ! _ . isEmpty ( options ) ;
if ( hasOptionCredentials ) {
if ( options . email == null ) {
return done ( new Error ( 'Missing email' ) ) ;
}
if ( options . username == null ) {
return done ( new Error ( 'Missing username' ) ) ;
}
if ( options . password == null ) {
return done ( new Error ( 'Missing password' ) ) ;
}
}
return async . waterfall ( [
function ( callback ) {
if ( hasOptionCredentials ) {
return callback ( null , options ) ;
}
return visuals . widgets . register ( callback ) ;
} , function ( credentials , callback ) {
return resin . auth . register ( credentials , function ( error , token ) {
return callback ( error , credentials ) ;
} ) ;
} , function ( credentials , callback ) {
return resin . auth . login ( credentials , callback ) ;
}
] , done ) ;
}
} ;
exports . whoami = {
signature : 'whoami' ,
description : 'get current username' ,
2015-03-03 14:14:16 +00:00
help : 'Use this command to find out the current logged in username.\n\nExamples:\n\n $ resin whoami' ,
2015-02-26 15:47:56 +00:00
permission : 'user' ,
action : function ( params , options , done ) {
return resin . auth . whoami ( function ( error , username ) {
2015-04-20 16:46:43 +00:00
if ( error != null ) {
return done ( error ) ;
}
2015-02-26 15:47:56 +00:00
if ( username == null ) {
return done ( new Error ( 'Username not found' ) ) ;
}
2015-04-20 16:46:43 +00:00
console . log ( username ) ;
return done ( ) ;
2015-02-26 15:47:56 +00:00
} ) ;
}
} ;
} ) . call ( this ) ;