-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreset.js
130 lines (72 loc) · 2.12 KB
/
reset.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
const mysql = require( 'mysql' );
const fs = require( 'fs' );
const path = require( 'path' );
const globalConfigs = require ( './config/' );
const { UPLOADS } = require( './config/paths' );
const config = globalConfigs.mysql;
var connection = mysql.createPool( {
host: config.host,
user: config.user,
password: config.password,
database : config.database,
multipleStatements: true
} );
var deleteFolderRecursive = function ( path ) {
if( fs.existsSync( path ) ) {
fs.readdirSync( path ).forEach( function ( file ){
var curPath = path + "/" + file;
if( fs.lstatSync( curPath ).isDirectory() ) { // recurse
deleteFolderRecursive( curPath );
} else { // delete file
fs.unlinkSync( curPath );
}
} );
fs.rmdirSync( path );
}
};
function _promiseTruncate (){
return new Promise( ( resolve, reject ) => {
connection.query( 'TRUNCATE TABLE contributions', function ( err, rows ) {
if ( err ) {
reject( 'Error connecting to database: ' + err.stack );
}else{
connection.end();
resolve( 'Truncated database' );
}
} );
} );
}
function _promiseRemoveUploads (){
var uploadDir = UPLOADS;
return new Promise( ( resolve, reject ) => {
fs.access( uploadDir, fs.F_OK, function ( err ) {
if ( err ) {
resolve( "Did not remove upload directory because it doesn't exist" );
} else {
deleteFolderRecursive( uploadDir );
resolve( 'Removed upload directory' );
}
} );
} );
}
function _promiseRemoveBuild (){
var buildDir = path.join( __dirname, '/public/build' );
return new Promise( ( resolve, reject ) => {
fs.access( buildDir, fs.F_OK, function ( err ) {
if ( err ) {
resolve( "Did not remove build directory because it doesn't exist" );
} else {
deleteFolderRecursive( buildDir );
resolve( 'Removed build directory' );
}
} );
} );
}
return Promise.all( [ _promiseTruncate(), _promiseRemoveUploads(), _promiseRemoveBuild() ] ).then( ( values ) => {
console.log( values[ 0 ] );
console.log( values[ 1 ] );
console.log( values[ 2 ] );
return values;
} ).catch( ( error ) => {
console.log( error );
} );