forked from microsoft/react-native-code-push
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcode-push.config.example.supabase.ts
More file actions
116 lines (100 loc) · 3.45 KB
/
code-push.config.example.supabase.ts
File metadata and controls
116 lines (100 loc) · 3.45 KB
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
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-nocheck
import {
CliConfigInterface,
ReleaseHistoryInterface,
} from "@bravemobile/react-native-code-push";
import * as fs from "fs";
import axios from "axios"; // install as devDependency
import * as SupabaseSDK from "@supabase/supabase-js"; // install as devDependency
const SUPABASE_URL = process.env.SUPABASE_URL;
const SUPABASE_KEY = process.env.SUPABASE_KEY;
const supabase = SupabaseSDK.createClient(SUPABASE_URL!, SUPABASE_KEY!);
const BUCKET_NAME = "codePush";
const STORAGE_HOST = `${SUPABASE_URL}/storage/v1/object/public`;
function historyJsonFileRemotePath(
platform: "ios" | "android",
identifier: string,
binaryVersion: string,
) {
return `histories/${platform}/${identifier}/${binaryVersion}.json`;
}
function bundleFileRemotePath(
platform: "ios" | "android",
identifier: string,
fileName: string,
) {
return `bundles/${platform}/${identifier}/${fileName}`;
}
const Config: CliConfigInterface = {
bundleUploader: async (
source: string,
platform: "ios" | "android",
identifier = "staging",
): Promise<{downloadUrl: string}> => {
const fileName = source.split("/").pop();
const fileStream = fs.createReadStream(source);
const remotePath = bundleFileRemotePath(platform, identifier, fileName!);
const {data, error} = await supabase.storage
.from(BUCKET_NAME)
.upload(remotePath, fileStream, {
contentType: "application/zip",
duplex: "half",
upsert: true,
});
if (error) {
console.error("Error uploading file:", error.message);
throw error;
}
console.log("Bundle File uploaded:", `${STORAGE_HOST}/${data.fullPath}`);
return {
downloadUrl: `${STORAGE_HOST}/${data.fullPath}`,
};
},
getReleaseHistory: async (
targetBinaryVersion: string,
platform: "ios" | "android",
identifier = "staging",
): Promise<ReleaseHistoryInterface> => {
const remoteJsonPath = historyJsonFileRemotePath(
platform,
identifier,
targetBinaryVersion,
);
const {data} = await axios.get(
`${STORAGE_HOST}/${BUCKET_NAME}/${remoteJsonPath}`,
);
return data as ReleaseHistoryInterface;
},
setReleaseHistory: async (
targetBinaryVersion: string,
jsonFilePath: string,
releaseInfo: ReleaseHistoryInterface,
platform: "ios" | "android",
identifier = "staging",
): Promise<void> => {
// upload JSON file or call API using `releaseInfo` metadata.
const fileContent = fs.readFileSync(jsonFilePath, "utf8");
const remoteJsonPath = historyJsonFileRemotePath(
platform,
identifier,
targetBinaryVersion,
);
const {data, error} = await supabase.storage
.from(BUCKET_NAME)
.upload(remoteJsonPath, Buffer.from(fileContent), {
contentType: "application/json",
cacheControl: "5",
upsert: true,
});
if (error) {
console.error("Error uploading file:", error.message);
throw error;
}
console.log(
"Release history File uploaded:",
`${STORAGE_HOST}/${data.fullPath}`,
);
},
};
module.exports = Config;