forked from rockybars/atom-shell-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmac.js
288 lines (241 loc) · 9.59 KB
/
mac.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
'use strict'
const common = require('./common')
const debug = require('debug')('electron-packager')
const fs = require('fs-extra')
const path = require('path')
const plist = require('plist')
const series = require('run-series')
const sign = require('electron-osx-sign')
class MacApp {
constructor (opts, stagingPath) {
this.opts = opts
this.stagingPath = stagingPath
this.appName = opts.name
this.operations = []
this.renamedAppPath = path.join(this.stagingPath, `${common.sanitizeAppName(this.appName)}.app`)
this.electronAppPath = path.join(this.stagingPath, 'Brave.app')
this.contentsPath = path.join(this.electronAppPath, 'Contents')
this.frameworksPath = path.join(this.contentsPath, 'Frameworks')
this.resourcesPath = path.join(this.contentsPath, 'Resources')
}
get appCategoryType () {
return this.opts.appCategoryType
}
get appCopyright () {
return this.opts.appCopyright
}
get appVersion () {
return this.opts.appVersion
}
get buildVersion () {
return this.opts.buildVersion
}
get protocols () {
return this.opts.protocols.map((protocol) => {
return {
CFBundleURLName: protocol.name,
CFBundleURLSchemes: [].concat(protocol.schemes)
}
})
}
updatePlist (base, displayName, identifier, name) {
return Object.assign(base, {
CFBundleDisplayName: displayName,
CFBundleExecutable: common.sanitizeAppName(displayName),
CFBundleIdentifier: identifier,
CFBundleName: common.sanitizeAppName(name)
})
}
updateHelperPlist (base, suffix) {
let helperSuffix, identifier, name
if (suffix) {
helperSuffix = `Helper ${suffix}`
identifier = `${this.helperBundleIdentifier}.${suffix}`
name = `${this.appName} ${helperSuffix}`
} else {
helperSuffix = 'Helper'
identifier = this.helperBundleIdentifier
name = this.appName
}
return this.updatePlist(base, `${this.appName} ${helperSuffix}`, identifier, name)
}
extendAppPlist (props) {
let extendedAppPlist = props
if (typeof props === 'string') {
extendedAppPlist = plist.parse(fs.readFileSync(props).toString())
}
return Object.assign(this.appPlist, extendedAppPlist)
}
loadPlist (filename) {
return plist.parse(fs.readFileSync(filename).toString())
}
ehPlistFilename (helper) {
return path.join(this.frameworksPath, helper, 'Contents', 'Info.plist')
}
updatePlistFiles () {
let appPlistFilename = path.join(this.contentsPath, 'Info.plist')
let helperPlistFilename = this.ehPlistFilename('Brave Helper.app')
let helperEHPlistFilename = this.ehPlistFilename('Brave Helper EH.app')
let helperNPPlistFilename = this.ehPlistFilename('Brave Helper NP.app')
this.appPlist = this.loadPlist(appPlistFilename)
let helperPlist = this.loadPlist(helperPlistFilename)
let helperEHPlist = this.loadPlist(helperEHPlistFilename)
let helperNPPlist = this.loadPlist(helperNPPlistFilename)
let defaultBundleName = `com.electron.${common.sanitizeAppName(this.appName).toLowerCase()}`
let appBundleIdentifier = filterCFBundleIdentifier(this.opts.appBundleId || defaultBundleName)
this.helperBundleIdentifier = filterCFBundleIdentifier(this.opts.helperBundleId || `${appBundleIdentifier}.helper`)
if (this.opts.extendInfo) {
this.appPlist = this.extendAppPlist(this.opts.extendInfo)
}
this.appPlist = this.updatePlist(this.appPlist, this.appName, appBundleIdentifier, this.appName)
helperPlist = this.updateHelperPlist(helperPlist)
helperEHPlist = this.updateHelperPlist(helperEHPlist, 'EH')
helperNPPlist = this.updateHelperPlist(helperNPPlist, 'NP')
if (this.appVersion) {
this.appPlist.CFBundleShortVersionString = this.appPlist.CFBundleVersion = '' + this.appVersion
}
if (this.buildVersion) {
this.appPlist.CFBundleVersion = '' + this.buildVersion
}
if (this.opts.protocols && this.opts.protocols.length) {
this.appPlist.CFBundleURLTypes = this.protocols
}
if (this.appCategoryType) {
this.appPlist.LSApplicationCategoryType = this.appCategoryType
}
if (this.appCopyright) {
this.appPlist.NSHumanReadableCopyright = this.appCopyright
}
fs.writeFileSync(appPlistFilename, plist.build(this.appPlist))
fs.writeFileSync(helperPlistFilename, plist.build(helperPlist))
fs.writeFileSync(helperEHPlistFilename, plist.build(helperEHPlist))
fs.writeFileSync(helperNPPlistFilename, plist.build(helperNPPlist))
}
moveHelpers (callback) {
series([' Helper', ' Helper EH', ' Helper NP'].map((suffix) => {
return (cb) => {
let executableBasePath = path.join(this.frameworksPath, `Brave${suffix}.app`, 'Contents', 'MacOS')
common.rename(executableBasePath, `Brave${suffix}`, `${common.sanitizeAppName(this.appName)}${suffix}`, (err) => {
if (err) return cb(err)
common.rename(this.frameworksPath, `Brave${suffix}.app`, `${common.sanitizeAppName(this.appName)}${suffix}.app`, cb)
})
}
}), (err) => {
callback(err)
})
}
enqueueCopyingIcon () {
this.operations.push((cb) => {
common.normalizeExt(this.opts.icon, '.icns', (err, icon) => {
if (err) {
// Ignore error if icon doesn't exist, in case it's only available for other OS
cb(null)
} else {
debug(`Copying icon "${icon}" to app's Resources as "${this.appPlist.CFBundleIconFile}"`)
fs.copy(icon, path.join(this.resourcesPath, this.appPlist.CFBundleIconFile), cb)
}
})
})
}
enqueueCopyingExtraFiles (extras) {
if (!Array.isArray(extras)) extras = [extras]
extras.forEach((filename) => {
this.operations.push((cb) => {
fs.copy(filename, path.join(this.resourcesPath, path.basename(filename)), cb)
})
})
}
enqueueRenamingElectronBinary () {
this.operations.push((cb) => {
common.rename(path.join(this.contentsPath, 'MacOS'),
'Brave',
this.appPlist.CFBundleExecutable,
cb)
})
}
enqueueRenamingAppAndHelpers () {
this.operations.push((cb) => {
this.moveHelpers(cb)
}, (cb) => {
fs.rename(this.electronAppPath, this.renamedAppPath, cb)
})
}
enqueueAppSigningIfSpecified () {
let osxSignOpt = this.opts.osxSign
let platform = this.opts.platform
let version = this.opts.electronVersion
if ((platform === 'all' || platform === 'mas') &&
osxSignOpt === undefined) {
common.warning('signing is required for mas builds. Provide the osx-sign option, ' +
'or manually sign the app later.')
}
if (osxSignOpt) {
this.operations.push((cb) => {
let signOpts = createSignOpts(osxSignOpt, platform, this.renamedAppPath, version, this.opts.quiet)
debug(`Running electron-osx-sign with the options ${JSON.stringify(signOpts)}`)
sign(signOpts, (err) => {
if (err) {
// Although not signed successfully, the application is packed.
common.warning('Code sign failed; please retry manually.', err)
}
cb()
})
})
}
}
executeOperations (callback) {
series(this.operations, (err) => {
if (err) return callback(err)
common.moveApp(this.opts, this.stagingPath, callback)
})
}
}
// Remove special characters and allow only alphanumeric (A-Z,a-z,0-9), hyphen (-), and period (.)
// Apple documentation:
// https://developer.apple.com/library/mac/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070
function filterCFBundleIdentifier (identifier) {
return identifier.replace(/ /g, '-').replace(/[^a-zA-Z0-9.-]/g, '')
}
function createSignOpts (properties, platform, app, version, quiet) {
// use default sign opts if osx-sign is true, otherwise clone osx-sign object
let signOpts = properties === true ? {identity: null} : Object.assign({}, properties)
// osx-sign options are handed off to sign module, but
// with a few additions from the main options
// user may think they can pass platform, app, or version, but they will be ignored
common.subOptionWarning(signOpts, 'osx-sign', 'platform', platform, quiet)
common.subOptionWarning(signOpts, 'osx-sign', 'app', app, quiet)
common.subOptionWarning(signOpts, 'osx-sign', 'version', version, quiet)
if (signOpts.binaries) {
common.warning('osx-sign.binaries is not an allowed sub-option. Not passing to electron-osx-sign.')
delete signOpts.binaries
}
// Take argument osx-sign as signing identity:
// if opts.osxSign is true (bool), fallback to identity=null for
// autodiscovery. Otherwise, provide signing certificate info.
if (signOpts.identity === true) {
signOpts.identity = null
}
return signOpts
}
module.exports = {
createApp: function createApp (opts, templatePath, callback) {
let appRelativePath = path.join('Brave.app', 'Contents', 'Resources', 'app')
common.initializeApp(opts, templatePath, appRelativePath, function buildMacApp (err, stagingPath) {
if (err) return callback(err)
let appCreator = new MacApp(opts, stagingPath)
appCreator.updatePlistFiles()
if (opts.icon) {
appCreator.enqueueCopyingIcon()
}
if (opts.extraResource) {
appCreator.enqueueCopyingExtraFiles(opts.extraResource)
}
appCreator.enqueueRenamingElectronBinary()
appCreator.enqueueRenamingAppAndHelpers()
appCreator.enqueueAppSigningIfSpecified()
return appCreator.executeOperations(callback)
})
},
createSignOpts: createSignOpts,
filterCFBundleIdentifier: filterCFBundleIdentifier
}