This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
forked from mobile-dev-inc/action-maestro-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_file.ts
59 lines (51 loc) · 1.47 KB
/
app_file.ts
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
import StreamZip from 'node-stream-zip';
import path from 'path';
import fs from 'fs';
export type AppFileType = 'ANDROID_APK' | 'IOS_BUNDLE'
export type AppFile = {
type: AppFileType,
path: string,
}
function getAbsolutePath(filePath: string): string {
const workDir = process.env['GITHUB_WORKSPACE'] || ''
return path.resolve(workDir, filePath)
}
async function getAppFileType(path: string): Promise<AppFileType | null> {
try {
const zip = new StreamZip.async({ file: path });
const entries = await zip.entries()
if ('AndroidManifest.xml' in entries) {
return 'ANDROID_APK'
} else if (Object.keys(entries).find(name => name.includes('Info.plist'))) {
return 'IOS_BUNDLE'
} else {
return null
}
} catch (e) {
return null
}
}
function validateAbsolutePath(path: string): string {
const absolutePath = getAbsolutePath(path)
if (!fs.existsSync(absolutePath)) {
throw new Error(`File does not exist: ${absolutePath}`)
}
return absolutePath
}
export function validateMappingFile(path: string): string {
return validateAbsolutePath(path)
}
export async function validateAppFile(path: string): Promise<AppFile> {
const absolutePath = getAbsolutePath(path)
if (!fs.existsSync(absolutePath)) {
throw new Error(`File does not exist: ${absolutePath}`)
}
const type = await getAppFileType(path)
if (!type) {
throw new Error(`Unsupported file format: ${path}`)
}
return {
type: type,
path: absolutePath,
}
}