-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathloader.gitee.js
169 lines (164 loc) · 5.26 KB
/
loader.gitee.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
//
// scriptable 加载器
// 用于加载远程 scriptable 桌面组件插件
// author@im3x
// 公众号@古人云
// 小程序@小件件
// https://github.com/im3x/Scriptables
//
class Im3xLoader {
constructor (git = 'github') {
// 仓库源
this.git = git
this.ver = 202011091230
// 解析参数
this.opt = {
name: 'welcome',
args: '',
version: 'latest',
developer: 'im3x'
}
let arg = args.widgetParameter || args['queryParameters']['__widget__']
// widget@version:params
// 第三方开发者源:user-name/widget@version:params
if (arg) {
let _args = arg.split(":")
let _plug = _args[0].split("@")
if (_plug.length === 2) {
this.opt['version'] = _plug[1]
}
let _name = _plug[0].split('/')
if (_name.length === 2) {
this.opt['name'] = _name[1]
this.opt['developer'] = _name[0]
} else {
this.opt['name'] = _name[0]
}
if (_args.length === 2) this.opt['args'] = _args[1]
}
// 缓存路径
this.filename = `${this.opt['developer']}_${this.opt['name']}@${this.opt['version']}.js.im3x`
this.filepath = FileManager.local().documentsDirectory() + '/' + this.filename
this.notify()
this.update()
}
async httpGet (url, json = true) {
const req = new Request(url)
req.headers = {
'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1 Edg/86.0.4240.18 Scriptable/' + (+new Date)
}
req.method = "GET"
return await req[json ? 'loadJSON' : 'loadString']()
}
async init () {
// 判断文件是否存在
let rendered = false
let widget
if (FileManager.local().fileExists(this.filepath)) {
try {
rendered = true
widget = await this.render()
} catch(e){
rendered = false
}
}
// 加载代码,存储
try {
// 如果代码是第三方开发者仓库,则加载github的
let data = ''
if (this.opt['developer'] !== 'im3x') {
data = await this.httpGet(`https://${this.git}.com/${this.opt['developer']}/Scriptables/raw/main/${encodeURIComponent(this.opt['name'])}/${encodeURIComponent(this.opt['version'])}.js?_=${+new Date}`, false)
} else {
data = await this.httpGet(`https://x.im3x.cn/loader/scriptables/${encodeURIComponent(this.opt['name'])}/${encodeURIComponent(this.opt['version'])}.js?_=${+new Date}`, false)
}
await FileManager.local().writeString(this.filepath, data)
if (!rendered) {
widget = await this.render()
}
} catch (e) {
// 网络加载失败,返回错误提示
// 如果已经渲染了(有本地缓存,直接返回本地代码)
if (rendered) return widget
return await this.renderFail(e.message)
}
return widget
}
// 加载失败提示
async renderFail (err) {
let w = new ListWidget()
let t1 = w.addText("⚠️")
t1.centerAlignText()
w.addSpacer(10)
let t2 = w.addText(err)
t2.textColor = Color.red()
t2.font = Font.lightSystemFont(14)
t2.centerAlignText()
w.url = `https://github.com/${this.opt['developer']}/Scriptables`
return w
}
// 初始化组件并渲染
async render () {
let M = importModule(this.filename)
let m = new M(this.opt['args'], this)
// 执行组件自定义方法操作
if (!config.runsInWidget && typeof m['runActions'] === 'function') {
try {
let func = m.runActions.bind(m)
await func()
} catch (e) {
let alert = new Alert()
alert.title = "执行失败"
alert.message = e.message
alert.presentAlert()
}
return false
}
let w = await m.render()
return w
}
// 通知
async notify () {
const res = await this.httpGet(`https://x.im3x.cn/loader/scriptables/update.notify.json?_=${+new Date}`)
if (!res || !res['id']) return
// 判断是否已经通知过
let key = 'im3x_loader_notify'
if (Keychain.contains(key)) {
let cache = Keychain.get(key)
if (cache === res['id']) return
}
// 通知
let n = new Notification()
n = Object.assign(n, res)
n.schedule()
// 设置已通知
Keychain.set(key, res['id'])
}
// 更新加载器
async update () {
const res = await this.httpGet('https://x.im3x.cn/loader/scriptables/update.notify.json')
let version = String(res['loader.version'])
let key = 'im3x_loader_update'
if (Keychain.contains(key)) {
let cache = Keychain.get(key)
if (cache === version) return
}
// 加载远程代码内容
const res1 = await this.httpGet(`https://x.im3x.cn/loader/scriptables/loader.${this.git}.js`, false)
// 当前脚本的路径
let self = module.filename
// 读取前三行代码(包含图标信息)
let selfContent = FileManager.local().readString(self)
let tmp = selfContent.split("\n")
// 放到前三行
let new_code = `${tmp[0]}\n${tmp[1]}\n${tmp[2]}\n${res1}`
// 写入文件
FileManager.local().writeString(self, new_code)
Keychain.set(key, version)
}
}
const Loader = new Im3xLoader('gitee')
const widget = await Loader.init()
if (config.runsInWidget && widget) {
Script.setWidget(widget)
}
Script.complete()