forked from luuxis/Selvania-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
165 lines (152 loc) · 5.8 KB
/
build.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
const fs = require("fs");
const builder = require('electron-builder')
const JavaScriptObfuscator = require('javascript-obfuscator');
const nodeFetch = require('node-fetch')
const png2icons = require('png2icons');
const Jimp = require('jimp');
const { preductname } = require('./package.json');
class Index {
async init() {
this.obf = true
this.Fileslist = []
process.argv.forEach(async val => {
if (val.startsWith('--icon')) {
return this.iconSet(val.split('=')[1])
}
if (val.startsWith('--obf')) {
this.obf = JSON.parse(val.split('=')[1])
this.Fileslist = this.getFiles("src");
}
if (val.startsWith('--build')) {
let buildType = val.split('=')[1]
if (buildType == 'platform') return await this.buildPlatform()
}
});
}
async Obfuscate() {
if (fs.existsSync("./app")) fs.rmSync("./app", { recursive: true })
for (let path of this.Fileslist) {
let fileName = path.split('/').pop()
let extFile = fileName.split(".").pop()
let folder = path.replace(`/${fileName}`, '').replace('src', 'app')
if (!fs.existsSync(folder)) fs.mkdirSync(folder, { recursive: true })
if (extFile == 'js') {
let code = fs.readFileSync(path, "utf8");
code = code.replace(/src\//g, 'app/');
if (this.obf) {
await new Promise((resolve) => {
console.log(`Obfuscate ${path}`);
let obf = JavaScriptObfuscator.obfuscate(code, { optionsPreset: 'medium-obfuscation', disableConsoleOutput: false });
resolve(fs.writeFileSync(`${folder}/${fileName}`, obf.getObfuscatedCode(), { encoding: "utf-8" }));
})
} else {
console.log(`Copy ${path}`);
fs.writeFileSync(`${folder}/${fileName}`, code, { encoding: "utf-8" });
}
} else {
fs.copyFileSync(path, `${folder}/${fileName}`);
}
}
}
async buildPlatform() {
await this.Obfuscate();
builder.build({
config: {
generateUpdatesFilesForAllChannels: false,
appId: preductname,
productName: preductname,
copyright: 'Copyright © 2020-2024 Luuxis',
artifactName: "${productName}-${os}-${arch}.${ext}",
extraMetadata: { main: 'app/app.js' },
files: ["app/**/*", "package.json", "LICENSE.md"],
directories: { "output": "dist" },
compression: 'maximum',
asar: true,
publish: [{
provider: "github",
releaseType: 'release',
}],
win: {
icon: "./app/assets/images/icon.ico",
target: [{
target: "nsis",
arch: "x64"
}]
},
nsis: {
oneClick: true,
allowToChangeInstallationDirectory: false,
createDesktopShortcut: true,
runAfterFinish: true
},
mac: {
icon: "./app/assets/images/icon.icns",
category: "public.app-category.games",
identity: null,
target: [{
target: "dmg",
arch: "x64"
},
{
target: "zip",
arch: "x64"
},
{
target: "dmg",
arch: "arm64"
}, {
target: "zip",
arch: "arm64"
}]
},
linux: {
icon: "./app/assets/images/icon.png",
target: [{
target: "AppImage",
arch: "x64"
}, {
target: "deb",
arch: "x64"
}, {
target: "tar.gz",
arch: "x64"
}, {
target: "zip",
arch: "x64"
}]
}
}
}).then(() => {
console.log('le build est terminé')
}).catch(err => {
console.error('Error during build!', err)
})
}
getFiles(path, file = []) {
if (fs.existsSync(path)) {
let files = fs.readdirSync(path);
if (files.length == 0) file.push(path);
for (let i in files) {
let name = `${path}/${files[i]}`;
if (fs.statSync(name).isDirectory()) this.getFiles(name, file);
else file.push(name);
}
}
return file;
}
async iconSet(url) {
let Buffer = await nodeFetch(url)
if (Buffer.status == 200) {
Buffer = await Buffer.buffer()
const image = await Jimp.read(Buffer);
Buffer = await image.resize(256, 256).getBufferAsync(Jimp.MIME_PNG)
fs.writeFileSync("src/assets/images/icon.icns", png2icons.createICNS(Buffer, png2icons.BILINEAR, 0));
fs.writeFileSync("src/assets/images/icon.ico", png2icons.createICO(Buffer, png2icons.HERMITE, 0, false));
fs.writeFileSync("src/assets/images/icon.png", Buffer);
console.log('new icon set')
} else {
console.log('connection error')
}
}
}
new Index().init();