-
Notifications
You must be signed in to change notification settings - Fork 573
/
Copy pathsecurity.js
227 lines (206 loc) · 6.61 KB
/
security.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
'use strict';
var bcrypt = require('bcryptjs');
var crypto = require('crypto');
var fs = require('fs');
var Promise = require('bluebird');
var qetag = require('../utils/qetag');
var _ = require('lodash');
var log4js = require('log4js');
var log = log4js.getLogger("cps:utils:security");
var AppError = require('../app-error');
var randToken = require('rand-token').generator({
chars: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
source: crypto.randomBytes
});
var security = {};
module.exports = security;
security.md5 = function (str) {
var md5sum = crypto.createHash('md5');
md5sum.update(str);
str = md5sum.digest('hex');
return str;
}
security.passwordHashSync = function(password){
return bcrypt.hashSync(password, bcrypt.genSaltSync(12));
}
security.passwordVerifySync = function(password, hash){
return bcrypt.compareSync(password, hash)
}
security.randToken = function(num) {
return randToken.generate(num);
}
security.parseToken = function(token) {
return {identical: token.substr(-9,9), token:token.substr(0,28)}
}
security.fileSha256 = function (file) {
return new Promise((resolve, reject) => {
var rs = fs.createReadStream(file);
var hash = crypto.createHash('sha256');
rs.on('data', hash.update.bind(hash));
rs.on('error', (e) => {
reject(e);
});
rs.on('end', () => {
resolve(hash.digest('hex'));
});
});
}
security.stringSha256Sync = function (contents) {
var sha256 = crypto.createHash('sha256');
sha256.update(contents);
return sha256.digest('hex');
}
security.packageHashSync = function (jsonData) {
var sortedArr = security.sortJsonToArr(jsonData);
var manifestData = _.filter(sortedArr, (v) => {
return !security.isPackageHashIgnored(v.path);
}).map((v) => {
return v.path + ':' + v.hash;
});
log.debug('packageHashSync manifestData:', manifestData);
var manifestString = JSON.stringify(manifestData.sort());
manifestString = _.replace(manifestString, /\\\//g, '/');
log.debug('packageHashSync manifestString:', manifestString);
return security.stringSha256Sync(manifestString);
}
//参数为buffer或者readableStream或者文件路径
security.qetag = function (buffer) {
if (typeof buffer === 'string') {
try {
log.debug(`Check upload file ${buffer} fs.R_OK`);
fs.accessSync(buffer, fs.R_OK);
log.debug(`Pass upload file ${buffer}`);
} catch (e) {
log.error(e);
return Promise.reject(new AppError.AppError(e.message))
}
}
log.debug(`generate file identical`)
return new Promise((resolve, reject) => {
qetag(buffer, (data)=>{
log.debug('identical:', data);
resolve(data)
});
});
}
security.sha256AllFiles = function (files) {
return new Promise((resolve, reject) => {
var results = {};
var length = files.length;
var count = 0;
files.forEach((file) => {
security.fileSha256(file)
.then((hash) => {
results[file] = hash;
count++;
if (count == length) {
resolve(results);
}
});
});
});
}
security.uploadPackageType = function (directoryPath) {
return new Promise((resolve, reject) => {
var recursive = require("recursive-readdir");
var path = require('path');
var slash = require("slash");
recursive(directoryPath, (err, files) => {
if (err) {
log.error(new AppError.AppError(err.message));
reject(new AppError.AppError(err.message));
} else {
if (files.length == 0) {
log.debug(`uploadPackageType empty files`);
reject(new AppError.AppError("empty files"));
} else {
var constName = require('../const');
const AREGEX=/android\.bundle/
const AREGEX_IOS=/main\.jsbundle/
var packageType = 0;
_.forIn(files, function (value) {
if (AREGEX.test(value)) {
packageType = constName.ANDROID;
return false;
}
if (AREGEX_IOS.test(value)) {
packageType = constName.IOS;
return false;
}
});
log.debug(`uploadPackageType packageType: ${packageType}`);
resolve(packageType);
}
}
});
});
}
// some files are ignored in calc hash in client sdk
// https://github.com/Microsoft/react-native-code-push/pull/974/files#diff-21b650f88429c071b217d46243875987R15
security.isHashIgnored = function (relativePath) {
if (!relativePath) {
return true;
}
const IgnoreMacOSX = '__MACOSX/';
const IgnoreDSStore = '.DS_Store';
return relativePath.startsWith(IgnoreMacOSX)
|| relativePath === IgnoreDSStore
|| relativePath.endsWith(IgnoreDSStore);
}
security.isPackageHashIgnored = function (relativePath) {
if (!relativePath) {
return true;
}
// .codepushrelease contains code sign JWT
// it should be ignored in package hash but need to be included in package manifest
const IgnoreCodePushMetadata = '.codepushrelease';
return relativePath === IgnoreCodePushMetadata
|| relativePath.endsWith(IgnoreCodePushMetadata)
|| security.isHashIgnored(relativePath);
}
security.calcAllFileSha256 = function (directoryPath) {
return new Promise((resolve, reject) => {
var recursive = require("recursive-readdir");
var path = require('path');
var slash = require("slash");
recursive(directoryPath, (error, files) => {
if (error) {
log.error(error);
reject(new AppError.AppError(error.message));
} else {
// filter files that should be ignored
files = files.filter((file) => {
var relative = path.relative(directoryPath, file);
return !security.isHashIgnored(relative);
});
if (files.length == 0) {
log.debug(`calcAllFileSha256 empty files in directoryPath:`, directoryPath);
reject(new AppError.AppError("empty files"));
}else {
security.sha256AllFiles(files)
.then((results) => {
var data = {};
_.forIn(results, (value, key) => {
var relativePath = path.relative(directoryPath, key);
var matchresult = relativePath.match(/(\/|\\).*/);
if (matchresult) {
relativePath = path.join('CodePush', matchresult[0]);
}
relativePath = slash(relativePath);
data[relativePath] = value;
});
log.debug(`calcAllFileSha256 files:`, data);
resolve(data);
});
}
}
});
});
}
security.sortJsonToArr = function (json) {
var rs = [];
_.forIn(json, (value, key) => {
rs.push({path:key, hash: value})
});
return _.sortBy(rs, (o) => o.path);
}