2017-03-08 23:30:24 +00:00
// Generated by CoffeeScript 1.12.4
2016-01-11 19:58:35 +00:00
/ *
Copyright 2016 Resin . io
Licensed under the Apache License , Version 2.0 ( the "License" ) ;
you may not use this file except in compliance with the License .
You may obtain a copy of the License at
http : //www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing , software
distributed under the License is distributed on an "AS IS" BASIS ,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
See the License for the specific language governing permissions and
limitations under the License .
* /
2015-09-29 17:03:14 +00:00
( function ( ) {
2015-12-07 14:32:24 +00:00
var commandOptions , stepHandler ;
2015-09-29 17:36:29 +00:00
2015-10-14 21:49:27 +00:00
commandOptions = require ( './command-options' ) ;
2015-09-29 17:03:14 +00:00
exports . download = {
signature : 'os download <type>' ,
description : 'download an unconfigured os image' ,
help : 'Use this command to download an unconfigured os image for a certain device type.\n\nExamples:\n\n $ resin os download parallella -o ../foo/bar/parallella.img' ,
permission : 'user' ,
options : [
{
signature : 'output' ,
description : 'output path' ,
parameter : 'output' ,
alias : 'o' ,
required : 'You have to specify an output location'
}
] ,
action : function ( params , options , done ) {
2015-12-07 14:32:24 +00:00
var fs , manager , rindle , unzip , visuals ;
unzip = require ( 'unzip2' ) ;
fs = require ( 'fs' ) ;
rindle = require ( 'rindle' ) ;
manager = require ( 'resin-image-manager' ) ;
visuals = require ( 'resin-cli-visuals' ) ;
2015-09-29 17:03:14 +00:00
console . info ( "Getting device operating system for " + params . type ) ;
return manager . get ( params . type ) . then ( function ( stream ) {
var bar , output , spinner ;
bar = new visuals . Progress ( 'Downloading Device OS' ) ;
spinner = new visuals . Spinner ( 'Downloading Device OS (size unknown)' ) ;
stream . on ( 'progress' , function ( state ) {
if ( state != null ) {
return bar . update ( state ) ;
} else {
return spinner . start ( ) ;
}
} ) ;
stream . on ( 'end' , function ( ) {
return spinner . stop ( ) ;
} ) ;
2015-09-30 14:16:24 +00:00
if ( stream . mime === 'application/zip' ) {
output = unzip . Extract ( {
path : options . output
} ) ;
} else {
output = fs . createWriteStream ( options . output ) ;
}
2015-10-21 14:17:10 +00:00
return rindle . wait ( stream . pipe ( output ) ) [ "return" ] ( options . output ) ;
2015-09-29 17:03:14 +00:00
} ) . tap ( function ( output ) {
2015-11-24 03:38:28 +00:00
return console . info ( 'The image was downloaded successfully' ) ;
2015-09-29 17:03:14 +00:00
} ) . nodeify ( done ) ;
}
} ;
2015-09-29 17:36:29 +00:00
stepHandler = function ( step ) {
2015-12-07 14:32:24 +00:00
var _ , bar , helpers , rindle , visuals ;
_ = require ( 'lodash' ) ;
rindle = require ( 'rindle' ) ;
visuals = require ( 'resin-cli-visuals' ) ;
helpers = require ( '../utils/helpers' ) ;
2015-09-29 17:36:29 +00:00
step . on ( 'stdout' , _ . bind ( process . stdout . write , process . stdout ) ) ;
step . on ( 'stderr' , _ . bind ( process . stderr . write , process . stderr ) ) ;
step . on ( 'state' , function ( state ) {
if ( state . operation . command === 'burn' ) {
return ;
}
return console . log ( helpers . stateToString ( state ) ) ;
} ) ;
bar = new visuals . Progress ( 'Writing Device OS' ) ;
step . on ( 'burn' , _ . bind ( bar . update , bar ) ) ;
2015-10-21 14:17:10 +00:00
return rindle . wait ( step ) ;
2015-09-29 17:36:29 +00:00
} ;
exports . configure = {
signature : 'os configure <image> <uuid>' ,
description : 'configure an os image' ,
2016-01-21 14:23:40 +00:00
help : 'Use this command to configure a previously download operating system image with a device.\n\nExamples:\n\n $ resin os configure ../path/rpi.img 7cf02a6' ,
2015-09-29 17:36:29 +00:00
permission : 'user' ,
2015-10-19 17:38:09 +00:00
options : [
{
signature : 'advanced' ,
description : 'show advanced commands' ,
boolean : true ,
alias : 'v'
}
] ,
2015-09-29 17:36:29 +00:00
action : function ( params , options , done ) {
2015-12-07 14:32:24 +00:00
var _ , form , helpers , init , resin ;
_ = require ( 'lodash' ) ;
2017-01-25 18:32:07 +00:00
resin = require ( 'resin-sdk-preconfigured' ) ;
2015-12-07 14:32:24 +00:00
form = require ( 'resin-cli-form' ) ;
init = require ( 'resin-device-init' ) ;
helpers = require ( '../utils/helpers' ) ;
2015-09-29 17:36:29 +00:00
console . info ( 'Configuring operating system image' ) ;
2016-09-14 17:51:50 +00:00
return resin . models . device . get ( params . uuid ) . then ( function ( device ) {
return helpers . getManifest ( params . image , device . device _type ) . get ( 'options' ) . then ( function ( questions ) {
var advancedGroup , override ;
if ( ! options . advanced ) {
advancedGroup = _ . findWhere ( questions , {
name : 'advanced' ,
isGroup : true
} ) ;
if ( advancedGroup != null ) {
override = helpers . getGroupDefaults ( advancedGroup ) ;
}
2015-10-19 17:38:09 +00:00
}
2016-09-14 17:51:50 +00:00
return form . run ( questions , {
override : override
} ) ;
} ) . then ( function ( answers ) {
return init . configure ( params . image , params . uuid , answers ) . then ( stepHandler ) ;
2015-10-19 17:38:09 +00:00
} ) ;
2015-09-29 17:36:29 +00:00
} ) . nodeify ( done ) ;
}
} ;
2015-09-29 18:52:34 +00:00
exports . initialize = {
2015-10-15 12:48:34 +00:00
signature : 'os initialize <image>' ,
2015-09-29 18:52:34 +00:00
description : 'initialize an os image' ,
2015-10-15 12:48:34 +00:00
help : 'Use this command to initialize a previously configured operating system image.\n\nExamples:\n\n $ resin os initialize ../path/rpi.img --type \'raspberry-pi\'' ,
2015-09-29 18:52:34 +00:00
permission : 'user' ,
2015-10-15 12:14:35 +00:00
options : [
commandOptions . yes , {
2015-10-15 12:48:34 +00:00
signature : 'type' ,
description : 'device type' ,
parameter : 'type' ,
alias : 't' ,
required : 'You have to specify a device type'
} , {
2015-10-15 12:14:35 +00:00
signature : 'drive' ,
description : 'drive' ,
parameter : 'drive' ,
alias : 'd'
}
] ,
2015-10-01 17:07:53 +00:00
root : true ,
2015-09-29 18:52:34 +00:00
action : function ( params , options , done ) {
2016-09-14 17:51:50 +00:00
var Promise , form , helpers , init , patterns , umount ;
2015-12-07 14:32:24 +00:00
Promise = require ( 'bluebird' ) ;
umount = Promise . promisifyAll ( require ( 'umount' ) ) ;
form = require ( 'resin-cli-form' ) ;
init = require ( 'resin-device-init' ) ;
patterns = require ( '../utils/patterns' ) ;
2016-09-14 17:51:50 +00:00
helpers = require ( '../utils/helpers' ) ;
2015-09-29 18:52:34 +00:00
console . info ( 'Initializing device' ) ;
2016-09-14 17:51:50 +00:00
return helpers . getManifest ( params . image , options . type ) . then ( function ( manifest ) {
2015-09-29 18:52:34 +00:00
var ref ;
return ( ref = manifest . initialization ) != null ? ref . options : void 0 ;
2015-10-15 12:14:35 +00:00
} ) . then ( function ( questions ) {
return form . run ( questions , {
override : {
drive : options . drive
}
} ) ;
} ) . tap ( function ( answers ) {
2015-09-29 18:52:34 +00:00
var message ;
if ( answers . drive == null ) {
return ;
}
message = "This will erase " + answers . drive + ". Are you sure?" ;
return patterns . confirm ( options . yes , message ) [ "return" ] ( answers . drive ) . then ( umount . umountAsync ) ;
} ) . tap ( function ( answers ) {
2015-10-15 12:48:34 +00:00
return init . initialize ( params . image , options . type , answers ) . then ( stepHandler ) ;
2015-09-29 18:52:34 +00:00
} ) . then ( function ( answers ) {
if ( answers . drive == null ) {
return ;
}
return umount . umountAsync ( answers . drive ) . tap ( function ( ) {
return console . info ( "You can safely remove " + answers . drive + " now" ) ;
} ) ;
} ) . nodeify ( done ) ;
}
} ;
2015-09-29 17:03:14 +00:00
} ) . call ( this ) ;