This repository was archived by the owner on Aug 6, 2021. It is now read-only.
forked from msva/lua-htmlparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.lua
132 lines (120 loc) · 3.34 KB
/
browser.lua
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
local htmlparser = require("htmlparser")
local shell = require("shell")
local internet = require("internet")
local args, options = shell.parse(...)
options.h = options.h or options.help
if #args <1 or options.h then
io.write([[Usage: browser -u https://example.com
-h, --help show this help
]])
return not not options.h
end
local url = args[1]
print("Opening Url: "..url)
local com = require('component')
local bit32 = require('bit32')
local gpu = com.gpu
local color = {
back = 0x000000,
fore = 0xFFFFFF,
info = 0x335555,
error = 0xFF3333,
help = 0x336600,
gold = 0xFFCC33,
gray = 0x080808,
lightgray = 0x333333,
lightlightgray = 0x666666
}
local _f = gpu.getForeground()
local function foreground(color)
if color ~= _f then gpu.setForeground(color); _f = color end
end
local _b = gpu.getBackground()
local function background(color)
if color ~= _b then gpu.setBackground(color); _b = color end
end
local function drawRect(x, y, fill)
foreground(color.fore)
background(color.gray)
gpu.set(x, y, "╓──────╖")
gpu.set(x, y+1, "║ ║")
gpu.set(x, y+2, "╙──────╜")
foreground(fill)
gpu.set(x+2, y+1, "████")
end
local handle = internet.request(url)
local result = ""
for chunk in handle do
result = result..chunk
end
local root = htmlparser.parse(result);
local elements = root:select('body')
-- Print the body of the HTTP response
-- https://productive-invited-tachometer.glitch.me/
-- Grab the metatable for the handle. This contains the
-- internal HTTPRequest object.
local mt = getmetatable(handle)
function trim(s)
return (string.gsub(s, "^%s*(.-)%s*$", "%1"))
end
function split_str (inputstr, sep)
if sep == nil then
sep = "%s"
end
local t={}
for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
table.insert(t, str)
end
return t
end
local function parseCss(styleStr)
local rules = split_str(styleStr,";")
local rulesTable = {}
for _, v in pairs(rules) do
local props = split_str(v,":")
rulesTable[trim(props[1])] = trim(props[2])
end
return rulesTable
end
local function renderElement(child, parent)
print("TagName: ", child.name)
for _,a in pairs(child.attributes) do
if _ == "style" then
print("Styles: ")
local cssRules = parseCss(a)
for k, v in pairs(cssRules) do
print(" ",k," ",v)
end
else
print("Attribute: ", _, a)
end
end
-- print("", child.name)
-- print(string.sub(child.root._text, child._openend + 1, child._closestart - 1))
end
local function walk(element)
-- print("", element.name)
local children = element.nodes
for _,child in ipairs(children) do
renderElement(child, element)
walk(child)
end
end
for _,e in ipairs(elements) do
walk(e)
end
-- for _,e in ipairs(elements) do
-- print("", e.name)
-- local subs = e.nodes
-- for _,sub in pairs(subs) do
-- print("", sub.name)
-- print(string.sub(sub.root._text, sub._openend + 1, sub._closestart - 1))
-- end
-- end
-- The response method grabs the information for
-- the HTTP response code, the response message, and the
-- response headers.
local code, message, headers = mt.__index.response()
print("Code: "..tostring(code))
print("Message: "..tostring(message))
-- print(inspect(headers))