Advertisement
Guest User

mdbrowse.lua

a guest
Jul 14th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.65 KB | None | 0 0
  1. local net = require "net"
  2. local md = require "mdparse"
  3. local event = require "event"
  4. local fs = require "filesystem"
  5. local computer = require "computer"
  6. local home = "file:///usr/doc/mdbrowse.md"
  7. local url = home
  8. local cline = 1
  9. local lines, links, listeners, history = {}, {}, {}, {}
  10. local term = require "term"
  11. local gunkw,gunkh = term.getViewport()
  12. local width, height = gunkw, gunkh-2
  13. local run = true
  14.  
  15. local function pushhistory(url)
  16.  history[#history+1] = url
  17. end
  18. local function pophistory()
  19.  local rurl = history[#history] or home
  20.  history[#history] = nil
  21.  return rurl
  22. end
  23.  
  24. local function parseurl(url)
  25.  local proto,addr = url:match("(.-)://(.+)")
  26.  addr = addr or url
  27.  local hp, path = addr:match("(.-)(/.*)")
  28.  hp, path = hp or addr, path or "/"
  29.  local host, port = hp:match("(.+):(.+)")
  30.  host = host or hp
  31.  path = fs.canonical(path)
  32.  return proto, host, port, path
  33. end
  34.  
  35. function addButton(x,y,l,a)
  36.  local len = l:len() + 2
  37.  local function hf(_,_,tx,ty)
  38.   if y == ty and tx >= x and tx <= x+len then
  39.    io.write("\a")
  40.    computer.pushSignal("mdbrowsebutton",a)
  41.   end
  42.  end
  43.  event.listen("touch",hf)
  44.  listeners[#listeners+1] = hf
  45. end
  46. function dropButtons()
  47.  for k,v in pairs(listeners) do
  48.   event.ignore("touch",v)
  49.  end
  50. end
  51.  
  52. function loadpage()
  53.  local protocol, host, port, path = parseurl(url)
  54.  protocol = protocol or "file"
  55.  if protocol == "file" then
  56.   local f = io.open(host..path,"rb")
  57.   if not f then
  58.    url = pophistory()
  59.    return false, "not found"
  60.   end
  61.   lines, links = md.reflow(f:read("*a"),width)
  62.   f:close()
  63.   return true
  64.  elseif protocol == "fget" then
  65.   port = tonumber(port) or 70
  66.   local socket = net.open(host,port)
  67.   if socket then
  68.    io.write("\27[u\27[2KConnection established.")
  69.    local buf = ""
  70.    socket:write("t"..path.."\n")
  71.    local c = socket:read(1)
  72.    repeat
  73.     c = socket:read(1)
  74.     os.sleep(0.5)
  75.    until c ~= ""
  76.    if c == "n" then
  77.     buf = path..": Not found.\n"
  78.    elseif c == "f" then
  79.     buf = "Failure: \n"
  80.    elseif c == "d" then
  81.     buf = "# Directory listing for "..path.."\n"
  82.    end
  83.    repeat
  84.     l = socket:read(1024)
  85.     buf = buf .. l
  86.     io.write("\27[u\27[2KRead "..tonumber(buf:len()).." bytes")
  87.     os.sleep(0.5)
  88.    until socket.state == "closed" and l == ""
  89.    if c == "d" then
  90.     local first, nbuf = false, ""
  91.     for line in buf:gmatch("[^\n]+") do
  92.      if first then
  93.       line = "- ["..line.."]("..line..")"
  94.      end
  95.      nbuf = nbuf .. line .. "\n"
  96.      first = true
  97.     end
  98.     buf = nbuf
  99.    end
  100.    lines, links = md.reflow(buf,width)
  101.    return true
  102.   else
  103.    url = pophistory()
  104.    return false, "unable to load"
  105.   end
  106.  end
  107. end
  108.  
  109. function drawpage()
  110.  dropButtons()
  111.  if cline < 1 then
  112.   cline = 1
  113.  elseif cline > #lines then
  114.   cline = #lines
  115.  end
  116.  io.write("\27[2J\27[H")
  117.  for i = cline, cline+height do
  118.   print((lines[i] or ""):sub(1,width))
  119.  end
  120.  for k,v in pairs(links) do
  121.   if v[1] >= cline and v[1] <= height+cline then
  122.    addButton(v[2],(v[1])-cline+1,v[3],v[4])
  123.   end
  124.  end
  125.  local lstring = tostring(cline).."-"..tostring(cline+height).."/"..tostring(#lines)
  126.  io.write("\27[s"..lstring.." "..url)
  127. end
  128.  
  129. function gourl(nurl)
  130.  pushhistory(url)
  131.  -- check for a protocol:// part
  132.  if nurl:match(".+://") then
  133.   url = nurl
  134.  -- check for a / -- root relative
  135.  elseif nurl:sub(1,1) == "/" then
  136.   url = (url:match(".+://.-/" or url:match(".+://.+/?").."/")) .. nurl
  137.  -- fail and assume relative
  138.  else
  139.   local host = (url:match(".+://.-/") or url:match(".+://.+/?").."/")
  140.   local path = url:sub(host:len()+1)
  141.   local tPath = fs.segments(path)
  142.   local ntPath = fs.segments(nurl)
  143.   if path:sub(path:len(),path:len()) ~= "/" then
  144.    tPath[#tPath] = nil
  145.   end
  146.   for k,v in ipairs(ntPath) do
  147.    tPath[#tPath+1] = v
  148.   end
  149.   url = host:sub(1,-2)
  150.   for k,v in ipairs(tPath) do
  151.    url = url .. "/" .. v
  152.   end
  153.   if nurl:sub(nurl:len(),nurl:len()) == "/" then
  154.    url = url .. "/"
  155.   end
  156.  end
  157. end
  158.  
  159. loadpage()
  160. drawpage()
  161. while run do
  162.  local tev = {event.pull()}
  163.  if tev[1] == "key_down" then
  164.   if tev[3] == 0 and tev[4] == 200 then -- up
  165.    cline = cline - 1
  166.    drawpage()
  167.   elseif tev[3] == 0 and tev[4] == 208 then -- down
  168.    cline = cline + 1
  169.    drawpage()
  170.   elseif tev[3] == 0 and tev[4] == 203 then -- left
  171.    url = pophistory()
  172.    cline = 1
  173.    loadpage()
  174.    drawpage()
  175.   elseif tev[3] == 0 and tev[4] == 209 then -- page down
  176.    cline = cline + height
  177.    drawpage()
  178.   elseif tev[3] == 0 and tev[4] == 201 then -- page up
  179.    cline = cline - height
  180.    drawpage()
  181.   elseif tev[3] == 113 and tev[4] == 16 then -- q
  182.    run = false
  183.   elseif tev[3] == 111 then -- o
  184.    io.write("\27[u\27[2K\27[sURL: ")
  185.    gourl(io.read())
  186.    cline = 1
  187.    loadpage()
  188.    drawpage()
  189.   end
  190.  elseif tev[1] == "mdbrowsebutton" then
  191.   gourl(tev[2])
  192.   cline = 1
  193.   loadpage()
  194.   drawpage()
  195.  end
  196. end
  197. dropButtons()
  198. io.write("\27[2J\27[H")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement