-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotocol-handler-installer.js
115 lines (105 loc) · 2.93 KB
/
protocol-handler-installer.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
const { remote } = require('electron');
const SETTING = 'core.uriHandlerRegistration';
const PROMPT = 'prompt';
const ALWAYS = 'always';
const NEVER = 'never';
module.exports = class ProtocolHandlerInstaller {
isSupported() {
return ['win32', 'darwin'].includes(process.platform);
}
isDefaultProtocolClient() {
return remote.app.isDefaultProtocolClient('atom', process.execPath, [
'--uri-handler',
'--'
]);
}
setAsDefaultProtocolClient() {
// This Electron API is only available on Windows and macOS. There might be some
// hacks to make it work on Linux; see https://github.com/electron/electron/issues/6440
return (
this.isSupported() &&
remote.app.setAsDefaultProtocolClient('atom', process.execPath, [
'--uri-handler',
'--'
])
);
}
initialize(config, notifications) {
if (!this.isSupported()) {
return;
}
const behaviorWhenNotProtocolClient = config.get(SETTING);
switch (behaviorWhenNotProtocolClient) {
case PROMPT:
if (!this.isDefaultProtocolClient()) {
this.promptToBecomeProtocolClient(config, notifications);
}
break;
case ALWAYS:
if (!this.isDefaultProtocolClient()) {
this.setAsDefaultProtocolClient();
}
break;
case NEVER:
if (process.platform === 'win32') {
// Only win32 supports deregistration
const Registry = require('winreg');
const commandKey = new Registry({ hive: 'HKCR', key: `\\atom` });
commandKey.destroy((_err, _val) => {
/* no op */
});
}
break;
default:
// Do nothing
}
}
promptToBecomeProtocolClient(config, notifications) {
let notification;
const withSetting = (value, fn) => {
return function() {
config.set(SETTING, value);
fn();
};
};
const accept = () => {
notification.dismiss();
this.setAsDefaultProtocolClient();
};
const decline = () => {
notification.dismiss();
};
notification = notifications.addInfo(
'Register as default atom:// URI handler?',
{
dismissable: true,
icon: 'link',
description:
'Atom is not currently set as the default handler for atom:// URIs. Would you like Atom to handle ' +
'atom:// URIs?',
buttons: [
{
text: 'Yes',
className: 'btn btn-info btn-primary',
onDidClick: accept
},
{
text: 'Yes, Always',
className: 'btn btn-info',
onDidClick: withSetting(ALWAYS, accept)
},
{
text: 'No',
className: 'btn btn-info',
onDidClick: decline
},
{
text: 'No, Never',
className: 'btn btn-info',
onDidClick: withSetting(NEVER, decline)
}
]
}
);
}
};