-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ts
136 lines (122 loc) · 3.79 KB
/
configure.ts
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
* @brighthustle/adonisjs-whatsapp
*
* (c) Brighthustle
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import type Configure from '@adonisjs/core/commands/configure'
import { stubsRoot } from './stubs/main.js'
import string from '@adonisjs/core/helpers/string'
const ENV_VARIABLES = {
lucid: ['DB_NAME', 'DB_CONNECTION'],
local: ['WABA_PHONE_ID', 'WABA_ID', 'WABA_TOKEN', 'WABA_VERIFY'],
}
const KNOWN_PROVIDERS = Object.keys(ENV_VARIABLES)
export async function configure(command: Configure) {
let selectedProviders: string[] | string | undefined = command.parsedFlags.providers
let tableName: string | null = null
async function getModelName(): Promise<string> {
return await command.prompt.ask('Enter model name to be used for whatsapp config', {
validate(value) {
return !value || !value.trim().length ? 'Model name is required.' : true
},
})
}
/**
* Otherwise force prompt for selection
*/
if (!selectedProviders) {
selectedProviders = await command.prompt.multiple(
'Select the providers you plan to use',
KNOWN_PROVIDERS,
{
validate(value) {
return !value || !value.length ? 'Select a provider to configure the package' : true
},
}
)
}
/**
* Cast CLI string value to an array
*/
let providers = (
typeof selectedProviders === 'string' ? [selectedProviders] : selectedProviders
) as string[]
const unknownProvider = providers.find((provider) => !KNOWN_PROVIDERS.includes(provider))
if (unknownProvider) {
command.exitCode = 1
command.logger.error(
`Invalid provider "${unknownProvider}"! Supported providers are: ${string.sentence(
KNOWN_PROVIDERS
)}`
)
return
}
const codemods = await command.createCodemods()
if (providers.includes('lucid')) {
const modelNameInput: string = await getModelName()
const modelName = string
.create(modelNameInput.replace(/(\.ts|\.js)$/, ''))
.singular()
.pascalCase()
tableName = string.create(modelName).snakeCase().plural().toString()
const migrationName = `${Date.now()}_${tableName}.ts`
if (modelNameInput) {
/**
* Publish model file
*/
await codemods.makeUsingStub(stubsRoot, `make/model/whatsapp_config.stub`, {
name: modelNameInput,
})
/**
* Publish migration file
*/
await codemods.makeUsingStub(stubsRoot, `make/migration/whatsapp_config.stub`, {
fileName: migrationName,
tableName: tableName,
})
}
}
/**
* Publish config file
*/
await codemods.makeUsingStub(stubsRoot, 'config/whatsapp.stub', {
providers: providers,
tableName: tableName,
})
/**
* Publish start file
*/
await codemods.makeUsingStub(stubsRoot, 'start/whatsapp.stub', {})
/**
* Add Provider
*/
await codemods.updateRcFile((rcFile: any) => {
rcFile.addProvider('@brighthustle/adonisjs-whatsapp/whatsapp_provider')
})
/**
* Define env variables for the selected transports
*/
await codemods.defineEnvVariables(
providers.reduce<Record<string, string>>((result, provider) => {
ENV_VARIABLES[provider as keyof typeof ENV_VARIABLES].forEach((envVariable) => {
result[envVariable] = ''
})
return result
}, {})
)
/**
* Define env variables validation for the selected transports
*/
await codemods.defineEnvValidations({
leadingComment: 'Variables for configuring the whatsapp package',
variables: providers.reduce<Record<string, string>>((result, provider) => {
ENV_VARIABLES[provider as keyof typeof ENV_VARIABLES].forEach((envVariable) => {
result[envVariable] = 'Env.schema.string()'
})
return result
}, {}),
})
}