1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-09-18 02:56:11 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Compare commits

..

19 Commits

Author SHA1 Message Date
sunnylqm
23346a5f1d v9.1.2 2023-10-28 17:26:19 +08:00
sunnylqm
5aca2104c2 fix: simpleUpdate for web 2023-10-28 17:25:54 +08:00
sunnylqm
fe0a05db3d v9.1.0 2023-10-28 17:01:54 +08:00
sunnylqm
2b287786ff chore: remove permissions 2023-10-28 14:37:26 +08:00
sunnylqm
7d128900cd feat: improve backup endpoints 2023-10-28 14:36:04 +08:00
sunnylqm
189e3ec78e v9.0.5 2023-09-24 21:18:11 +08:00
sunnylqm
821722165a v9.0.4 2023-09-15 16:16:48 +08:00
sunnylqm
6cb53ac655 fix: lastChecking 2023-09-15 16:16:13 +08:00
sunnylqm
7b9a24168a v9.0.3 2023-09-06 23:18:07 +08:00
sunnylqm
c6354bbedc fix: return type 2023-09-06 23:16:42 +08:00
sunnylqm
b53878c291 chore: cleanup 2023-09-06 22:56:41 +08:00
sunnylqm
ab01312f8d v9.0.2 2023-09-06 22:53:54 +08:00
sunnylqm
44784b6d3e feat: return cached result 2023-09-06 11:20:31 +08:00
sunnylqm
30c21fed91 v9.0.1 2023-09-05 22:50:53 +08:00
sunnylqm
15af7802ad fix: type 2023-09-05 22:47:47 +08:00
sunnylqm
8bed6ef979 chore: cleanup 2023-09-05 22:01:13 +08:00
Sunny Luo
7d03dc24b7 Update README.md 2023-09-02 23:02:15 +08:00
sunnylqm
18849ee441 v9.0.0 2023-09-02 22:54:26 +08:00
sunnylqm
3ba1df2020 revert ios bundle detect 2023-09-02 22:52:58 +08:00
11 changed files with 2585 additions and 158 deletions

View File

@@ -10,7 +10,7 @@
1. 基于阿里云高速 CDN 分发,对比其他服务器在国外的热更新服务,分发更稳定,更新成功率极高。 1. 基于阿里云高速 CDN 分发,对比其他服务器在国外的热更新服务,分发更稳定,更新成功率极高。
2. 基于 bsdiff/hdiff 算法创建的**超小更新包**,通常版本迭代后在几十 KB 级别(其他全量热更新服务所需流量通常在几十 MB 级别)。 2. 基于 bsdiff/hdiff 算法创建的**超小更新包**,通常版本迭代后在几十 KB 级别(其他全量热更新服务所需流量通常在几十 MB 级别)。
3. 始终跟进 RN 最新正式版本,第一时间提供支持。支持 hermes 字节码格式。(暂不支持新架构,会待其相对稳定后跟进) 3. 始终跟进 RN 最新正式版本,第一时间提供支持。支持 hermes 字节码格式。支持新架构
4. 跨越多个版本进行更新时,只需要下载**一个更新包**,不需要逐版本依次更新。 4. 跨越多个版本进行更新时,只需要下载**一个更新包**,不需要逐版本依次更新。
5. 命令行工具 & 网页双端管理,版本发布过程简单便捷,完全可以集成 CI。 5. 命令行工具 & 网页双端管理,版本发布过程简单便捷,完全可以集成 CI。
6. 支持崩溃回滚,安全可靠。 6. 支持崩溃回滚,安全可靠。

View File

@@ -1,2 +1,3 @@
-keepnames class cn.reactnative.modules.update.DownloadTask { *; } -keepnames class cn.reactnative.modules.update.DownloadTask { *; }
-keepnames class cn.reactnative.modules.update.UpdateModuleImpl { *; }
-keepnames class com.facebook.react.ReactInstanceManager { *; } -keepnames class com.facebook.react.ReactInstanceManager { *; }

View File

@@ -1,9 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.reactnative.modules.update"> package="cn.reactnative.modules.update">
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application> <application>
<meta-data android:name="pushy_build_time" android:value="@string/pushy_build_time" /> <meta-data android:name="pushy_build_time" android:value="@string/pushy_build_time" />
<provider <provider

