-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
224 lines (173 loc) · 6.02 KB
/
index.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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*eslint-env node*/
'use strict';
const
DeployClient = require('./lib/deploy-client'),
DeployPluginBase = require('ember-cli-deploy-plugin'),
Bluebird = require('bluebird'); // Knex uses Bluebird, so we will too.
//
// Private functions
//
const
joinPath = require('path').join,
readFile = Bluebird.promisify(require('fs').readFile);
function errorMessage(error) {
this.log(error, { color: 'red' });
return Bluebird.reject(error);
}
//
// Public API
//
const DeployPlugin = DeployPluginBase.extend({
options: null,
name: null,
init(options) {
this.options = options;
this.name = options.name;
this._super();
},
defaultConfig: {
allowOverwrite: false,
connection: {},
deployClient: (context, pluginHelper) => {
// TODO: replace let with destructured context
let tunnel = context.tunnel;
const
client = pluginHelper.readConfig('client'),
connection = pluginHelper.readConfig('connection'),
migrations = pluginHelper.readConfig('migrations'),
options = pluginHelper.readConfig('sqlOptions'),
allowOverwrite = pluginHelper.readConfig('allowOverwrite'),
maxRecentUploads = pluginHelper.readConfig('maxRecentUploads');
if (!(connection.port || connection.socketPath) && tunnel && tunnel.srcPort) {
connection.host = connection.host || 'localhost';
connection.port = tunnel.srcPort;
}
return new DeployClient({
client,
connection,
migrations: Object.assign({
directory: `${__dirname}/migrations`,
tableName: 'ember_cli_deploy_migrations'
}, migrations),
options,
allowOverwrite,
maxRecentUploads
});
},
didDeployMessage: (context) => {
// TODO: replace this statement and lets with destructured context
context.revisionData = context.revisionData || {};
let
revisionKey = context.revisionData.revisionKey,
activatedRevisionKey = context.revisionData.activatedRevisionKey,
deployTarget = context.deployTarget;
if (revisionKey && !activatedRevisionKey) {
return `Deployed but did not activate revision \`${revisionKey}'. To activate, run:\n` +
` ember deploy:activate ${deployTarget} --revision=${revisionKey}\n`;
}
},
distDir: context => context.distDir,
filePattern: 'index.html',
maxRecentUploads: 10,
migrations: {},
revisionKey: (context) => {
// TODO: replace these statements and lets with destructured context
context.commandOptions = context.commandOptions || {};
context.revisionData = context.revisionData || {};
let
commandRevisionKey = context.commandOptions.revision,
contextRevisionKey = context.revisionData.revisionKey;
return commandRevisionKey || contextRevisionKey;
},
sqlOptions: {},
tableName: context => `${context.project.name().replace(/-/g, '_')}_bootstrap`
},
requiredConfig: ['client'],
//
// Pipeline hooks
//
setup() {
const
deployClient = this.readConfig('deployClient'),
tableName = this.readConfig('tableName');
return deployClient.sanityCheck({ tableName })
.catch(errorMessage.bind(this));
},
fetchInitialRevisions() {
const
deployClient = this.readConfig('deployClient'),
tableName = this.readConfig('tableName');
this.log(`Listing initial revisions in table: \`${tableName}'`, { verbose: true });
return deployClient.fetchRevisions({ tableName })
.then(initialRevisions => ({ initialRevisions }))
.catch(errorMessage.bind(this));
},
upload() {
const
deployClient = this.readConfig('deployClient'),
tableName = this.readConfig('tableName'),
revisionKey = this.readConfig('revisionKey'),
filePath = joinPath(
this.readConfig('distDir'),
this.readConfig('filePattern')
);
this.log(`Uploading \`${filePath}'`, { verbose: true });
return readFile(filePath, 'utf8')
.then(value => deployClient.upload({ tableName, revisionKey, value }))
.then((args) => {
// TODO: replace lets with destructured args
let
tableName = args.tableName,
revisionKey = args.revisionKey;
this.log(`Uploaded to table \`${tableName}' with key \`${revisionKey}'`, { verbose: true });
return { tableName, revisionKey };
})
.catch(errorMessage.bind(this));
},
willActivate() {
const
deployClient = this.readConfig('deployClient'),
tableName = this.readConfig('tableName');
return deployClient.activeRevisionKey({ tableName })
.then(previousRevisionKey => ({ revisionData: { previousRevisionKey } }))
.catch(errorMessage.bind(this));
},
activate() {
const
deployClient = this.readConfig('deployClient'),
revisionKey = this.readConfig('revisionKey'),
tableName = this.readConfig('tableName');
this.log(`Activating revision \`${revisionKey}'`, { verbose: true });
return deployClient.activateRevision({ tableName, revisionKey })
.then((args) => {
// TODO: replace let with destructured args
let revisionKey = args.revisionKey;
this.log(`✔ Activated revision \`${revisionKey}'`);
return { revisionData: { activatedRevisionKey: revisionKey } };
})
.catch(errorMessage.bind(this));
},
fetchRevisions() {
const
deployClient = this.readConfig('deployClient'),
tableName = this.readConfig('tableName');
this.log(`Listing revisions in table: \`${tableName}'`);
return deployClient.fetchRevisions({ tableName })
.then(revisions => ({ revisions }))
.catch(errorMessage.bind(this));
},
didDeploy() {
const didDeployMessage = this.readConfig('didDeployMessage');
if (didDeployMessage) {
this.log(didDeployMessage);
}
},
teardown() {
const deployClient = this.readConfig('deployClient');
deployClient.destroy();
}
});
module.exports = {
name: 'ember-cli-deploy-sql',
createDeployPlugin: options => new DeployPlugin(options)
};