-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathScriptore.js
296 lines (274 loc) · 7.64 KB
/
Scriptore.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
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-blue; icon-glyph: user-secret;
/**
* Scriptable scripts store
*
* @version 1.0.2
* @author Honye
*/
/**
* @file Scriptable WebView JSBridge native SDK
* @version 1.0.3
* @author Honye
*/
/**
* @typedef Options
* @property {Record<string, () => void>} methods
*/
const sendResult = (() => {
let sending = false;
/** @type {{ code: string; data: any }[]} */
const list = [];
/**
* @param {WebView} webView
* @param {string} code
* @param {any} data
*/
return async (webView, code, data) => {
if (sending) return
sending = true;
list.push({ code, data });
const arr = list.splice(0, list.length);
for (const { code, data } of arr) {
const eventName = `ScriptableBridge_${code}_Result`;
const res = data instanceof Error ? { err: data.message } : data;
await webView.evaluateJavaScript(
`window.dispatchEvent(
new CustomEvent(
'${eventName}',
{ detail: ${JSON.stringify(res)} }
)
)`
);
}
if (list.length) {
const { code, data } = list.shift();
sendResult(webView, code, data);
} else {
sending = false;
}
}
})();
/**
* @param {WebView} webView
* @param {Options} options
*/
const inject = async (webView, options) => {
const js =
`(() => {
const queue = window.__scriptable_bridge_queue
if (queue && queue.length) {
completion(queue)
}
window.__scriptable_bridge_queue = null
if (!window.ScriptableBridge) {
window.ScriptableBridge = {
invoke(name, data, callback) {
const detail = { code: name, data }
const eventName = \`ScriptableBridge_\${name}_Result\`
const controller = new AbortController()
window.addEventListener(
eventName,
(e) => {
callback && callback(e.detail)
controller.abort()
},
{ signal: controller.signal }
)
if (window.__scriptable_bridge_queue) {
window.__scriptable_bridge_queue.push(detail)
completion()
} else {
completion(detail)
window.__scriptable_bridge_queue = []
}
}
}
window.dispatchEvent(
new CustomEvent('ScriptableBridgeReady')
)
}
})()`;
const res = await webView.evaluateJavaScript(js, true);
if (!res) return inject(webView, options)
const methods = options.methods || {};
const events = Array.isArray(res) ? res : [res];
// 同时执行多次 webView.evaluateJavaScript Scriptable 存在问题
// 可能是因为 JavaScript 是单线程导致的
const sendTasks = events.map(({ code, data }) => {
return (() => {
try {
return Promise.resolve(methods[code](data))
} catch (e) {
return Promise.reject(e)
}
})()
.then((res) => sendResult(webView, code, res))
.catch((e) => {
console.error(e);
sendResult(webView, code, e instanceof Error ? e : new Error(e));
})
});
await Promise.all(sendTasks);
inject(webView, options);
};
/**
* @param {WebView} webView
* @param {string} url
* @param {Options} options
*/
const loadURL = async (webView, url, options = {}) => {
await webView.loadURL(url);
inject(webView, options).catch((err) => console.error(err));
};
const filePath = module.filename;
const appRoot = filePath.substring(0, filePath.lastIndexOf('/'));
const iCloudManager = FileManager.iCloud();
const fs = iCloudManager.isFileStoredIniCloud(filePath) ? iCloudManager : FileManager.local();
const modulesRoot = fs.libraryDirectory();
const url = 'https://scriptore.imarkr.com/';
/**
* @param {{[language: string]: string} | string[]} langs
*/
const i18n = (langs) => {
const language = Device.language();
if (Array.isArray(langs)) {
langs = {
en: langs[0],
zh: langs[1],
others: langs[0]
};
} else {
langs.others = langs.others || langs.en;
}
return langs[language] || langs.others
};
/**
* download and install script from the url
*
* @param {string} url url of the script
* @param {object} options
* @param {string} [options.name] file name with extension name
* @param {boolean} [options.override] weather override the existed file
* @param {string} [options.dir] where directory the file would save
* @returns {Promise<boolean>} false: user canceled
*/
async function installByURL (url, options = {}) {
const { override, name, dir } = {
override: false,
...options
};
const blobRegxp = /^https:\/\/github\.com\/(.+)\/blob\/(.+\.js$)/;
if (blobRegxp.test(url)) {
url = url.replace(blobRegxp, 'https://raw.githubusercontent.com/$1/$2');
}
const request = new Request(url);
const text = await request.loadString()
.catch(async (e) => {
console.error(e);
const notification = new Notification();
notification.title = Script.name();
notification.body = e.toString();
await notification.schedule();
throw e
});
const fileName = name || decodeURIComponent(url.split('/').pop().replace(/([^?#]+)([?#].*)*/, '$1'));
let filePath = `${dir || appRoot}/${fileName}`;
if (fs.fileExists(filePath) && !override) {
const alert = new Alert();
alert.message = i18n([
`${fileName} existed, please rename`,
`${fileName} 已存在,请重命名`
]);
alert.addTextField(
i18n(['new file name', '新文件名']),
fs.fileName(filePath) + '1'
);
alert.addAction(i18n(['Save', '保存']));
alert.addCancelAction(i18n(['Cancel', '取消']));
const num = await alert.present();
if (num === -1) return false
const newName = alert.textFieldValue(0);
if (newName) {
filePath = `${appRoot}/${newName}.js`;
} else {
return false
}
}
fs.writeString(filePath, text);
return true
}
/**
* Install the script on Scriptore
* @param {object} script
* @param {string} script.name
* @param {string[]} script.files
* @param {Record<string, string>} [script.dependencies]
* @param {object} options
* @param {boolean} [options.update = false]
*/
const installScript = async (script, options = {}) => {
const { files, dependencies = {} } = script;
const { update = false } = options;
/** @type {Promise[]} */
const promises = [];
// install dependencies
for (const name in dependencies) {
promises.push(
installByURL(dependencies[name], {
name: `${name}.js`,
override: true,
dir: modulesRoot
})
);
}
for (const url of files) {
promises.push(
installByURL(url, { override: update })
.then((isOK) => isOK || Promise.reject(new Error('canceled')))
);
}
await Promise.all(promises)
.catch((e) => console.warn(e));
return script
};
const webView = new WebView();
const methods = {
install (data) {
return installScript(data)
},
getInstalled () {
const contents = fs.listContents(appRoot);
const list = [];
for (const name of contents) {
if (name.match(/(.*)\.js$/)) {
const content = fs.readString(fs.joinPath(appRoot, name));
const matches = content.match(/@version\s(\d+.\d+.\d+)/);
list.push({
name,
version: matches ? matches[1] : '0.0.0'
});
({
name,
version: matches ? matches[1] : '0.0.0'
});
}
}
return list
},
updateScript (data) {
return installScript(data, { update: true })
},
safari (url) {
Safari.openInApp(url, true);
}
};
const query = args.queryParameters;
const fileURL = query && query.url;
if (fileURL) {
installByURL(fileURL);
} else {
await loadURL(webView, url, { methods });
webView.present(true);
}