Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ tape program, provides basic tape modification and access tools
- Authors: Bizzycola and Vexatos
- ]]
- local component = require("component")
- local fs = require("filesystem")
- local shell = require("shell")
- local term = require("term")
- local args, options = shell.parse(...)
- if not component.isAvailable("tape_drive") then
- io.stderr:write("This program requires a tape drive to run.")
- return
- end
- local tape = component.tape_drive
- if not tape.isReady() then
- io.stderr:write("The tape drive does not contain a tape.")
- return
- end
- local function writeTape(path)
- tape.stop()
- tape.seek(-tape.getSize())
- tape.stop() --Just making sure
- local file, msg, _, y, success
- local block = 1024 --How much to read at a time
- local bytery = 0 --For the progress indicator
- local filesize = tape.getSize()
- if string.match(path, "https?://.+") then
- if not component.isAvailable("internet") then
- io.stderr:write("This program requires an internet card to run.")
- return false
- end
- local internet = require("internet")
- local header = ""
- local function setupConnection(addr)
- if string.match(addr, "https://") then
- io.stderr:write("unsupported URL (HTTPS is not supported, use HTTP)")
- return false
- end
- local url = string.gsub(addr, "http://", "", 1)
- local domain = string.gsub(url, "/.*", "", 1)
- local path = string.gsub(url, ".-/", "/", 1)
- local header = ""
- file = internet.open(domain, 80)
- file:setTimeout(10)
- file:write("GET " .. path .. " HTTP/1.1\r\nHost: " .. domain .. "\r\nConnection: close\r\n\r\n")
- repeat
- local hBlock = file:read(block)
- if not hBlock or #hBlock <= 0 then
- io.stderr:write("no valid HTTP response - malformed header")
- return false
- end
- header = header .. hBlock
- until string.find(header, "\r\n\r\n")
- if string.match(header, "HTTP/1.1 ([^\r\n]-)\r\n") then
- local status = string.match(header, "HTTP/1.1 ([^\r\n]-)\r?\n")
- local location = string.match(header, "[Ll]ocation: (.-)\r\n")
- if string.match(status, "3%d%d") then
- if location ~= addr then
- file:close()
- print("Redirecting to " .. location)
- return setupConnection(location)
- end
- end
- if string.match(status, "2%d%d") then
- print("Status: " .. status)
- print("Domain: " .. domain)
- print("Path: " .. path)
- return true, file, header
- end
- io.stderr:write(status)
- return false
- end
- io.stderr:write("no valid HTTP response - no response")
- return false
- end
- success, file, header = setupConnection(path)
- if not success then
- if file then
- file:close()
- end
- return
- end
- print("Writing...")
- _, y = term.getCursor()
- if string.match(header, "Content%-Length: (%d-)\r\n") then
- filesize = tonumber(string.match(header, "Content%-Length: (%d-)\r\n"))
- end
- local bytes = string.gsub(header, ".-\r\n\r\n", "", 1)
- if bytes and #bytes > 0 then
- term.setCursor(1, y)
- bytery = bytery + #bytes
- term.write("Read " .. tostring(bytery) .. " bytes...")
- tape.write(bytes)
- end
- end
- if filesize > tape.getSize() then
- io.stderr:write("Error: File is too large for tape, shortening file")
- filesize = tape.getSize()
- end
- while true do
- local bytes = file:read(math.min(block, filesize - bytery))
- if (not bytes) or bytes == "" then break end
- term.setCursor(1, y)
- bytery = bytery + #bytes
- term.write("Read " .. tostring(bytery) .. " of " .. tostring(filesize) .. " bytes...")
- tape.write(bytes)
- end
- file:close()
- tape.stop()
- tape.seek(-tape.getSize())
- tape.stop() --Just making sure
- print("\nDone.")
- end
- if args[1] == "write" then
- writeTape(args[2])
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement