2021-01-12 23:11:00 +11:00
-- Copyright (C) 2018-2021 by KittenOS NEO contributors
--
-- Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-- THIS SOFTWARE.
2018-04-24 11:24:10 +10:00
local event = require ( " event " ) ( neo )
local neoux = require ( " neoux " ) ( event , neo )
local primaryINet = neo.requireAccess ( " c.internet " , " internet access " ) . list ( ) ( )
-- Enter URL dialog
local running = true
2018-04-26 04:01:32 +10:00
local sRunning = true
2018-04-24 11:24:10 +10:00
-- useful to perform a system update
local url = " http://20kdc.duckdns.org/neo/inst.lua "
2018-04-26 04:01:32 +10:00
local function doWorking ( )
2018-04-26 05:47:18 +10:00
return 50 , 1 , nil , neoux.tcwindow ( 50 , 1 , {
2018-04-26 04:01:32 +10:00
neoux.tcrawview ( 1 , 1 , { " Downloading now... " } ) ,
} , function ( w )
sRunning = false
end , 0xFFFFFF , 0 )
end
local function doMainWin ( )
2018-04-26 05:47:18 +10:00
return 50 , 3 , nil , neoux.tcwindow ( 50 , 3 , {
2018-04-26 04:01:32 +10:00
neoux.tcrawview ( 1 , 1 , { " URL to download? " } ) ,
2018-04-26 05:47:18 +10:00
neoux.tcfield ( 1 , 2 , 50 , function ( t )
2018-04-26 04:01:32 +10:00
url = t or url
return url
end ) ,
2018-04-26 05:47:18 +10:00
neoux.tcbutton ( 41 , 3 , " Download " , function ( w )
2018-04-26 04:01:32 +10:00
sRunning = true
w.reset ( doWorking ( ) )
local nurl = url
local fd = neoux.fileDialog ( true )
2018-04-26 08:58:31 +10:00
if not fd then
w.reset ( doMainWin ( ) )
return
end
2018-04-26 04:01:32 +10:00
-- download!
local req , err = primaryINet.request ( nurl )
if not req then
2018-04-26 04:12:45 +10:00
fd.close ( )
2018-04-26 04:01:32 +10:00
neoux.startDialog ( " failed request: \n " .. tostring ( err ) )
w.reset ( doMainWin ( ) )
return
end
-- OpenComputers#535
req.finishConnect ( )
while sRunning do
local n , n2 = req.read ( neo.readBufSize )
if not n then
if n2 then
neoux.startDialog ( " failed download: \n " .. tostring ( n2 ) )
2018-04-26 04:12:45 +10:00
break
2018-04-26 04:01:32 +10:00
else
break
end
else
if n == " " then
event.sleepTo ( os.uptime ( ) + 0.05 )
else
local o , r = fd.write ( n )
if not o then
neoux.startDialog ( " failed write: \n " .. tostring ( r ) )
2018-04-26 04:12:45 +10:00
break
2018-04-26 04:01:32 +10:00
end
2018-04-24 11:24:10 +10:00
end
end
end
2018-04-26 04:01:32 +10:00
pcall ( req.close )
pcall ( fd.close )
w.reset ( doMainWin ( ) )
end )
} , function ( w )
w.close ( )
running = false
end , 0xFFFFFF , 0 )
end
2018-04-26 04:12:45 +10:00
local w = neoux.create ( doMainWin ( ) )
2018-04-24 11:24:10 +10:00
while running do
event.pull ( )
end