-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathinit.js
103 lines (88 loc) · 3.22 KB
/
init.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
Copyright 2019 Adobe. All rights reserved.
This file is licensed to you 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 REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
const BaseCommand = require('../../BaseCommand')
const yeoman = require('yeoman-environment')
const path = require('path')
const fs = require('fs-extra')
const aioLogger = require('@adobe/aio-lib-core-logging')('@adobe/aio-cli-plugin-app:init', { provider: 'debug' })
const { flags } = require('@oclif/command')
const { importConfigJson, loadConfigFile, writeAio } = require('../../lib/import')
class InitCommand extends BaseCommand {
async run () {
const { args, flags } = this.parse(InitCommand)
if (args.path !== '.') {
const destDir = path.resolve(args.path)
fs.ensureDirSync(destDir)
process.chdir(destDir)
}
aioLogger.debug('creating new app with init command ', flags)
let projectName = path.basename(process.cwd())
let services = 'AdobeTargetSDK,AdobeAnalyticsSDK,CampaignSDK' // todo fetch those from console when no --import
if (flags.import) {
const config = loadConfigFile(flags.import).values
projectName = config.name // must be defined
services = (config.services && config.services.map(s => s.code).join(',')) || ''
}
const env = yeoman.createEnv()
this.log(`You are about to initialize the project '${projectName}'`)
// call code generator
env.register(require.resolve('@adobe/generator-aio-app'), 'gen')
const res = await env.run('gen', {
'skip-install': flags['skip-install'],
'skip-prompt': flags.yes,
'project-name': projectName,
'adobe-services': services
})
// config import
// always auto merge
const interactive = false
const merge = true
if (flags.import) {
return importConfigJson(flags.import, process.cwd(), { interactive, merge })
} else {
// write default services value to .aio
// todo use real imported values from console
writeAio({
services: services.split(',').map(code => ({ code }))
}, process.cwd(), { merge, interactive })
}
// finalize configuration data
this.log('✔ App initialization finished!')
return res
}
}
InitCommand.description = `Create a new Adobe I/O App
`
InitCommand.flags = {
...BaseCommand.flags,
yes: flags.boolean({
description: 'Skip questions, and use all default values',
default: false,
char: 'y'
}),
'skip-install': flags.boolean({
description: 'Skip npm installation after files are created',
char: 's',
default: false
}),
import: flags.string({
description: 'Import an Adobe I/O Developer Console configuration file',
char: 'i'
})
}
InitCommand.args = [
{
name: 'path',
description: 'Path to the app directory',
default: '.'
}
]
module.exports = InitCommand