-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
439 lines (401 loc) · 15.2 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/**
* @Author: jimmydaddy
* @Date: 2017-04-24 01:28:58
* @Email: heyjimmygo@gmail.com
* @Filename: index.js
* @Last modified by: jimmydaddy
* @Last modified time: 2017-06-27 01:41:15
* @License: GNU General Public License(GPL)
* @Copyright: ©2015-2017 www.songxiaocai.com 宋小菜 All Rights Reserved.
*/
'use strict'
import ReactNative, { NetInfo, Platform } from 'react-native'
import 'whatwg-fetch'
import Obj from './lib/obj'
import Str from './lib/str'
import FS from './lib/fs'
const DoctorStrangeUpdaterModule = ReactNative.NativeModules.DoctorStrangeUpdater
/**
* default value
*/
// default source root
const SOURCE_ROOT = FS.LibraryDirectoryPath + '/JSCode'
// default version host
const DEFAULT_VERSION_HOST = 'http://doctorstrange.songxiaocai.org/update/version/selectlatest'
// default data download host
const DEFAULT_DATA_DOWNLOAD_HOST = 'http://doctorstrange.songxiaocai.org/update/download'
const DEFAULT_DEBUG_VERSION_HOST = 'http://test.doctorstrange.songxiaocai.org/update/version/selectlatest'
const DEFAULT_DEBUG_DATA_DOWNLOAD_HOST = 'http://test.doctorstrange.songxiaocai.org/update/download'
const DEFAULT_OPTIONS = {
versionHost: DEFAULT_VERSION_HOST,
downloadHost: DEFAULT_DATA_DOWNLOAD_HOST,
debugVersionHost: DEFAULT_DEBUG_VERSION_HOST,
debugDownloadHost: DEFAULT_DEBUG_DATA_DOWNLOAD_HOST
}
class DoctorStrangeUpdater {
/**
* constant export
**/
// jscode version
JSCODE_VERSION = DoctorStrangeUpdaterModule.jsCodeVersion;
// App version
APP_VERISON = DoctorStrangeUpdaterModule.appVersion;
// BUNDLEID
BUNDLEID = DoctorStrangeUpdaterModule.bundleIdentifier;
// system version
SYSTEM_VERSION = DoctorStrangeUpdaterModule.systemVersion;
// buildnumber
BUILD_NUMBER = DoctorStrangeUpdaterModule.buildNumber;
// brand
BRAND = DoctorStrangeUpdaterModule.brand;
//
BUNDLE_PATH = SOURCE_ROOT + '/doctor.jsbundle';
/**
* constants export end
**/
constructor (options) {
if (!Obj.isEmpty(options)) {
this.options = options
} else {
this.options = DEFAULT_OPTIONS
}
this.currentMetaData = DoctorStrangeUpdaterModule.currentMetaData || {}
const {versionHost, downloadHost, allowCellularDataUse, showInfo, DEBUG, debugVersionHost, debugDownloadHost} = this.options
// set hosts
if (DEBUG) {
this.versionHost = debugVersionHost || DEFAULT_DEBUG_VERSION_HOST
this.downloadHost = debugDownloadHost || DEFAULT_DEBUG_DATA_DOWNLOAD_HOST
} else {
this.versionHost = versionHost || DEFAULT_VERSION_HOST
this.downloadHost = downloadHost || DEFAULT_DATA_DOWNLOAD_HOST
}
this.allowCellularDataUse = allowCellularDataUse
typeof showInfo === 'boolean' ? DoctorStrangeUpdaterModule.showInfo(showInfo) : null
}
/**
* [checkUpdate checkupdate]
* @method checkUpdate
* @return {[type]} [description]
* @author jimmy
*/
checkUpdate = () => {
DoctorStrangeUpdaterModule.getFirstLoad().then((obj) => {
let prevRollBackVersion = obj.updateFailVersion
// 如果不是更新后第一次加载且第一次加载成功则按正常程序检查更新
if (!obj.firstLoad) {
this._checkUpdate(prevRollBackVersion)
}
}).catch((err) => {
this._checkUpdate()
})
}
_checkUpdate = (prevRollBackVersion: String) => {
setTimeout(() => {
this.initSourceDir().then((result) => {
this.initSuccess = result
if (this.initSuccess) {
let params = {
bundleId: this.BUNDLEID,
version: this.JSCODE_VERSION,
platform: Platform.OS === 'ios' ? 1 : 2
}
fetch(
this.versionHost,
{
method: 'post',
headers: {
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Content-Type': 'application/json'
},
body: JSON.stringify(params)
})
.then((response) => {
if (response.status >= 400) {
this.options.checkError && this.options.checkError()
}
return response
})
.then((response) => {
return response.json()
})
.then((res) => {
if (prevRollBackVersion == res.version) {
return
}
this.newVersion = res.version
this.newContainerVersion = res.minContainerVersion
this.patchId = res.patchId
this.currentMetaData = res
if (res.serverUrl) {
this.downloadHost = res.serverUrl
}
if (this.newVersion && this.newContainerVersion) {
let compareResult = Str.compareContainerVersion(this.APP_VERISON, this.newContainerVersion)
if (compareResult) {
if (Str.compareVersion(this.JSCODE_VERSION, this.newVersion)) {
this.currentZipDataExist().then((value) => {
if (value && this.patchId) {
this.downLoadPatch()
} else {
this.downLoad()
}
})
} else {
console.log('already updated')
this.options.alreadyUpdated && this.options.alreadyUpdated()
}
} else {
if (compareResult != null) {
console.log('app version too low please upgrade')
this.options.needUpdateApp && this.options.needUpdateApp()
}
}
}
})
.catch((err) => {
this.options.checkError && this.options.checkError()
})
}
}).catch((err) => {
this.initSuccess = false
this.options.onError && this.options.onError()
this.reportError(err, 'init fail')
})
}, 1000)
}
setJsRunSuccess = () => {
this.currentMetaData[DoctorStrangeUpdaterModule.firstLoadkey] = false
this.currentMetaData[DoctorStrangeUpdaterModule.firstLoadSuccess] = true
DoctorStrangeUpdaterModule.setMetaData(this.currentMetaData, DoctorStrangeUpdaterModule.currentMetaDataKey)
}
reportError = (err, errorMessage) => {
const {errorReportHost, debugErrorReportHost, DEBUG} = this.options
let host = errorReportHost
if (DEBUG) {
host = debugErrorReportHost
}
if (host) {
let params = {
error: err,
errorMessage: errorMessage,
deviceInfo: {
appVersion: this.APP_VERISON,
systemVersion: this.SYSTEM_VERSION,
buildNumber: this.BUILD_NUMBER,
brand: this.BRAND,
jsVersion: this.JSCODE_VERSION
}
}
fetch(host,
{
method: 'post',
headers: {
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Content-Type': 'application/json'
},
body: JSON.stringify(params)
})
}
}
showMessageOnStatusBar = (msg: String, color: String) => {
DoctorStrangeUpdaterModule.showMessageOnStatusBar(msg, color)
}
/**
* [getDoctorStrangeUpdater get instance]
* @type {[type]}
*/
static getDoctorStrangeUpdater = (options) => {
if (!DoctorStrangeUpdater.instance) {
DoctorStrangeUpdater.instance = new DoctorStrangeUpdater(options)
} else {
if (options) {
DoctorStrangeUpdater.instance = new DoctorStrangeUpdater(options)
}
}
return DoctorStrangeUpdater.instance
}
async initSourceDir () {
let exists = await FS.exists(SOURCE_ROOT)
if (!exists) {
let success = await FS.mkdir(SOURCE_ROOT)
return success
} else {
return exists
}
}
reload = () => {
DoctorStrangeUpdaterModule.reload(this.BUNDLE_PATH)
}
/**
* private
*/
/**
* [patch patch file]
* @method patch
* @param {[type]} patchPath [description]
* @param {[type]} originPath [description]
* @param {[type]} destination [description]
* @return {[type]} [description]
* @author jimmy
*/
patch = (patchPath, originPath, destination) => {
return DoctorStrangeUpdaterModule.patch(patchPath, originPath, destination)
}
downLoadPatch = () => {
DoctorStrangeUpdaterModule.backUpVersion()
// 首先拷贝源文件
const tempDataFile = SOURCE_ROOT + '/temp.zip'
FS.copyFile(SOURCE_ROOT + '/doctor.zip', tempDataFile).then((value) => {
const progress = (data) => {
const percentage = data.bytesWritten / 1024 / 1024
this.options.downloadProgress && this.options.downloadProgress(percentage)
}
const begin = (res) => {
this.options.downloadStart && this.options.downloadStart()
}
const progressDivider = 1
const downloadDestPath = `${SOURCE_ROOT}/temp.patch`
const platform = Platform.OS === 'ios' ? 1 : 2
const ret = FS.downloadFile({
fromUrl: this.downloadHost + '?patchId=' + this.patchId + '&bundleId=' + this.BUNDLEID + '&platform=' + platform,
toFile: downloadDestPath,
begin,
progress,
background: true,
progressDivider
})
ret.promise.then((res) => {
this.options.downloadEnd && this.options.downloadEnd()
this.patch(downloadDestPath, tempDataFile, SOURCE_ROOT + '/doctor.zip')
.then((value) => {
FS.uzipFileAtPath(value, SOURCE_ROOT).then(
(res) => {
FS.exists(res).then((exist) => {
if (exist) {
this.currentMetaData[DoctorStrangeUpdaterModule.firstLoadkey] = true
this.currentMetaData[DoctorStrangeUpdaterModule.firstLoadSuccess] = false
DoctorStrangeUpdaterModule.setMetaData(this.currentMetaData, DoctorStrangeUpdaterModule.currentMetaDataKey)
DoctorStrangeUpdaterModule.setMetaData(DoctorStrangeUpdaterModule.currentMetaData, DoctorStrangeUpdaterModule.previousMetaDataKey)
this.BUNDLE_PATH = res
if (this.options.askReload) {
this.options.askReload((reload) => {
if (reload) {
this.reload()
}
})
} else {
this.reload()
}
}
}).catch((err) => {
this.options.onError && this.options.onError()
this.reportError(err, 'js bundle not exist error [patch]')
})
}).catch((err) => {
this.options.onError && this.options.onError()
this.reportError(err, 'unzipfile error [patch]')
})
}).catch((err) => {
console.log('patch err')
this.options.onError && this.options.onError()
this.reportError(err, 'patch error')
})
}).catch((err) => {
this.options.downloadError && this.options.downloadError(err)
this.reportError(err, 'download error')
})
}).catch((err) => {
console.log(err)
this.downLoad()
this.reportError(err, 'copy temp files error')
})
}
downLoad = () => {
NetInfo.fetch().done((reach) => {
if (reach != 'none' && reach != 'NONE') {
if (this.allowCellularDataUse) {
this.downLoadData()
} else if (reach != 'cell' && reach != 'MOBILE') {
this.downLoadData()
}
}
})
}
downLoadData = () => {
DoctorStrangeUpdaterModule.backUpVersion()
const progress = (data) => {
const percentage = data.bytesWritten / 1024 / 1024
this.options.downloadProgress && this.options.downloadProgress(percentage)
}
const begin = (res) => {
this.options.downloadStart && this.options.downloadStart()
}
const progressDivider = 1
const downloadDestPath = `${SOURCE_ROOT}/doctor.zip`
const platform = Platform.OS === 'ios' ? 1 : 2
const ret = FS.downloadFile({
fromUrl: this.downloadHost + '?version=' + this.newVersion + '&bundleId=' + this.BUNDLEID + '&platform=' + platform,
toFile: downloadDestPath,
begin,
progress,
background: true,
progressDivider
})
ret.promise.then((res) => {
this.options.downloadEnd && this.options.downloadEnd()
FS.uzipFileAtPath(downloadDestPath, SOURCE_ROOT).then((res) => {
FS.exists(res).then((exist) => {
if (exist) {
this.BUNDLE_PATH = res
this.currentMetaData[DoctorStrangeUpdaterModule.firstLoadkey] = true
this.currentMetaData[DoctorStrangeUpdaterModule.firstLoadSuccess] = false
DoctorStrangeUpdaterModule.setMetaData(this.currentMetaData, DoctorStrangeUpdaterModule.currentMetaDataKey)
DoctorStrangeUpdaterModule.setMetaData(DoctorStrangeUpdaterModule.currentMetaData, DoctorStrangeUpdaterModule.previousMetaDataKey)
if (this.options.askReload) {
this.options.askReload((reload) => {
if (reload) {
this.reload()
}
})
} else {
this.reload()
}
} else {
console.log('not exist ')
}
}).catch((err) => {
console.log(err, 'not exist')
this.options.onError && this.options.onError()
this.reportError(err, 'js bundle not exist error ')
})
}).catch((err) => {
console.log(err, 'unzip fail')
this.options.onError && this.options.onError()
this.reportError(err, 'unzipfile error ')
})
}).catch((err) => {
this.options.downloadError && this.options.downloadError(err)
this.reportError(err, 'download error')
})
}
async currentZipDataExist () {
return await FS.exists(SOURCE_ROOT + '/doctor.zip')
}
}
const reload = (err: Object) => {
DoctorStrangeUpdater.getDoctorStrangeUpdater().reportError(err, 'firstLoad fail')
DoctorStrangeUpdaterModule.getFirstLoad().then((obj) => {
// 如果不是更新后第一次加载且第一次加载成功则按正常程序检查更新
if (obj.firstLoad && !obj.firstLoadSuccess) {
DoctorStrangeUpdaterModule.backToPre()
}
})
}
global.ErrorUtils.setGlobalHandler((err) => {
reload ? reload(err) : null
})
setTimeout(() => {
reload = null
DoctorStrangeUpdater.getDoctorStrangeUpdater().setJsRunSuccess()
}, 3000)
module.exports = DoctorStrangeUpdater