-
Notifications
You must be signed in to change notification settings - Fork 285
/
upgrade.js
179 lines (170 loc) · 5.87 KB
/
upgrade.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
var async = require('async');
var { argv } = require('optimist');
var chalk = require('chalk');
var path = require('path');
var configuration = require('./lib/configuration');
var logger = require('./lib/logger');
var origin = require('./lib/application');
var OutputConstants = require('./lib/outputmanager').Constants;
var installHelpers = require('./lib/installHelpers');
var IS_INTERACTIVE = process.argv.length === 2;
var app = origin();
/**
* Start of execution
*/
start();
function start() {
installHelpers.checkPrimaryDependencies(function(error) {
if(error) {
return installHelpers.exit(1, error.message);
}
// don't show any logger messages in the console
logger.level('console','error');
// start the server first
app.run({ skipVersionCheck: true, skipStartLog: true });
app.on('serverStarted', function() {
installHelpers.checkSecondaryDependencies(function(error) {
ensureRepoValues();
getUserInput();
});
});
});
}
function ensureRepoValues() {
if(configuration.getConfig('frameworkRepository') === '') {
configuration.setConfig('frameworkRepository', installHelpers.DEFAULT_FRAMEWORK_REPO);
}
if(configuration.getConfig('authoringToolRepository') === '') {
configuration.setConfig('authoringToolRepository', installHelpers.DEFAULT_SERVER_REPO);
}
}
function getUserInput() {
// properties for the prompts
var confirmProperties = [
{
name: 'continue',
message: 'Continue?',
type: 'confirm',
default: true
}
];
var upgradeProperties = [
{
name: 'updateAutomatically',
message: 'Update automatically?',
type: 'confirm',
default: true
}
];
var tagProperties = [
{
name: 'authoringToolGitTag',
type: 'input',
message: 'Specific git revision to be used for the authoring tool. Accepts any valid revision type (e.g. branch/tag/commit)',
default: ''
},
{
name: 'frameworkGitTag',
type: 'input',
message: 'Specific git revision to be used for the framework. Accepts any valid revision type (e.g. branch/tag/commit)',
default: ''
}
];
if (IS_INTERACTIVE) {
console.log(`\nThis script will update the ${app.polyglot.t('app.productname')} and/or Adapt Framework. Would you like to continue?`);
}
installHelpers.getInput(confirmProperties, argv, function(result) {
if(!installHelpers.inputHelpers.toBoolean(result.continue)) {
return installHelpers.exit();
}
installHelpers.getInput(upgradeProperties, argv, function(result) {
console.log('');
if(installHelpers.inputHelpers.toBoolean(result.updateAutomatically)) {
return checkForUpdates(function(error, updateData) {
if(error) {
return installHelpers.exit(1, error);
}
doUpdate(updateData);
});
}
// no automatic update, so get the intended versions
installHelpers.getInput(tagProperties, argv, function(result) {
console.log('');
if(!result.authoringToolGitTag && !result.frameworkGitTag) {
return installHelpers.exit(1, 'Cannot update sofware if no revisions are specified.');
}
doUpdate({
adapt_authoring: result.authoringToolGitTag,
adapt_framework: result.frameworkGitTag
});
});
});
});
}
function checkForUpdates(callback) {
var isCustomFramework = configuration.getConfig('frameworkRepository') !== installHelpers.DEFAULT_FRAMEWORK_REPO;
var isCustomServer = configuration.getConfig('authoringToolRepository') !== installHelpers.DEFAULT_SERVER_REPO;
if(isCustomFramework || isCustomServer) {
return callback('Cannot perform an automatic upgrade when custom repositories are used.');
}
installHelpers.showSpinner('Checking for updates');
installHelpers.getUpdateData(function(error, data) {
installHelpers.hideSpinner();
if(error) {
return callback(error);
}
if(!data) {
return installHelpers.exit(0, `Your software is already up-to-date, no need to upgrade.`);
}
console.log(chalk.underline('Software updates found.\n'));
callback(null, data);
});
}
function doUpdate(data) {
async.series([
function upgradeAuthoring(cb) {
if (installHelpers.inputHelpers.isFalsy(data.adapt_authoring)) {
return cb();
}
installHelpers.updateAuthoring({
repository: configuration.getConfig('authoringToolRepository'),
revision: data.adapt_authoring,
directory: configuration.serverRoot
}, function(error) {
if(error) {
console.log(`Failed to update ${configuration.serverRoot} to '${data.adapt_authoring}'`);
return cb(error);
}
console.log(`${app.polyglot.t('app.productname')} upgraded to ${data.adapt_authoring}`);
cb();
});
},
function upgradeFramework(cb) {
if (installHelpers.inputHelpers.isFalsy(data.adapt_framework)) {
return cb();
}
var dir = path.join(configuration.tempDir, configuration.getConfig('masterTenantID'), OutputConstants.Folders.Framework);
installHelpers.updateFramework({
repository: configuration.getConfig('frameworkRepository'),
revision: data.adapt_framework,
directory: dir
}, function(error) {
if(error) {
console.log(`Failed to upgrade ${dir.replace(configuration.serverRoot, '')} to ${data.adapt_framework}`);
return cb(error);
}
console.log(`Adapt framework upgraded to ${data.adapt_framework}`);
cb();
});
},
function runMigrations(callback) {
installHelpers.runMigrations(callback);
}
], function(error) {
if(error) {
console.error('ERROR:', error);
return installHelpers.exit(1, 'Upgrade was unsuccessful. Please check the console output.');
}
installHelpers.exit(0, `Your ${app.polyglot.t('app.productname')} was updated successfully.`);
});
}