View File

@@ -53,7 +53,6 @@ typedef NS_ENUM(NSInteger, PushyType) {
}; };
static BOOL ignoreRollback = false; static BOOL ignoreRollback = false;
static BOOL isUsingBundleUrl = false;
@implementation RCTPushy { @implementation RCTPushy {
RCTPushyManager *_fileManager; RCTPushyManager *_fileManager;
@@ -66,7 +65,6 @@ RCT_EXPORT_MODULE(RCTPushy);
+ (NSURL *)bundleURL + (NSURL *)bundleURL
{ {
isUsingBundleUrl = true;
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSDictionary *pushyInfo = [defaults dictionaryForKey:keyPushyInfo]; NSDictionary *pushyInfo = [defaults dictionaryForKey:keyPushyInfo];
@@ -163,7 +161,6 @@ RCT_EXPORT_MODULE(RCTPushy);
ret[@"uuid"] = [defaults objectForKey:keyUuid]; ret[@"uuid"] = [defaults objectForKey:keyUuid];
NSDictionary *pushyInfo = [defaults dictionaryForKey:keyPushyInfo]; NSDictionary *pushyInfo = [defaults dictionaryForKey:keyPushyInfo];
ret[@"currentVersion"] = [pushyInfo objectForKey:paramCurrentVersion]; ret[@"currentVersion"] = [pushyInfo objectForKey:paramCurrentVersion];
ret[@"isUsingBundleUrl"] = @(isUsingBundleUrl);
// clear isFirstTimemarked // clear isFirstTimemarked
if (ret[@"isFirstTime"]) { if (ret[@"isFirstTime"]) {

View File

@@ -1,75 +1,26 @@
import { logger } from './utils';
let currentEndpoint = 'https://update.react-native.cn/api'; let currentEndpoint = 'https://update.react-native.cn/api';
let backupEndpoints: string[] = ['https://update.reactnative.cn/api'];
let backupEndpointsQueryUrl: string | null = null;
function ping(url: string, rejectImmediate?: boolean) { export async function updateBackupEndpoints() {
return new Promise((resolve, reject) => { if (backupEndpointsQueryUrl) {
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = (e) => {
if (xhr.readyState !== 4) {
return;
}
if (xhr.status === 200) {
resolve(url);
} else {
rejectImmediate ? reject() : setTimeout(reject, 5000);
}
};
xhr.open('HEAD', url);
xhr.send();
xhr.timeout = 5000;
xhr.ontimeout = reject;
});
}
function logger(...args: any[]) {
console.log('Pushy: ', ...args);
}
let backupEndpoints: string[] = [];
let backupEndpointsQueryUrl: string | null =
'https://cdn.jsdelivr.net/gh/reactnativecn/react-native-pushy@master/endpoints.json';
export async function tryBackupEndpoints() {
if (!backupEndpoints.length && !backupEndpointsQueryUrl) {
return;
}
try {
await ping(getStatusUrl(), true);
logger('current endpoint ok', currentEndpoint);
return;
} catch (e) {
logger('current endpoint failed', currentEndpoint);
}
if (!backupEndpoints.length && backupEndpointsQueryUrl) {
try { try {
const resp = await fetch(backupEndpointsQueryUrl); const resp = await fetch(backupEndpointsQueryUrl);
backupEndpoints = await resp.json(); const remoteEndpoints = await resp.json();
logger('get remote endpoints:', backupEndpoints); if (Array.isArray(remoteEndpoints)) {
backupEndpoints = Array.from(
new Set([...backupEndpoints, ...remoteEndpoints]),
);
logger('fetch remote endpoints:', remoteEndpoints);
logger('merged backup endpoints:', backupEndpoints);
}
} catch (e) { } catch (e) {
logger('get remote endpoints failed'); logger('fetch remote endpoints failed');
return;
} }
} }
await pickFatestAvailableEndpoint(); return backupEndpoints;
}
async function pickFatestAvailableEndpoint(endpoints = backupEndpoints) {
const fastestEndpoint = await Promise.race(
endpoints.map(pingAndReturnEndpoint),
);
if (typeof fastestEndpoint === 'string') {
logger(`pick endpoint: ${fastestEndpoint}`);
currentEndpoint = fastestEndpoint;
} else {
logger('all remote endpoints failed');
}
}
async function pingAndReturnEndpoint(endpoint = currentEndpoint) {
return ping(getStatusUrl(endpoint)).then(() => endpoint);
}
function getStatusUrl(endpoint = currentEndpoint) {
return `${endpoint}/status`;
} }
export function getCheckUrl(APPKEY, endpoint = currentEndpoint) { export function getCheckUrl(APPKEY, endpoint = currentEndpoint) {
@@ -95,7 +46,6 @@ export function setCustomEndpoints({
backupEndpointsQueryUrl = null; backupEndpointsQueryUrl = null;
if (Array.isArray(backups) && backups.length > 0) { if (Array.isArray(backups) && backups.length > 0) {
backupEndpoints = backups; backupEndpoints = backups;
pickFatestAvailableEndpoint();
} }
if (typeof backupQueryUrl === 'string') { if (typeof backupQueryUrl === 'string') {
backupEndpointsQueryUrl = backupQueryUrl; backupEndpointsQueryUrl = backupQueryUrl;

View File

@@ -14,5 +14,5 @@ export const markSuccess = noop;
export const downloadAndInstallApk = noop; export const downloadAndInstallApk = noop;
export const setCustomEndpoints = noop; export const setCustomEndpoints = noop;
export const getCurrentVersionInfo = noop; export const getCurrentVersionInfo = noop;
export const simpleUpdate = noop; export const simpleUpdate = (app) => app;
export const onEvents = noop; export const onEvents = noop;

View File

@@ -1,5 +1,5 @@
import { import {
tryBackupEndpoints, updateBackupEndpoints,
getCheckUrl, getCheckUrl,
setCustomEndpoints, setCustomEndpoints,
} from './endpoint'; } from './endpoint';
@@ -10,11 +10,13 @@ import {
PermissionsAndroid, PermissionsAndroid,
} from 'react-native'; } from 'react-native';
import { import {
CheckResult,
EventType, EventType,
ProgressData, ProgressData,
UpdateAvailableResult, UpdateAvailableResult,
UpdateEventsListener, UpdateEventsListener,
} from './type'; } from './type';
import { assertRelease, logger } from './utils';
export { setCustomEndpoints }; export { setCustomEndpoints };
const { const {
version: v, version: v,
@@ -44,7 +46,7 @@ export const buildTime = PushyConstants.buildTime;
let blockUpdate = PushyConstants.blockUpdate; let blockUpdate = PushyConstants.blockUpdate;
let uuid = PushyConstants.uuid; let uuid = PushyConstants.uuid;
if (!PushyConstants.isUsingBundleUrl) { if (Platform.OS === 'android' && !PushyConstants.isUsingBundleUrl) {
throw new Error( throw new Error(
'react-native-update模块无法加载请对照文档检查Bundle URL的配置', 'react-native-update模块无法加载请对照文档检查Bundle URL的配置',
); );
@@ -73,10 +75,6 @@ if (!uuid) {
PushyModule.setUuid(uuid); PushyModule.setUuid(uuid);
} }
function logger(...args: string[]) {
console.log('Pushy: ', ...args);
}
const noop = () => {}; const noop = () => {};
let reporter: UpdateEventsListener = noop; let reporter: UpdateEventsListener = noop;
@@ -124,62 +122,78 @@ export const cInfo = {
uuid, uuid,
}; };
function assertRelease() { let lastChecking;
if (__DEV__) { const empty = {};
throw new Error('react-native-update 只能在 RELEASE 版本中运行.'); let lastResult: CheckResult;
} export async function checkUpdate(APPKEY: string) {
}
let checkingThrottling = false;
export async function checkUpdate(APPKEY: string, isRetry?: boolean) {
assertRelease(); assertRelease();
if (checkingThrottling) { const now = Date.now();
logger('repeated checking, ignored'); if (lastResult && lastChecking && now - lastChecking < 1000 * 60) {
return; // logger('repeated checking, ignored');
return lastResult;
} }
checkingThrottling = true; lastChecking = now;
setTimeout(() => {
checkingThrottling = false;
}, 3000);
if (blockUpdate && blockUpdate.until > Date.now() / 1000) { if (blockUpdate && blockUpdate.until > Date.now() / 1000) {
return report({ report({
type: 'errorChecking', type: 'errorChecking',
message: `热更新已暂停,原因:${blockUpdate.reason}。请在"${new Date( message: `热更新已暂停,原因:${blockUpdate.reason}。请在"${new Date(
blockUpdate.until * 1000, blockUpdate.until * 1000,
).toLocaleString()}"之后重试。`, ).toLocaleString()}"之后重试。`,
}); });
return lastResult || empty;
} }
report({ type: 'checking' }); report({ type: 'checking' });
const fetchPayload = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
packageVersion,
hash: currentVersion,
buildTime,
cInfo,
}),
};
let resp; let resp;
try { try {
resp = await fetch(getCheckUrl(APPKEY), { resp = await fetch(getCheckUrl(APPKEY), fetchPayload);
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
packageVersion,
hash: currentVersion,
buildTime,
cInfo,
}),
});
} catch (e) { } catch (e) {
if (isRetry) { report({
return report({ type: 'errorChecking',
type: 'errorChecking', message: '无法连接主更新服务器,尝试备用节点',
message: '无法连接更新服务器,请检查网络连接后重试', });
}); const backupEndpoints = await updateBackupEndpoints();
if (backupEndpoints) {
try {
resp = await Promise.race(
backupEndpoints.map((endpoint) =>
fetch(getCheckUrl(APPKEY, endpoint), fetchPayload),
),
);
} catch {}
} }
await tryBackupEndpoints();
return checkUpdate(APPKEY, true);
} }
const result = await resp.json(); if (!resp) {
report({
type: 'errorChecking',
message: '无法连接更新服务器,请检查网络连接后重试',
});
return lastResult || empty;
}
const result: CheckResult = await resp.json();
lastResult = result;
// @ts-ignore
checkOperation(result.op); checkOperation(result.op);
if (resp.status !== 200) { if (resp.status !== 200) {
return report({ type: 'errorChecking', message: result.message }); report({
type: 'errorChecking',
//@ts-ignore
message: result.message,
});
} }
return result; return result;

View File

@@ -26,7 +26,8 @@ export interface UpdateAvailableResult {
export type CheckResult = export type CheckResult =
| ExpiredResult | ExpiredResult
| UpTodateResult | UpTodateResult
| UpdateAvailableResult; | UpdateAvailableResult
| {};
export interface ProgressData { export interface ProgressData {
hash: string; hash: string;

9
lib/utils.ts Normal file
View File

@@ -0,0 +1,9 @@
export function logger(...args: any[]) {
console.log('Pushy: ', ...args);
}
export function assertRelease() {
if (__DEV__) {
throw new Error('react-native-update 只能在 RELEASE 版本中运行.');
}
}

View File

@@ -1,6 +1,6 @@
{ {
"name": "react-native-update", "name": "react-native-update",
"version": "9.0.0-beta.3", "version": "9.1.2",
"description": "react-native hot update", "description": "react-native hot update",
"main": "lib/index.ts", "main": "lib/index.ts",
"scripts": { "scripts": {
@@ -39,7 +39,7 @@
"url": "https://github.com/reactnativecn/react-native-pushy/issues" "url": "https://github.com/reactnativecn/react-native-pushy/issues"
}, },
"peerDependencies": { "peerDependencies": {
"react-native": ">=0.27.0" "react-native": ">=0.57.0"
}, },
"homepage": "https://github.com/reactnativecn/react-native-pushy#readme", "homepage": "https://github.com/reactnativecn/react-native-pushy#readme",
"dependencies": { "dependencies": {
@@ -57,12 +57,15 @@
"devDependencies": { "devDependencies": {
"@types/fs-extra": "^9.0.13", "@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.1", "@types/jest": "^29.2.1",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"detox": "^20.5.0", "detox": "^20.5.0",
"firebase-tools": "^11.24.1", "firebase-tools": "^11.24.1",
"fs-extra": "^9.1.0", "fs-extra": "^9.1.0",
"jest": "^29.2.1", "jest": "^29.2.1",
"pod-install": "^0.1.37", "pod-install": "^0.1.37",
"react-native": "^0.72.6",
"ts-jest": "^29.0.3", "ts-jest": "^29.0.3",
"typescript": "^4.1.3" "typescript": "^5.2.2"
} }
} }

2527
yarn.lock

File diff suppressed because it is too large Load Diff