forked from mike347/ATSPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QUpdator.xml
597 lines (518 loc) · 16.8 KB
/
QUpdator.xml
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE muclient>
<!-- Saved on Sunday, January 04, 2015, 9:00 AM -->
<!-- MuClient version 4.94 -->
<!-- Plugin "QonUpdater" generated by Plugin Wizard -->
<muclient>
<plugin
name="QonUpdaterTest"
author="Qon"
id="1ec11b537d60054d832b896a"
language="Lua"
purpose="Autoupdater for Qon's ATS Plugins"
save_state="y"
date_written="2015-01-04 09:00:05"
requires="4.94"
version="0.8"
>
</plugin>
<!-- Get our standard constants -->
<include name="constants.lua"/>
<!-- Aliases -->
<aliases>
<alias
name="Autoupdate"
script="CheckUpdates"
match="qupdate"
enabled="y"
group="QonUpdater"
send_to="12"
sequence="100"
>
</alias>
<alias
name="QInstall"
script="InstallPlugin"
match="^qinstall (.*?)$"
enabled="y"
group="QUpdater"
regexp="y"
send_to="12"
sequence="100"
>
</alias>
<alias
name="Qlist"
script="ListPlugins"
match="qlist"
enabled="y"
group="QonUpdater"
send_to="12"
sequence="100"
>
</alias>
</aliases>
<timers>
<timer name="update_trigger"
script="CheckUpdates"
enabled="n"
minute="59"
>
</timer>
</timers>
<!-- Script -->
<script>
<![CDATA[
--[[ QonUpdater.lua
-- Released 1/4/2015
-- All code is copyrighted to me.
-- All rights reserved.
-- Do not redistribute my plugins without my authorization
--]]
VERSION_URL = "http://qon.pennmush.org/ats/beta/versioninfo.lua"
local theme = { bad = "red", normal = "wheat", hilight = "orange", good = "springgreen" }
NavcompID = "8e3fd4f9c269365839520477"
myID = GetPluginID()
function trim(s)
local from = s:match"^%s*()"
return from > #s and "" or s:match(".*%S", from)
end
function string:split(sep)
if not sep then
sep = "%s"
end
local t={}
local i=1
for str in string.gmatch(self, "([^"..sep.."]+)") do
t[i] = str
i = i + 1
end
return t
end
function CN(font,t,...)
if (...) then
ColourNote(theme[font] or "white", "", string.format(t,...))
else
ColourNote(theme[font] or "white", "", t)
end
end
function CT(font,t,...)
if (...) then
ColourTell(theme[font] or "white", "", string.format(t,...))
else
ColourTell(theme[font] or "white", "", t)
end
end
function BackupFile(file)
local f = io.open(file, "r")
local s = nil
if (not f) then
return
end
s = f:read("*a")
f:close()
f = io.open(file .. ".backup", "w+")
f:write(s)
f:close()
end
function InstallPlugin(_,_,wildcards)
local http = require("socket.http")
local page, retval = http.request(VERSION_URL)
local finfo = utils.info()
local plugin_folder = finfo["plugins_directory"]
if (not wildcards[1]) then
Note("WTF")
return
else
Note(wildcards[1])
end
if (retval ~=200) then
CT("bad","QonInstaller: Error loading version file.")
return
end
local t = { }
setfenv(assert(loadstring(page)),t)()
local info = t.version_info
if (not info) then
CN("bad", "QonInstaller: Error loading version file. Report to Qon.")
return
end
if (wildcards[1]:upper() == "NAVCOMPDATA") then
CN("bad", "QInstaller: Install Navcomp, it will install data automatically.")
return
end
CN("normal", string.format("QonInstaller: Scanning for uninstalled plugin named \"%s\"...", wildcards[1]))
for k, v in pairs(t.version_info) do
if (v.name:upper():match(wildcards[1]:upper()) and k ~= "NavcompData") then
if (IsPluginInstalled(k)) then -- It's installed
CN("bad", string.format("QonInstaller: %s v%s is already installed!", v.name, GetPluginInfo(k, 19)))
return
else
CT("hilight", "QonInstaller: Found " .. v.name .. ".. Downloading... ")
page, retval = http.request(v.page .. v.filename)
if (retval == 200) then
CT("good","SUCCESS!")
CT("normal", ".. Attempting install...")
local f = io.open(plugin_folder .. v.filename, "w+")
if (not f) then
CT("bad", "FAILED!")
return
end
AnsiNote("")
f:write(page)
f:close()
if (v.requires) then
CT("normal", "Found required files.. attempting install..")
for i = 1, #v.requires do
local f = io.open(plugin_folder .. v.requires[i], "r")
if (not f) then
f = io.open(plugin_folder .. v.requires[i], "w+")
if (not f) then
CT("bad", "FAILED on " .. v.requires[i])
end
page, retval = http.request(v.page .. v.requires[i])
if (retval == 200) then
f:write(page)
f:close()
end
end
end
end
if(k == NavcompID) then -- Load data file too!
page, retval = http.request(t.version_info["NavcompData"].page .. t.version_info["NavcompData"].filename)
if (retval ~= 200) then
CN("red", "QInstaller: Unable to load Navcomp Database.")
return
end
f = io.open(plugin_folder .. t.version_info["NavcompData"].filename)
if (not f) then
CN("red", "QInstaller: Unable to load Navcomp Database.")
return
end
f:write(page)
f:close()
end
-- DoAfterSpecial (2, "LoadPlugin('" .. plugin_folder .. v.filename .. "')", sendto.script) -- Not working for some reason. screw it.
LoadPlugin(plugin_folder .. v.filename, sendto.script)
return
else
CT("bad","FAILED!")
AnsiNote("")
return
end -- retval
end -- Installed
end -- if (match)
end -- for
-- If we got this far, we found jack squat.
CN("bad", "QInstaller: Found nothing matching \"" .. wildcards[1] .. "\"")
end -- function
function CheckUpdates(name)
local http = require("socket.http")
local silent = false
local results = 0
local page, retval = http.request(VERSION_URL) -- Request Version file
local dbupdate = false
if (name == "update_trigger") then
silent = true
end
if (retval ~= 200 ) then
if (not silent) then
CN("bad", "QUpdater: Error loading version file.")
end
return
end
local t = { }
setfenv(assert(loadstring(page)),t)()
local info = t.version_info
if (not info) then
if (not silent) then
CN("bad", "QUpdater: Error loading version file. Report to Qon.")
end
return
end
local myversion = GetPluginInfo(myID,19)
if (myversion < t.version_info[myID].version) then
local v = t.version_info[myID]
local t = GetPluginInfo(myID,6):split("\\")
local filename = t[#t]
if (filename == v.filename) then
local page, retval = http.request(v.page .. v.filename)
CN("hilight", "QUpdater: There is a new version of this plugin. Updating self.")
if (retval == 200 ) then
local filename = GetPluginInfo(myID, 6)
local f = io.open(filename, "w+")
if (not f) then
CN("bad", "QUpdater: Error updating. Try manually?")
return
end
f:write(page)
f:close()
CN("hilite", "QUpdater: Reinstall using plugin loader, then run 'qupdate' again.")
return
else
CN("bad", "QUpdater: Error updating. Try manually?")
return
end -- retval
else -- filename
CN("red", "Qupdater: I want to update myself.. but can't oh well.")
end
end -- self version check
SetStatus("Checking for updated QonPlugins...")
-- First of 3 loops. Why 3 loops? Because this allows better error handling
-- First loop just checks for and tags any we want to update
for k, v in pairs(t.version_info) do
if (k == "NavcompData") then
v.installed = IsPluginInstalled(NavcompID)
local NavcompVersion = GetPluginInfo(NavcompID, 19) or 0.0
if(v.installed and NavcompVersion >=1.17) then -- We do this incase they are using a pre-Qupdater version of Navcomp. It won't have teh dbfile() or dbversion() functions
local _, file = CallPlugin(NavcompID, "dbfile")
v.localfile = file
local _, dbversion = CallPlugin(NavcompID, "dbversion")
if (dbversion) then
if (dbversion < v.version and v.localfile) then
v.update = true
dbupdate = true
results = results + 1
end
end
end
else
if (IsPluginInstalled(k)) then -- It's installed
v.installed = GetPluginInfo(k, 19) -- Grab Installed version
v.localfile = GetPluginInfo(k, 6) -- Grab Installed location
if (v.installed < v.version) then -- Remote version is more recent, tag it
v.update = true
results = results + 1
end
end
end
end
if (results == 0) then
if (not silent) then
CN("normal", "QUpdater: No updates found.")
end
else -- Second loop Downloads the updates
CN("hilight", string.format("QUpdater: Found %d updates...preparing to update.", results))
results = 0 -- Reset result counter so we can use it to slow down the reload process
for k, v in pairs(t.version_info) do
if (v.update) then
CT("normal", "QUpdater: Downloading " .. v.name .. " ...")
page, retval = http.request(v.page .. v.filename)
if (retval == 200) then -- 200 is success, anything else we don't care it just means failure
v.download = page
CT("good", "SUCCESS!")
AnsiNote("")
results = results + 1
else
CT("bad", "FAILED!")
AnsiNote("")
end
end
end
-- Third loop writes the files and sets up the reloading routine.
for k, v in pairs(t.version_info) do
if (v.download) then
local tmp = v.localfile:split("\\")
local testfilename = tmp[#tmp] or ""
if (testfilename == v.filename) then
BackupFile(v.localfile) -- Back the file up just incase
local f = io.open(v.localfile, "w+") -- w+ means overwrite
f:write(v.download) -- Write it
f:close() -- Close it
if (k == "NavcompData") then
CallPlugin(NavcompID, "loadData", true)
else
DoAfterSpecial (2, "ReloadPlugin('" .. k .. "')", sendto.script) -- Wait 2 seconds then reload.
if (v.whatsnew) then
ColourTell("yellow", "", "What's new for " .. v.name .. ":\r\n")
ColourTell("green", "", v.whatsnew)
AnsiNote("")
end
end
else
CN("bad", "QUpdater: %s filename has changed. Please update manually.", v.name, testfilename, v.filename)
end
end
end
end
SetStatus("")
end
function OnPluginInstall ()
CN("hilight", "QUpdater v" .. GetPluginInfo(GetPluginID(),19) .. " loaded.")
end
function ListPlugins()
local http = require("socket.http")
local results = 0
local page, retval = http.request(VERSION_URL) -- Request Version file
if (retval ~= 200 ) then
CN("bad", "QUpdater: Error loading version file.")
return
end
local t = { }
setfenv(assert(loadstring(page)),t)()
local info = t.version_info
if (not info) then
CN("bad", "QUpdater: Error loading version file. Report to Qon.")
return
end
--table.sort(t.version_info, function(a,b) return a.name < b.name end) -- Sort closest to furthest
AnsiNote(string.format("%s--[%sQon's Plugin List%s]%s%s", ANSI(1,34), ANSI(1,33), ANSI(1,34), string.rep("-", 57), ANSI(0)))
AnsiNote(string.format("%s%-25.25s %-10.10s\n%s%s%s", ANSI(36), "Plugin Name", "Version", ANSI(0,34), string.rep("-",78), ANSI(0)))
for k, v in pairs(t.version_info) do
if (k == "NavcompData") then
else
local installed = IsPluginInstalled(k)
local version = installed and GetPluginInfo(k, 19) or nil
local vcolor = theme.good
if (installed and version >= v.version) then
vcolor = theme.good
elseif (installed and version < v.version) then
vcolor = theme.bad
else
vcolor = theme.normal
end
if (v.infopage) then
Hyperlink(v.infopage, v.name, "Click to open in browser", installed and theme.good or theme.bad, "", true)
if (#v.name < 25) then
ColourTell("", "", string.rep(" ", 25 - #v.name))
end
ColourTell(vcolor, "", string.format(" %s%s", version or "Not installed", latest and "" or " (" .. v.version .. ")"))
else
ColourTell(installed and theme.good or theme.bad, "", string.format("%-25.25s",v.name))
ColourTell(vcolor, "", string.format(" %s%s", version or "Not installed", latest and "" or " (" .. v.version .. ")"))
end
if (k == NavcompID and installed) then
local _, dbversion = CallPlugin(NavcompID, "dbversion")
if (dbversion) then
local remotedbversion = t.version_info["NavcompData"].version or 0
ColourTell(dbversion == remotedbversion and theme.good or theme.bad, "",
string.format(" DB v%.2f %s", dbversion, dbversion < remotedbversion and "(" .. remotedbversion .. ")" or "") )
AnsiNote("")
end
else
AnsiNote("")
end
end
end -- for
AnsiNote(ANSI(0,34), string.rep("-",78))
end -- function
--[[
-- Co Routine stuff. Didn't work as intended, but don't wanna toss the code just yet.
--
require "socket"
host = "marqon.pi-raspberry.com"
threads = {} -- list of all live threads
downloads = { } -- Table of downloaded files
function download (host, file, name)
local c = assert(socket.connect(host, 80))
local count = 0 -- counts number of bytes read
c:send("GET " .. file .. " HTTP/1.0\r\n\r\n")
while true do
local s, status = receive(c)
count = count + string.len(s)
table.insert(downloads[name],s)
if status == "closed" then break end
end
c:close()
Note(string.format("%s: %d, %s", name, count, table.concat(downloads[name])))
end
function receive (connection)
connection:timeout(0) -- do not block
local s, status = connection:receive(2^10)
if status == "timeout" then
coroutine.yield(connection)
end
return s, status
end
function get (host, file, name)
downloads[name] = { }
-- create coroutine
local co = coroutine.create(function ()
download(host, file, name)
end)
-- insert it in the list
table.insert(threads, co)
end
function CN(n)
CN("normal", n)
end
-- Main thread dispatcher. Resumes threads as needed, turns off dispatcher timer when done.
function dispatcher ()
local n = #threads
if (n == 0) then
EnableTimer ("dispatcher", false)
FinishUpdate()
return
end -- no more threads to run
local connections = {}
SetStatus(string.format("Threads: %d", n))
for i=1,n do
CN("Attempting to resume thread: " .. tostring(i))
local status, res = coroutine.resume(threads[i])
if not res then -- thread finished its task?
CN("Thread has finished: " .. tostring(i))
table.remove(threads, i)
break
else -- timeout
CN("Thread timeout: " .. tostring(i))
table.insert(connections, res)
end
end
--[[if (#connections == n) then
CN("Connection.select: " .. tostring(#connections))
socket.select(connections)
end
end--]]
function CheckUpdatesCo(name)
local http = require("socket.http")
local silent = false
local results = 0
if (name == "update_trigger") then
silent = true
end
-- If we are already running updates, stop here. Should never happen, but you never know.
if( #threads > 0) then
return
end
local page, retval = http.request(VERSION_URL)
if (retval ~= 200 ) then
CN("bad", "QUpdater: Error loading version file.")
return
end
SetStatus("Checking for updated QonPlugins...")
local t = { }
setfenv(assert(loadstring(page)),t)()
local info = t.version_info
for k, v in pairs(plugin_table) do
if (IsPluginInstalled(k)) then
v.version = GetPluginInfo(k,19)
v.localfile = GetPluginInfo(k, 6)
if (info[k]) then
if (v.version < info[k].version) then
results = results + 1
v.update = true
get(host, info[k].page, info[k].name)
end
else
v.version = nil
v.update = false
end
end
end
if (results > 0) then
SetStatus(string.format("QUpdater: Downloading %d updates...", results))
dispatcher()
AddTimer ("dispatcher", 0, 0, 1, "",
timer_flag.Enabled + timer_flag.Replace,
"dispatcher")
end
end
function FinishUpdate()
for k, v in pairs(downloads) do
Note(string.format("Downloaded: %s", k))
end
end
--]]
]]>
</script>
</muclient>