This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.js
442 lines (359 loc) · 16.3 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//
// Copyright © 2016-present Pouya Kary. All Rights Reserved
// Author: Pouya Kary <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
//
// ─── IMPORTS ────────────────────────────────────────────────────────────────────
//
const argv = require('yargs').argv
const darwinInfoPlistBase = require('./build/darwin-info-base.json')
const exec = require('child_process').exec
const fs = require('fs-extra')
const packageJsonFirstLoad = require('./package.json')
const path = require('path')
const plist = require('plist')
const request = require('request')
//
// ─── CONSTANTS ──────────────────────────────────────────────────────────────────
//
const orchestraVersion = "v1.0"
const pathToResultDir = '_compiled'
const nightlyReleaseName = 'Orchestra Nightly'
const stableReleaseName = 'Orchestra'
const isProductionBuild =
( argv.productionBuild? true : false )
const OrchestraNodeModules = [
'concerto-compiler', 'messenger', 'regulex', 'monaco-editor/min/vs',
'amdefine', 'regexpu-core', 'regexpu', 'regjsgen', 'regjsparser',
'regenerate', 'unicode-match-property-ecmascript', 'jsesc', 'recast',
'unicode-canonical-property-names-ecmascript', 'ast-types', 'esprima',
'unicode-property-aliases-ecmascript', 'source-map', 'private',
'unicode-match-property-value-ecmascript',
]
const CopyrightNotice =
'Copyright 2016-present, Pouya Kary. All rights reserved.'
//
// ─── UPDATING PACKAGE JSON ──────────────────────────────────────────────────────
//
const packageJson = Object.assign( packageJsonFirstLoad, {
productName: ( isProductionBuild? stableReleaseName : nightlyReleaseName ),
})
//
// ─── ASYNCIFY ───────────────────────────────────────────────────────────────────
//
const asyncify = ( func, ...args ) =>
new Promise( ( resolve, reject ) =>
func( ...args, ( err, output ) =>
err ? reject( err )
: resolve( output? output : undefined ) ) )
//
// ─── TOOLS ──────────────────────────────────────────────────────────────────────
//
/** Run shell commands easy! */
const shell = ( ...commands ) => asyncify( exec, commands.join(' ') )
//
// ─── COPY DIR FILES ─────────────────────────────────────────────────────────────
//
/** Copy to binary from dir */
function copyToBinaryFromDir ( dir, subfolder ) {
fs.readdir( dir , ( err , files ) => {
// if error
if ( err )
console.log(`Could not get files from directory ${ dir }`)
// if right
files.forEach( name => {
const dest =
( !( subfolder === undefined || subfolder === '' || subfolder === null )
? path.join( pathToResultDir , subfolder , name )
: path.join( pathToResultDir , name ))
if ( !( name.endsWith('.map') || name.endsWith('.d.ts') ) )
copyFile(
getLocalPath( path.join( dir , name ) ),
getLocalPath( dest )
)})})}
//
// ─── COPY SINGLE FILE ───────────────────────────────────────────────────────────
//
/** Copies a file from `origin` to `destination` */
async function copyFile ( origin, destination ) {
if ( /\.DS_Store/.test( origin ) ) { return }
// await new Promise( ( resolve, reject ) => {
// fs.copy( origin, destination, err =>
// err ? reject(`Could not copy file ${ origin }`)
// : resolve( ) ) })
// // ==
await asyncify( fs.copy, origin, destination )
}
//
// ─── GET LOCAL PATH ─────────────────────────────────────────────────────────────
//
/** Get Local Path in the current directory */
function getLocalPath ( address ) {
return path.join( __dirname , address )
}
//
// ─── COPY FILES ─────────────────────────────────────────────────────────────────
//
/** Copies static resource files into the result directory */
async function copyResourceFiles ( ) {
console.log("--> Coping resource files")
function copyNodeModules ( handle ) {
const address = path.join( 'node_modules', handle )
copyToBinaryFromDir( address, address )
}
// codes
copyToBinaryFromDir( 'view' )
copyToBinaryFromDir( 'editor' )
copyToBinaryFromDir( 'libs' )
copyToBinaryFromDir( 'windows' )
copyToBinaryFromDir( 'winserver' )
// design files
copyToBinaryFromDir( 'resources' )
copyToBinaryFromDir( 'designs/icon/file-icon-darwin/icns' )
// node modules
OrchestraNodeModules.forEach( x => copyNodeModules( x ) )
// package
await copyFile(
getLocalPath( 'package.json' ),
getLocalPath( path.join( pathToResultDir , 'package.json' ) )
)
}
//
// ─── GETTING COMMIT COUNT ───────────────────────────────────────────────────────
//
async function getCommitCounts ( ) {
return new Promise ( callback => {
const commitCountFilePath =
`./${pathToResultDir}/about/commit-count.txt`
const githubOrchestraRepositoryAPI =
'https://api.github.com/repos/pmkary/orchestra/stats/contributors'
try {
new Promise (( resolve, reject ) => {
const rejectHandler = ( ) =>
reject('Could not connect to GitHub')
const options = {
url: githubOrchestraRepositoryAPI,
method: 'GET',
headers: {
'User-Agent': 'Super Agent/0.0.1',
'Content-Type': 'application/x-www-form-urlencoded'
},
}
request( options, ( error, response, body ) => {
if ( !error && response.statusCode == 200 )
try {
const data = JSON.parse( body )[ 0 ].total.toString( )
resolve( data )
} catch ( parseError ) {
rejectHandler( )
}
else
rejectHandler( )
})
})
.then( GitHubCommitCount => {
fs.writeFileSync( commitCountFilePath, GitHubCommitCount )
callback( )
})
.catch( e => {
callback( e )
})
} catch ( error ) {
try {
shell( 'git', 'rev-list', '--all', '--count',
'>', commitCountFilePath )
callback( )
} catch ( error2 ) {
callback('Could not save latest commits count')
}
}
})
}
//
// ─── SHEETS ─────────────────────────────────────────────────────────────────────
//
/** Compiles the Less style sheets */
async function sheets ( ) {
console.log("--> Making sheets")
const thisDir = (...x) => path.join( __dirname, ...x )
await shell('lessc',
thisDir( 'sheets', 'ui.less' ),
thisDir( '_compiled', 'style.css' )
)
}
//
// ─── ELECTRON PACKER ────────────────────────────────────────────────────────────
//
async function packOrchestraForDarwin ( ) {
console.log( "--> Packing for Darwin" )
const iconFile =
( isProductionBuild ? './designs/icon/icns/icon.icns'
: './designs/icon-nightly/icns/icon.icns'
)
// build script
const packBashScript = [
'electron-packager',
' _compiled',
'"' + packageJson.productName + '"',
'--platform=darwin',
'--arch=arm64',
'--overwrite=true',
'--app-bundle-id="us.kary.orchestra"',
'--app-copyright="' + CopyrightNotice + '"',
'--app-version="' + packageJson.version + '"',
'--icon=' + iconFile,
'--name="' + packageJson.productName + '"',
'--out=_release',
'--protocol="orchestra"',
'--protocol-name="Orchestra"',
]
// building
await shell( ...packBashScript )
updateDarwinInfoPlistFile( )
}
function updateDarwinInfoPlistFile ( ) {
console.log( "--> Updating Darwin Info Plist" )
// data
const plistFilePath =
( isProductionBuild ? '_release/Orchestra-darwin-x64/Orchestra.app/Contents/Info.plist'
: '_release/Orchestra Nightly-darwin-x64/Orchestra.app/Contents/Info.plist'
)
// loading the info file
const plistFileString =
fs.readFileSync( plistFilePath, 'utf8' )
const infoJSON =
plist.parse( plistFileString )
// adding stuff to the plist data
const newInfoJSON =
Object.assign( infoJSON, darwinInfoPlistBase )
// making new plist info
const newPlistFileString =
plist.build( newInfoJSON )
// done, now saving it back
fs.writeFileSync( plistFilePath, newPlistFileString )
}
async function createMacDMGImage ( ) {
console.log( "--> Creating Mac DMG Image" )
const orchestraMacAppAddress =
"_release/Orchestra-darwin-x64/Orchestra.app"
fs.mkdirpSync('./_installers/macOS')
await shell(
'electron-installer-dmg',
orchestraMacAppAddress,
'Orchestra',
'--out="./_installers/macOS"',
'--icon-size=152',
'--icon="./designs/icon/icns/icon.icns"',
'--background="./build/dmg-back.png"',
'--overwrite'
)
}
//
// ─── PACK FOR LINUX ─────────────────────────────────────────────────────────────
//
async function packOrchestraForLinux ( ) {
console.log( "--> Packing for Linux" )
const iconFile =
( isProductionBuild ? './designs/icon/icon.png'
: './designs/icon-nightly/icns/icon.icns'
)
// build script
const packBashScript = [
'electron-packager',
' _compiled',
'"' + packageJson.productName + '"',
'--platform=linux',
'--arch=x64',
'--overwrite=true',
'--app-bundle-id="us.kary.orchestra"',
'--app-copyright="' + CopyrightNotice + '"',
'--app-version="' + packageJson.version + '"',
'--icon=' + iconFile,
'--name="' + packageJson.productName + '"',
'--out=_release',
'--protocol="orchestra"',
'--protocol-name="Orchestra"',
]
// building
await shell( ...packBashScript )
}
async function createDebianDEBInstaller ( ) {
console.log( "--> Create DEB File..." )
await shell(
'electron-installer-debian',
'--src _release/Orchestra-linux-x64',
'--arch amd64',
'--config build/debian-config.json',
)
}
//
// ─── PACK FOR WINDOWS ───────────────────────────────────────────────────────────
//
async function packOrchestraForWindows ( ) {
// to be continued...
}
//
// ─── COMPILE ────────────────────────────────────────────────────────────────────
//
async function compile ( ) {
console.log( "--> Compiling" )
await copyResourceFiles( )
await sheets( )
}
//
// ─── PACK ───────────────────────────────────────────────────────────────────────
//
async function packOrchestra ( ) {
console.log ( "--> Packing Orchestra" )
await compile( )
async function packFunctionBody ( ) {
if ( argv.debug ) {
console.log( "--> Running electron")
await shell( 'npm', 'run', 'electron' )
return
}
if ( argv.pack )
await buildAllPlatforms( )
if ( argv.installers )
await createInstallersForAllPlatforms( )
}
await packFunctionBody( )
}
//
// ─── BUILD FOR ALL PLATFORMS ────────────────────────────────────────────────────
//
async function buildAllPlatforms ( ) {
console.log( "--> Building all platforms" )
const platformFunctions = [ ]
if ( argv.mac )
await packOrchestraForDarwin( )
if ( argv.win )
await packOrchestraForWindows( )
if ( argv.linux )
await packOrchestraForLinux( )
}
//
// ─── CREATE INSTALLERS FOR ALL PLATFORMS ────────────────────────────────────────
//
async function createInstallersForAllPlatforms ( ) {
console.log( "--> Making Installer" )
if ( argv.mac )
await createMacDMGImage( )
if ( argv.linux )
await createDebianDEBInstaller( )
}
//
// ─── RUN MANY ASYNC FUNCTIONS ───────────────────────────────────────────────────
//
main ( ); async function main ( ) {
try {
await packOrchestra( )
} catch ( error ) {
console.error( error )
}
}
// ────────────────────────────────────────────────────────────────────────────────