mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 00:03:28 +02:00
98 lines
2.9 KiB
JavaScript
98 lines
2.9 KiB
JavaScript
module.exports.command = 'storage-temp'
|
|
|
|
module.exports.describe = 'Start a temp storage unit.'
|
|
|
|
module.exports.builder = function(yargs) {
|
|
var os = require('os')
|
|
|
|
return yargs
|
|
.env('STF_STORAGE_TEMP')
|
|
.strict()
|
|
.option('max-file-size', {
|
|
describe: 'Maximum file size to allow for uploads. Note that nginx ' +
|
|
'may have a separate limit, meaning you should change both.'
|
|
, type: 'number'
|
|
, default: 1 * 1024 * 1024 * 1024
|
|
})
|
|
.option('port', {
|
|
alias: 'p'
|
|
, describe: 'The port to bind to.'
|
|
, type: 'number'
|
|
, default: process.env.PORT || 7100
|
|
})
|
|
.option('save-dir', {
|
|
describe: 'The location where files are saved to.'
|
|
, type: 'string'
|
|
, default: os.tmpdir()
|
|
})
|
|
.option('bundletool-path', {
|
|
describe: 'The path to bundletool binary.'
|
|
, type: 'string'
|
|
, default: '/app/bundletool/bundletool.jar'
|
|
})
|
|
.option('ks', {
|
|
describe: 'The name of the keystore to sign APKs built from AAB.'
|
|
, type: 'string'
|
|
, default: 'openstf'
|
|
})
|
|
.option('ks-key-alias', {
|
|
describe: 'Indicates the alias to be used in the future to refer to the keystore.'
|
|
, type: 'string'
|
|
, default: 'mykey'
|
|
})
|
|
.option('ks-pass', {
|
|
describe: 'The password of the keystore.'
|
|
, type: 'string'
|
|
, default: 'openstf'
|
|
})
|
|
.option('ks-key-pass', {
|
|
describe: 'The password of the private key contained in keystore.'
|
|
, type: 'string'
|
|
, default: 'openstf'
|
|
})
|
|
.option('ks-keyalg', {
|
|
describe: 'The algorithm that is used to generate the key.'
|
|
, type: 'string'
|
|
, default: 'RSA'
|
|
})
|
|
.option('ks-validity', {
|
|
describe: 'Number of days of keystore validity.'
|
|
, type: 'number'
|
|
, default: '90'
|
|
})
|
|
.option('ks-keysize', {
|
|
describe: 'Key size of the keystore.'
|
|
, type: 'number'
|
|
, default: '2048'
|
|
})
|
|
.option('ks-dname', {
|
|
describe: 'Keystore Distinguished Name, contain Common Name(CN), ' +
|
|
'Organizational Unit (OU), Oranization(O), Locality (L), State (S) and Country (C).'
|
|
, type: 'string'
|
|
, default: 'CN=openstf.io, OU=openstf, O=openstf, L=PaloAlto, S=California, C=US'
|
|
})
|
|
.epilog('Each option can be be overwritten with an environment variable ' +
|
|
'by converting the option to uppercase, replacing dashes with ' +
|
|
'underscores and prefixing it with `STF_STORAGE_TEMP_` (e.g. ' +
|
|
'`STF_STORAGE_TEMP_SAVE_DIR`).')
|
|
}
|
|
|
|
module.exports.handler = function(argv) {
|
|
return require('../../units/storage/temp')({
|
|
port: argv.port
|
|
, saveDir: argv.saveDir
|
|
, maxFileSize: argv.maxFileSize
|
|
, bundletoolPath: argv.bundletoolPath
|
|
, keystore: {
|
|
ksPath: `/tmp/${argv.ks}.keystore`
|
|
, ksKeyAlias: argv.ksKeyAlias
|
|
, ksPass: argv.ksPass
|
|
, ksKeyPass: argv.ksKeyPass
|
|
, ksKeyalg: argv.ksKeyalg
|
|
, ksValidity: argv.ksValidity
|
|
, ksKeysize: argv.ksKeysize
|
|
, ksDname: argv.ksDname
|
|
}
|
|
})
|
|
}
|