forked from im3x/Scriptables
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathloader.gitee.js
148 lines (144 loc) · 4.35 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
//
// scriptable 加载器
// 用于加载远程 scriptable 桌面组件插件
// author@im3x
// 公众号@古人云
// ver: 202010131210
// https://github.com/im3x/Scriptables
//
class Im3xLoader {
constructor (git = 'github') {
// 仓库源
this.git = git
this.ver = 202010131540
// 解析参数
this.opt = {
name: 'welcome',
args: '',
version: 'latest'
}
let arg = args.widgetParameter || args['queryParameters']['__widget__']
if (arg) {
let _args = arg.split(":")
let _plug = _args[0].split("@")
if (_plug.length === 2) {
this.opt['version'] = _plug[1]
}
this.opt['name'] = _plug[0]
if (_args.length === 2) this.opt['args'] = _args[1]
}
// 缓存路径
this.filename = `${this.opt['name']}@${this.opt['version']}.js.im3x`
this.filepath = FileManager.local().documentsDirectory() + '/' + this.filename
this.notify()
this.update()
}
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 {
let req = new Request(`https://${this.git}.com/im3x/Scriptables/raw/main/${encodeURIComponent(this.opt['name'])}/${encodeURIComponent(this.opt['version'])}.js?_=${+new Date}`)
let data = await req.loadString()
// 如果404
if (req.response['statusCode'] === 404) {
return await this.renderFail('插件不存在')
}
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/im3x/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 () {
let req = new Request(`https://${this.git}.com/im3x/Scriptables/raw/main/update.notify.json?_=${+new Date}`)
let res = await req.loadJSON()
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 () {
let req = new Request(`https://gitee.com/api/v5/repos/im3x/Scriptables/commits?path=loader.${this.git}.js&page=1&per_page=1`)
let res = await req.loadJSON()
let commit = res[0]
let key = 'im3x_loader_update'
if (Keychain.contains(key)) {
let cache = Keychain.get(key)
if (cache === commit['sha']) return
}
// 加载远程代码内容
let req1 = new Request(`https://gitee.com/im3x/Scriptables/raw/main/loader.${this.git}.js`)
let res1 = await req1.loadString()
// 当前脚本的路径
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, commit['sha'])
}
}
const Loader = new Im3xLoader('gitee')
const widget = await Loader.init()
if (config.runsInWidget && widget) {
Script.setWidget(widget)
}
Script.complete()