-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathshipitfile-db-backup.js
230 lines (199 loc) · 6.1 KB
/
shipitfile-db-backup.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
225
226
227
228
229
230
const path = require('path');
const chalk = require('chalk');
const inquirer = require('inquirer');
module.exports = async function(shipit) {
const log = shipit.log.bind(shipit);
const host = process.env.SSH_HOST;
const user = process.env.SSH_USER;
shipit.initConfig({
default: {
workspace: path.resolve(__dirname, 'apps/db/current'),
localDbDir: path.resolve(__dirname, 'apps/db'),
},
test: {
deployTo: `/home/${user}/test/db`,
servers: `${user}@${host}`,
command: 'remote',
},
prod: {
deployTo: `/home/${user}/prod/db`,
servers: `${user}@${host}`,
command: 'remote',
},
dev: {
deployTo: path.resolve(__dirname, 'apps/db'),
servers: 'localhost',
command: 'local',
},
});
/**
* Create backup
*/
shipit.task('create', async function() {
const inputs = await inquirer.prompt([
{
type: 'input',
name: 'tag',
default: '',
message: 'Tag name? Extra name to identify the backup file',
},
]);
let tagName = '';
if (inputs.tag) {
tagName = '_' + inputs.tag;
}
const env = this.environment;
const dir = this.config.deployTo;
const date = new Date()
.toJSON()
.replace('T', '_')
.replace(':', '')
.replace(':', '')
.replace('.', '')
.substr(0, 17);
const file = `smdb_${env}_${date}${tagName}.zip`;
const dbDir = `${dir}/databases/smdb_${env}`;
// stop the server
await shipit[this.config.command](`pm2 stop ${dir}/pm2.json`);
// just zip the db directory, NOTE: we ignore .wal files, official backup does this to :)
await shipit[this.config.command](
`cd ${dbDir} && zip -r --exclude=*.wal* ${dir}/backups/${file} ./`,
);
// use the backup script, but we don't use it, it's hard to get password here and do it secure, for now at least :)
// await shipit[this.config.command](`${dir}/current/bin/backup.sh plocal:${dir}/current/databases/smdb_${env} admin admin ${dir}/backups/${file}`);
// start the server back
await shipit[this.config.command](`cd ${dir} && pm2 startOrReload ./pm2.json`);
});
/**
* RESTORE
*/
shipit.task('restore', async function() {
const env = this.environment;
const date = new Date()
.toJSON()
.replace('T', '_')
.replace(':', '')
.replace(':', '')
.replace('.', '')
.substr(0, 17);
const dir = this.config.deployTo;
let backupsStr = await shipit[this.config.command](`ls ${dir}/backups`);
if (backupsStr[0]) backupsStr = backupsStr[0]; // if remote it will be array, so lets convert it :)
const backups = backupsStr.stdout
.split('\n')
.filter(v => !!v)
.reverse();
let databasesStr = await shipit[this.config.command](`ls ${dir}/databases`);
if (databasesStr[0]) databasesStr = databasesStr[0];
const databases = databasesStr.stdout.split('\n').filter(v => !!v);
databases.unshift('smdb_' + env);
const inputs = await inquirer.prompt([
{
type: 'list',
name: 'file',
message: 'Select BACKUP FILE to restore backup from',
choices: backups,
default: backups[0],
},
{
type: 'list',
name: 'db',
message: 'Select DATABASE to restore to',
choices: databases,
default: databases[0],
},
]);
if (!inputs.file) {
console.log('NO FILE SELECTED');
return;
}
if (!inputs.db) {
console.log('NO DB SELECTED');
return;
}
// stop server
await shipit[this.config.command](`pm2 stop ${dir}/pm2.json`);
const restoreToDir = `${dir}/databases/${inputs.db}`
const restoreFromFile = `${dir}/backups/${inputs.file}`
// ensure dir exists
await shipit[this.config.command](
`mkdir -p ${restoreToDir}`,
);
// backup db directory, just in case
await shipit[this.config.command](
`mv ${restoreToDir} ${restoreToDir}_${date}`,
);
// unzip backup
await shipit[this.config.command](
`unzip ${restoreFromFile} -d ${restoreToDir}`,
);
// official backup restore
// await shipit.local(`${dir}/current/bin/console.sh "CONNECT plocal:${dir}/current/databases/smdb_dev admin root; RESTORE DATABASE ${dir}/backups/${inputs.file}"`);
// start server
await shipit[this.config.command](`cd ${dir} && pm2 startOrReload ./pm2.json`);
});
/**
* Download backup from remote
*/
shipit.task('download', async function() {
const dir = this.config.deployTo;
const env = this.environment;
let backupsStr = await shipit.remote(`ls ${dir}/backups`);
if (backupsStr[0]) backupsStr = backupsStr[0]; // if remote it will be array, so lets convert it :)
const backups = backupsStr.stdout
.split('\n')
.filter(v => !!v)
.reverse();
const inputs = await inquirer.prompt([
{
type: 'list',
name: 'file',
message: `Select BACKUP FILE to download from ${env}`,
choices: backups,
default: backups[0],
},
]);
if (!inputs.file) {
console.log('NO FILE SELECTED');
return;
}
// download the file
await shipit.remoteCopy(
`${dir}/backups/${inputs.file}`,
`${this.config.localDbDir}/backups/${inputs.file}`,
{
direction: 'remoteToLocal',
},
);
});
/**
* PUSH backup to remote
*/
shipit.task('upload', async function() {
const dir = this.config.deployTo;
const env = this.environment;
let backupsStr = await shipit.local(`ls ${this.config.localDbDir}/backups`);
const backups = backupsStr.stdout
.split('\n')
.filter(v => !!v)
.reverse();
const inputs = await inquirer.prompt([
{
type: 'list',
name: 'file',
message: `Select BACKUP FILE to UPLOAD to ${env} env`,
choices: backups,
default: backups[0],
},
]);
if (!inputs.file) {
console.log('NO FILE SELECTED');
return;
}
// download the file
await shipit.remoteCopy(
`${this.config.localDbDir}/backups/${inputs.file}`,
`${dir}/backups/${inputs.file}`,
);
});
};