2013-10-30 21:20:42 +01:00
|
|
|
local wifi = require('network.wlanconfig')
|
|
|
|
local netconf = require('network.netconfig')
|
|
|
|
local settings = require('util.settings')
|
|
|
|
|
2013-10-18 21:46:41 +02:00
|
|
|
-- NOTE: the module 'detects' command-line invocation by existence of 'arg', so we have to make sure it is not defined.
|
|
|
|
argStash = arg
|
|
|
|
arg = nil
|
|
|
|
local updater = require('script.d3d-updater')
|
|
|
|
arg = argStash
|
|
|
|
|
|
|
|
local log = require('util.logger')
|
|
|
|
local utils = require('util.utils')
|
2013-10-23 16:12:19 +02:00
|
|
|
local accessManager = require('util.access')
|
|
|
|
local printerAPI = require('rest.api.api_printer')
|
2013-10-18 21:46:41 +02:00
|
|
|
|
|
|
|
local M = {
|
|
|
|
isApi = true
|
|
|
|
}
|
|
|
|
|
2013-10-23 16:12:19 +02:00
|
|
|
|
|
|
|
-- TODO: this function is also defined in 2 other places, combine them (and avoid require loops)
|
|
|
|
local function operationsAccessOrFail(request, response)
|
|
|
|
if not accessManager.hasControl(request.remoteAddress) then
|
|
|
|
response:setFail("No control access")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
local rv, printerState = printerAPI.state(request, response, true)
|
|
|
|
if(rv == false) then
|
|
|
|
response:setError("Could not get printer state")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
if printerState == 'buffering' or printerState == 'printing' or printerState == 'stopping' then
|
|
|
|
response:setFail("Printer is busy, please wait")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-10-18 21:46:41 +02:00
|
|
|
function M.status(request, response)
|
|
|
|
updater.setLogger(log)
|
2013-10-21 12:36:54 +02:00
|
|
|
updater.setUseCache(false)
|
2013-10-22 03:30:23 +02:00
|
|
|
local success,status,msg = updater.getStatus()
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
--response:addData('current_version', status.currentVersion)
|
|
|
|
response:addData('current_version', updater.formatVersion(status.currentVersion))
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
response:addData('state_code', status.stateCode)
|
|
|
|
response:addData('state_text', status.stateText)
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
if not success then
|
2013-10-18 21:46:41 +02:00
|
|
|
response:setFail(msg)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local canUpdate = updater.compareVersions(status.newestVersion, status.currentVersion) > 0
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-18 21:46:41 +02:00
|
|
|
--response:addData('newest_version', status.newestVersion)
|
2013-10-22 03:30:23 +02:00
|
|
|
response:addData('newest_version', updater.formatVersion(status.newestVersion))
|
2013-10-18 21:46:41 +02:00
|
|
|
response:addData('can_update', canUpdate)
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-18 21:46:41 +02:00
|
|
|
if status.progress then response:addData('progress', status.progress) end
|
|
|
|
if status.imageSize then response:addData('image_size', status.imageSize) end
|
|
|
|
response:setSuccess()
|
|
|
|
end
|
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
-- accepts: version(string) (major.minor.patch)
|
2013-10-18 21:46:41 +02:00
|
|
|
-- accepts: clear_gcode(bool, defaults to true) (this is to lower the chance on out-of-memory crashes, but still allows overriding this behaviour)
|
|
|
|
-- accepts: clear_images(bool, defaults to true) (same rationale as with clear_gcode)
|
|
|
|
-- note: call this with a long timeout - downloading may take a while (e.g. ~3.3MB with slow internet...)
|
|
|
|
function M.download_POST(request, response)
|
|
|
|
local argVersion = request:get("version")
|
|
|
|
local argClearGcode = utils.toboolean(request:get("clear_gcode"))
|
|
|
|
local argClearImages = utils.toboolean(request:get("clear_images"))
|
|
|
|
if argClearGcode == nil then argClearGcode = true end
|
|
|
|
if argClearImages == nil then argClearImages = true end
|
|
|
|
|
2013-10-23 16:12:19 +02:00
|
|
|
-- block access to prevent potential issues with printing (e.g. out of memory)
|
|
|
|
if not operationsAccessOrFail(request, response) then return end
|
|
|
|
|
2013-10-18 21:46:41 +02:00
|
|
|
updater.setLogger(log)
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.DOWNLOADING,"")
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-21 12:36:54 +02:00
|
|
|
local vEnt, rv, msg
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
if not argVersion then
|
|
|
|
local success,status,msg = updater.getStatus()
|
|
|
|
if not success then
|
|
|
|
updater.setState(updater.STATE.DOWNLOAD_FAILED, msg)
|
|
|
|
response:setFail(msg)
|
|
|
|
return
|
2013-10-23 16:12:19 +02:00
|
|
|
else
|
2013-10-22 03:30:23 +02:00
|
|
|
argVersion = updater.formatVersion(status.newestVersion)
|
|
|
|
end
|
|
|
|
end
|
2013-10-23 16:12:19 +02:00
|
|
|
|
2013-10-18 21:46:41 +02:00
|
|
|
if argClearImages then
|
|
|
|
rv,msg = updater.clear()
|
|
|
|
if not rv then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.DOWNLOAD_FAILED, msg)
|
2013-10-18 21:46:41 +02:00
|
|
|
response:setFail(msg)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if argClearGcode then
|
2013-10-21 13:42:58 +02:00
|
|
|
response:addData('gcode_clear',true)
|
|
|
|
local rv,msg = printer:clearGcode()
|
2013-10-18 21:46:41 +02:00
|
|
|
|
2013-10-21 13:42:58 +02:00
|
|
|
if not rv then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.DOWNLOAD_FAILED, msg)
|
2013-10-21 13:42:58 +02:00
|
|
|
response:setError(msg)
|
|
|
|
return
|
|
|
|
end
|
2013-10-18 21:46:41 +02:00
|
|
|
end
|
|
|
|
|
2013-10-21 12:36:54 +02:00
|
|
|
vEnt,msg = updater.findVersion(argVersion)
|
|
|
|
if vEnt == nil then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.DOWNLOAD_FAILED, "error searching version index (" .. msg .. ")")
|
2013-10-21 12:36:54 +02:00
|
|
|
response:setFail("error searching version index (" .. msg .. ")")
|
|
|
|
return
|
2013-10-21 13:42:58 +02:00
|
|
|
elseif vEnt == false then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.DOWNLOAD_FAILED, "no such version")
|
2013-10-21 12:36:54 +02:00
|
|
|
response:setFail("no such version")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
rv,msg = updater.downloadImageFile(vEnt)
|
2013-10-18 21:46:41 +02:00
|
|
|
if not rv then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.DOWNLOAD_FAILED, msg)
|
2013-10-18 21:46:41 +02:00
|
|
|
response:setFail(msg)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
response:setSuccess()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- if successful, this call won't return since the device will flash its memory and reboot
|
|
|
|
function M.install_POST(request, response)
|
2013-10-21 12:36:54 +02:00
|
|
|
local argVersion = request:get("version")
|
2013-10-22 03:30:23 +02:00
|
|
|
log:info("API:update/install")
|
2013-10-23 16:12:19 +02:00
|
|
|
|
|
|
|
if not operationsAccessOrFail(request, response) then return end
|
|
|
|
|
|
|
|
updater.setLogger(log)
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.INSTALLING,"")
|
2013-10-30 21:20:42 +01:00
|
|
|
|
|
|
|
local ssid = wifi.getSubstitutedSsid(settings.get('network.ap.ssid'))
|
|
|
|
local rv,msg = netconf.enableAccessPoint(ssid)
|
|
|
|
|
2013-10-21 12:36:54 +02:00
|
|
|
if not argVersion then
|
2013-10-22 03:30:23 +02:00
|
|
|
local success,status,msg = updater.getStatus()
|
|
|
|
if not success then
|
|
|
|
updater.setState(updater.STATE.INSTALL_FAILED, msg)
|
|
|
|
response:setFail(msg)
|
|
|
|
return
|
2013-10-23 16:12:19 +02:00
|
|
|
else
|
2013-10-22 03:30:23 +02:00
|
|
|
argVersion = updater.formatVersion(status.newestVersion)
|
|
|
|
end
|
2013-10-21 12:36:54 +02:00
|
|
|
end
|
|
|
|
|
2013-10-21 13:42:58 +02:00
|
|
|
vEnt,msg = updater.findVersion(argVersion)
|
|
|
|
if vEnt == nil then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.INSTALL_FAILED, "error searching version index (" .. msg .. ")")
|
2013-10-21 13:42:58 +02:00
|
|
|
response:setFail("error searching version index (" .. msg .. ")")
|
|
|
|
return
|
|
|
|
elseif vEnt == false then
|
2013-10-22 03:30:23 +02:00
|
|
|
updater.setState(updater.STATE.INSTALL_FAILED, "no such version")
|
2013-10-21 13:42:58 +02:00
|
|
|
response:setFail("no such version")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local rv,msg = updater.flashImageVersion(vEnt)
|
2013-10-21 12:36:54 +02:00
|
|
|
|
2013-10-22 03:30:23 +02:00
|
|
|
if not rv then
|
|
|
|
updater.setState(updater.STATE.INSTALL_FAILED, "installation failed (" .. msg .. ")")
|
|
|
|
response:setFail("installation failed (" .. msg .. ")")
|
2013-10-23 16:12:19 +02:00
|
|
|
else
|
2013-10-22 03:30:23 +02:00
|
|
|
response:setSuccess()
|
2013-10-21 12:36:54 +02:00
|
|
|
end
|
2013-10-18 21:46:41 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.clear_POST(request, response)
|
|
|
|
updater.setLogger(log)
|
|
|
|
local rv,msg = updater.clear()
|
|
|
|
|
|
|
|
if rv then response:setSuccess()
|
|
|
|
else response:setFail(msg)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|