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

Compare commits

..

1 Commits

Author SHA1 Message Date
sunnylqm
4231d377e6 v10.0.2 2024-02-19 11:41:47 +08:00
17 changed files with 457 additions and 752 deletions

4
.eslintrc Normal file
View File

@@ -0,0 +1,4 @@
{
"root": true,
"extends": "@react-native"
}

View File

@@ -1,4 +0,0 @@
module.exports = {
root: true,
extends: '@react-native',
};

View File

@@ -41,17 +41,14 @@ export const testFunctionDefaultRegion = functions.https.onCall(data => {
const { type, asError, inputData } = data;
if (!Object.hasOwnProperty.call(SAMPLE_DATA, type)) {
throw new functions.https.HttpsError(
'invalid-argument',
'Invalid test requested.',
);
throw new functions.https.HttpsError('invalid-argument', 'Invalid test requested.');
}
const outputData = SAMPLE_DATA[type];
try {
assert.deepEqual(outputData, inputData);
} catch (e: any) {
} catch (e) {
console.error(e);
throw new functions.https.HttpsError(
'invalid-argument',

View File

@@ -1,6 +1,4 @@
module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
singleQuote: true,
};

View File

@@ -18,7 +18,7 @@
"react-native": "0.69.8",
"react-native-paper": "^5.12.1",
"react-native-safe-area-context": "^4.8.2",
"react-native-update": "^10.0.2",
"react-native-update": "^10.0.0-beta.3",
"react-native-vector-icons": "^10.0.3"
},
"devDependencies": {

View File

@@ -190,7 +190,7 @@ export default function TestConsole({visible}) {
}
setAlertVisible(true);
setAlertMsg('done');
} catch (e: any) {
} catch (e) {
setAlertVisible(true);
setAlertMsg(e.message);
}

View File

@@ -6231,10 +6231,10 @@ react-native-safe-area-context@^4.8.2:
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.8.2.tgz#e6b3d8acf3c6afcb4b5db03a97f9c37df7668f65"
integrity sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==
react-native-update@^10.0.2:
version "10.0.2"
resolved "https://registry.yarnpkg.com/react-native-update/-/react-native-update-10.0.2.tgz#2bb01ab6e41e72bbbb535cebd34083b1fed69eb0"
integrity sha512-XkEPmTC3X6FV1eXq6uDyjfhXpAaug0HI48Mm+PkbMlXcgFjTrOmtuq7yuvemS2nPG2pwnrYQuGs0A6tE2aoRBA==
react-native-update@^10.0.0-beta.3:
version "10.0.0-beta.3"
resolved "https://registry.yarnpkg.com/react-native-update/-/react-native-update-10.0.0-beta.3.tgz#cad099ebb40ff04b31ba2df13930517039e4fae3"
integrity sha512-Ak1ylgHbOUeaNsq3ItZGRenqqAwYKSTlB6T4sBn4PPNGaMmIMt6uIKKWrQqcNyc9WEy9LlFM6kSqQXBQdaVatw==
dependencies:
nanoid "^3.3.3"

View File

@@ -1,3 +0,0 @@
module.exports = {
presets: ['module:@react-native/babel-preset'],
};

View File

@@ -1,11 +1,10 @@
{
"name": "react-native-update",
"version": "10.2.5",
"version": "10.0.2",
"description": "react-native hot update",
"main": "src/index.ts",
"scripts": {
"prepack": "yarn submodule && yarn lint",
"lint": "eslint \"src/*.@(ts|tsx|js|jsx)\" && tsc --noEmit",
"prepublish": "yarn submodule",
"submodule": "git submodule update --init --recursive",
"test": "echo \"Error: no test specified\" && exit 1",
"build-lib": "yarn submodule && $ANDROID_HOME/ndk/20.1.5948944/ndk-build NDK_PROJECT_PATH=android APP_BUILD_SCRIPT=android/jni/Android.mk NDK_APPLICATION_MK=android/jni/Application.mk NDK_LIBS_OUT=android/lib",
@@ -57,20 +56,16 @@
]
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@react-native/babel-preset": "^0.73.21",
"@react-native/eslint-config": "^0.73.2",
"@react-native/typescript-config": "^0.74.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.1",
"@types/node": "^20.8.9",
"@types/react": "^18.2.46",
"detox": "^20.5.0",
"eslint": "^8.57.0",
"eslint-plugin-ft-flow": "^3.0.7",
"eslint": "^8.56.0",
"firebase-tools": "^11.24.1",
"fs-extra": "^9.1.0",
"jest": "^29.7.0",
"jest": "^29.2.1",
"pod-install": "^0.1.37",
"prettier": "^2",
"react": "18.2.0",

View File

@@ -1,5 +1,5 @@
import { CheckResult, PushyOptions, ProgressData, EventType } from './type';
import { assertRelease, log, testUrls } from './utils';
import { CheckResult, PushyOptions, ProgressData } from './type';
import { assertRelease, log } from './utils';
import {
EmitterSubscription,
PermissionsAndroid,
@@ -12,9 +12,9 @@ import {
pushyNativeEventEmitter,
currentVersion,
packageVersion,
report,
rolledBackVersion,
setLocalHashInfo,
isRolledBack,
} from './core';
const defaultServer = {
@@ -25,8 +25,6 @@ const defaultServer = {
};
const empty = {};
const noop = () => {};
export class Pushy {
options: PushyOptions = {
appKey: '',
@@ -34,14 +32,13 @@ export class Pushy {
autoMarkSuccess: true,
useAlert: true,
strategy: 'both',
logger: noop,
};
lastChecking?: number;
lastRespJson?: Promise<any>;
lastChecking: number;
lastResult: CheckResult;
progressHandlers: Record<string, EmitterSubscription> = {};
downloadedHash?: string;
downloadedHash: string;
marked = false;
applyingUpdate = false;
@@ -57,45 +54,9 @@ export class Pushy {
setOptions = (options: Partial<PushyOptions>) => {
for (const [key, value] of Object.entries(options)) {
if (value !== undefined) {
// @ts-expect-error
this.options[key] = value;
if (key === 'logger') {
if (isRolledBack) {
this.report({
type: 'rollback',
data: {
rolledBackVersion,
},
});
}
}
}
}
};
report = ({
type,
message = '',
data = {},
}: {
type: EventType;
message?: string;
data?: Record<string, string | number>;
}) => {
log(type + ' ' + message);
const { logger = noop, appKey } = this.options;
logger({
type,
data: {
appKey,
currentVersion,
cInfo,
packageVersion,
buildTime,
message,
...data,
},
});
};
getCheckUrl = (endpoint: string = this.options.server!.main) => {
@@ -118,7 +79,7 @@ export class Pushy {
}
this.marked = true;
PushyModule.markSuccess();
this.report({ type: 'markSuccess' });
report({ type: 'markSuccess' });
};
switchVersion = (hash: string) => {
assertRelease();
@@ -140,14 +101,14 @@ export class Pushy {
assertRelease();
const now = Date.now();
if (
this.lastRespJson &&
this.lastResult &&
this.lastChecking &&
now - this.lastChecking < 1000 * 5
) {
return await this.lastRespJson;
return this.lastResult;
}
this.lastChecking = now;
this.report({ type: 'checking' });
report({ type: 'checking' });
const fetchPayload = {
method: 'POST',
headers: {
@@ -164,8 +125,8 @@ export class Pushy {
let resp;
try {
resp = await fetch(this.getCheckUrl(), fetchPayload);
} catch (e: any) {
this.report({
} catch (e) {
report({
type: 'errorChecking',
message: 'Can not connect to update server. Trying backup endpoints.',
});
@@ -173,7 +134,7 @@ export class Pushy {
if (backupEndpoints) {
try {
resp = await Promise.race(
backupEndpoints.map(endpoint =>
backupEndpoints.map((endpoint) =>
fetch(this.getCheckUrl(endpoint), fetchPayload),
),
);
@@ -181,18 +142,18 @@ export class Pushy {
}
}
if (!resp) {
this.report({
report({
type: 'errorChecking',
message: 'Can not connect to update server. Please check your network.',
});
return this.lastRespJson ? await this.lastRespJson : empty;
return this.lastResult || empty;
}
this.lastRespJson = resp.json();
const result: CheckResult = await resp.json();
const result: CheckResult = await this.lastRespJson;
this.lastResult = result;
if (resp.status !== 200) {
this.report({
report({
type: 'errorChecking',
message: result.message,
});
@@ -215,7 +176,7 @@ export class Pushy {
new Set([...(server.backups || []), ...remoteEndpoints]),
);
}
} catch (e: any) {
} catch (e) {
log('failed to fetch endpoints from: ', server.queryUrl);
}
}
@@ -226,18 +187,8 @@ export class Pushy {
onDownloadProgress?: (data: ProgressData) => void,
) => {
assertRelease();
const {
hash,
diffUrl: _diffUrl,
diffUrls,
pdiffUrl: _pdiffUrl,
pdiffUrls,
updateUrl: _updateUrl,
updateUrls,
name,
description,
metaInfo,
} = info;
const { hash, diffUrl, pdiffUrl, updateUrl, name, description, metaInfo } =
info;
if (!info.update || !hash) {
return;
}
@@ -255,7 +206,7 @@ export class Pushy {
if (onDownloadProgress) {
this.progressHandlers[hash] = pushyNativeEventEmitter.addListener(
'RCTPushyDownloadProgress',
progressData => {
(progressData) => {
if (progressData.hash === hash) {
onDownloadProgress(progressData);
}
@@ -263,8 +214,7 @@ export class Pushy {
);
}
let succeeded = false;
this.report({ type: 'downloading' });
const diffUrl = (await testUrls(diffUrls)) || _diffUrl;
report({ type: 'downloading' });
if (diffUrl) {
log('downloading diff');
try {
@@ -274,11 +224,10 @@ export class Pushy {
originHash: currentVersion,
});
succeeded = true;
} catch (e: any) {
} catch (e) {
log(`diff error: ${e.message}, try pdiff`);
}
}
const pdiffUrl = (await testUrls(pdiffUrls)) || _pdiffUrl;
if (!succeeded && pdiffUrl) {
log('downloading pdiff');
try {
@@ -287,11 +236,10 @@ export class Pushy {
hash,
});
succeeded = true;
} catch (e: any) {
} catch (e) {
log(`pdiff error: ${e.message}, try full patch`);
}
}
const updateUrl = (await testUrls(updateUrls)) || _updateUrl;
if (!succeeded && updateUrl) {
log('downloading full patch');
try {
@@ -300,7 +248,7 @@ export class Pushy {
hash,
});
succeeded = true;
} catch (e: any) {
} catch (e) {
log(`full patch error: ${e.message}`);
}
}
@@ -309,7 +257,7 @@ export class Pushy {
delete this.progressHandlers[hash];
}
if (!succeeded) {
return this.report({
return report({
type: 'errorUpdate',
data: { newVersion: hash },
});
@@ -330,17 +278,17 @@ export class Pushy {
if (Platform.OS !== 'android') {
return;
}
this.report({ type: 'downloadingApk' });
report({ type: 'downloadingApk' });
if (Platform.Version <= 23) {
try {
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE,
);
if (granted !== PermissionsAndroid.RESULTS.GRANTED) {
return this.report({ type: 'rejectStoragePermission' });
return report({ type: 'rejectStoragePermission' });
}
} catch (e: any) {
return this.report({ type: 'errorStoragePermission' });
} catch (err) {
return report({ type: 'errorStoragePermission' });
}
}
const progressKey = 'downloadingApk';
@@ -359,7 +307,7 @@ export class Pushy {
target: 'update.apk',
hash: progressKey,
}).catch(() => {
this.report({ type: 'errowDownloadAndInstallApk' });
report({ type: 'errowDownloadAndInstallApk' });
});
if (this.progressHandlers[progressKey]) {
this.progressHandlers[progressKey].remove();

View File

@@ -2,35 +2,29 @@ import { createContext, useContext } from 'react';
import { CheckResult, ProgressData } from './type';
import { Pushy } from './client';
const empty = {};
const noop = () => {};
const asyncNoop = () => Promise.resolve();
export const defaultContext = {
checkUpdate: asyncNoop,
checkUpdate: () => Promise.resolve(empty),
switchVersion: noop,
switchVersionLater: noop,
markSuccess: noop,
dismissError: noop,
downloadUpdate: asyncNoop,
downloadAndInstallApk: asyncNoop,
getCurrentVersionInfo: () => Promise.resolve({}),
downloadUpdate: noop,
downloadAndInstallApk: noop,
currentHash: '',
packageVersion: '',
};
export const PushyContext = createContext<{
checkUpdate: () => Promise<void>;
checkUpdate: () => void;
switchVersion: () => void;
switchVersionLater: () => void;
markSuccess: () => void;
dismissError: () => void;
downloadUpdate: () => Promise<void>;
downloadAndInstallApk: (url: string) => Promise<void>;
getCurrentVersionInfo: () => Promise<{
name?: string;
description?: string;
metaInfo?: string;
}>;
downloadUpdate: () => void;
downloadAndInstallApk: (url: string) => void;
currentHash: string;
packageVersion: string;
client?: Pushy;

View File

@@ -1,12 +1,11 @@
import { NativeEventEmitter, NativeModules, Platform } from 'react-native';
import { EventType, UpdateEventsLogger } from './type';
import { log } from './utils';
const {
version: v,
} = require('react-native/Libraries/Core/ReactNativeVersion');
const RNVersion = `${v.major}.${v.minor}.${v.patch}`;
const isTurboModuleEnabled =
// @ts-expect-error
global.__turboModuleProxy != null;
const isTurboModuleEnabled = global.__turboModuleProxy != null;
export const PushyModule = isTurboModuleEnabled
? require('./turboModuleSpec').default
@@ -59,6 +58,44 @@ if (!uuid) {
PushyModule.setUuid(uuid);
}
const noop = () => {};
let reporter: UpdateEventsLogger = noop;
export function onPushyEvents(customReporter: UpdateEventsLogger) {
reporter = customReporter;
if (isRolledBack) {
report({
type: 'rollback',
data: {
rolledBackVersion,
},
});
}
}
export function report({
type,
message = '',
data = {},
}: {
type: EventType;
message?: string;
data?: Record<string, string | number>;
}) {
log(type + ' ' + message);
reporter({
type,
data: {
currentVersion,
cInfo,
packageVersion,
buildTime,
message,
...data,
},
});
}
log('uuid: ' + uuid);
export const cInfo = {

View File

@@ -13,12 +13,7 @@ import {
Linking,
} from 'react-native';
import { Pushy } from './client';
import {
currentVersion,
isFirstTime,
packageVersion,
getCurrentVersionInfo,
} from './core';
import { currentVersion, isFirstTime, packageVersion } from './core';
import { CheckResult, ProgressData } from './type';
import { PushyContext } from './context';
@@ -86,16 +81,16 @@ export const PushyProvider = ({
},
},
]);
} catch (e: any) {
setLastError(e);
showAlert('更新失败', e.message);
} catch (err) {
setLastError(err);
showAlert('更新失败', err.message);
}
}, [client, showAlert, updateInfo]);
const downloadAndInstallApk = useCallback(
async (downloadUrl: string) => {
(downloadUrl: string) => {
if (Platform.OS === 'android' && downloadUrl) {
await client.downloadAndInstallApk(downloadUrl, setProgress);
client.downloadAndInstallApk(downloadUrl, setProgress);
}
},
[client],
@@ -105,9 +100,9 @@ export const PushyProvider = ({
let info: CheckResult;
try {
info = await client.checkUpdate();
} catch (e: any) {
setLastError(e);
showAlert('更新检查失败', e.message);
} catch (err) {
setLastError(err);
showAlert('更新检查失败', err.message);
return;
}
setUpdateInfo(info);
@@ -148,10 +143,6 @@ export const PushyProvider = ({
const markSuccess = client.markSuccess;
useEffect(() => {
if (__DEV__) {
console.info('检测到在DEV环境不会进行热更新检查');
return;
}
const { strategy, dismissErrorAfter, autoMarkSuccess } = options;
if (isFirstTime && autoMarkSuccess) {
markSuccess();
@@ -159,7 +150,7 @@ export const PushyProvider = ({
if (strategy === 'both' || strategy === 'onAppResume') {
stateListener.current = AppState.addEventListener(
'change',
nextAppState => {
(nextAppState) => {
if (nextAppState === 'active') {
checkUpdate();
}
@@ -197,8 +188,8 @@ export const PushyProvider = ({
currentHash: currentVersion,
progress,
downloadAndInstallApk,
getCurrentVersionInfo,
}}>
}}
>
{children}
</PushyContext.Provider>
);

View File

@@ -8,11 +8,8 @@ export interface CheckResult {
description?: string;
metaInfo?: string;
pdiffUrl?: string;
pdiffUrls?: string[];
diffUrl?: string;
diffUrls?: string[];
updateUrl?: string;
updateUrls?: string[];
paused?: 'app' | 'package';
message?: string;
}

View File

@@ -7,22 +7,3 @@ export function assertRelease() {
throw new Error('react-native-update 只能在 RELEASE 版本中运行.');
}
}
const ping = async (url: string) =>
Promise.race([
fetch(url, {
method: 'HEAD',
}).then(({ status }) => status === 200),
new Promise<false>(r => setTimeout(() => r(false), 2000)),
]);
const canUseGoogle = ping('https://www.google.com');
export const testUrls = async (urls?: string[]) => {
if (!urls?.length || (await canUseGoogle)) {
return null;
}
return Promise.race(urls.map(url => ping(url).then(() => url))).catch(
() => null,
);
};

View File

@@ -1,4 +0,0 @@
{
"extends": "@react-native/typescript-config/tsconfig.json",
"include": ["src/**/*"]
}

924
yarn.lock

File diff suppressed because it is too large Load Diff