-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathnet.lua
460 lines (401 loc) · 15 KB
/
net.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
-- @author cedlemo
local setmetatable = setmetatable
local ipairs = ipairs
local math = math
local table = table
local type = type
local string = string
local io = require("io")
local os = require("os")
local awful = require("awful")
local naughty = require("naughty")
local tonumber = tonumber
local color = require("gears.color")
local base = require("wibox.widget.base")
local helpers = require("blingbling.helpers")
local superproperties = require('blingbling.superproperties')
local lgi = require("lgi")
local pangocairo = lgi.PangoCairo
local pango = lgi.Pango
---Net widget displays two arrows as graph for download/upload activities
--@module blingbling.widget
---Set the net interface used to get information, default is eth0.
--@usage mynet:set_interface(string)
--@name set_interface
--@class function
--@param interface a string
---Define the top and bottom margin for the graph area.
--@usage mynet:set_v_margin(integer)
--@name set_v_margin
--@class function
--@param margin an integer for top and bottom margin
---Define the left and right margin for the graph area.
--@usage mynet:set_h_margin()
--@name set_h_margin
--@class function
--@param margin an integer for left and right margin
---Fill all the widget (width * height) with this color (default is none ).
--@usage mynet:set_background_color(string) -->"#rrggbbaa"
--@name set_background_color
--@class function
--@param color a string "#rrggbbaa" or "#rrggbb"
---Fill the graph area background with this color (default is none).
--@usage mynet:set_background_graph_color(string) -->"#rrggbbaa"
--@name set_background_graph_color
--@class function
--@param color a string "#rrggbbaa" or "#rrggbb"
---Define the graph/arrows color.
--@usage mynet:set_graph_color(string) -->"#rrggbbaa"
--@name set_graph_color
--@class function
--@param color a string "#rrggbbaa" or "#rrggbb"
---Set an outline on the arrows with this color.
--@usage mynet:set_graph_line_color(string) -->"#rrggbbaa"
--@name set_graph_line_color
--@class function
--@param color a string "#rrggbbaa" or "#rrggbb"
---Display or not upload/download informations.
--@usage mynet:set_show_text(boolean) --> true or false
--@name set_show_text
--@class function
--@param boolean true or false default is false
---Define the text color.
--@usage mynet:set_text_color(string) -->"#rrggbbaa"
--@name set_text_color
--@class function
--@param color a string "#rrggbbaa" or "#rrggbb"
---Set a color behind the text.
--@usage mynet:set_text_background_color(string) -->"#rrggbbaa"
--@name set_text_background_color
--@class function
--@param color a string "#rrggbbaa" or "#rrggbb"
---Set the size of the font to use.
--@usage mynet:set_font_size(integer)
--@name set_font_size
--@class function
--@param size the font size
---Set the font to use.
--@usage mynet:set_font(string)
--@name set_font
--@class function
--@param font a string that contains the font name family and weight
---Set the URL used for getting the external IP, default is http://ipecho.net/plain
--@usage mynet:set_url_for_ext_ip(string)
--@name set_url_for_ext_ip
--@class function
--@param URL outputting your external IP in plain text
local net = { mt = {} }
local data = setmetatable({}, { __mode = "k" })
local properties = { "interface", "width", "height", "v_margin", "h_margin",
"background_color", "graph_background_color","graph_color",
"graph_line_color","show_text", "text_color",
"text_background_color" , "font_size","font","url_for_ext_ip" }
local function format_output_value(value)
local unit = { "b", "kb","mb","gb"}
local unit_range = { 1, 1024, 1024^2, 1024^3 }
local output_value = 0
local output_unit = "b"
local text = ""
if value ~= nil then
for i,v in ipairs(unit_range) do
if value >= v then
output_value = value / v
output_unit = unit[i]
end
end
end
if output_value >= 0 and output_value < 10 then
text = string.format("%.2f", output_value).. output_unit
end
if output_value >= 10 and output_value < 100 then
text = string.format("%.1f", output_value).. output_unit
end
if output_value >= 100 then
text = string.format("%d", math.ceil(output_value)).. output_unit
end
return output_value, text
end
local function draw_a_red_cross(cr, x , y, width, height)
cr:move_to(x, y)
cr:line_to(width - x, height - y)
cr:move_to(width - x, y)
cr:line_to(x, height - y)
cr:set_source_rgb(1,0,0)
cr:set_line_width(2)
cr:stroke()
end
function net.draw(n_graph, wibox, cr, width, height)
local props = helpers.load_properties(properties, data, n_graph, superproperties)
local interface= data[n_graph].interface or "eth0"
local font = nil
if props.show_text then
if type(props.font) == "string" then
font = props.font .. " " .. props.font_size
elseif type(props.font) == "table" then
font = (props.font.family or "Sans") .. " " .. (props.font.slang or "normal") .. " " .. (props.font.weight or "normal") .. " " .. props.font_size
end
--search the good width to display all text and graph and modify the widget width if necessary
--Adapt widget width with max lenght text
--local text_reference = "1.00mb"
local layout = pangocairo.create_layout(cr)
local font_desc = pango.FontDescription.from_string(font)
layout:set_font_description(font_desc)
layout.text = "1.00mb"
local _, logical = layout:get_pixel_extents()
local text_width = logical.width
local arrow_width = 6
local arrows_separator = 2
local total_width = (2* text_width) +(2*arrow_width) + arrows_separator + (2*props.h_margin)
data[n_graph].width = total_width
else
local arrow_width = 8
local arrows_separator = 2
data[n_graph].width = (arrow_width * 2) + arrows_separator + (2* props.h_margin)
end
--TODO manage widget background
----Generate Background (background widget)
if props.background_color then
local r,g,b,a = helpers.hexadecimal_to_rgba_percent(props.background_color)
cr:set_source_rgba(r,g,b,a)
cr:paint()
end
up_value, up_text = format_output_value(data[n_graph][interface.."_up"])
down_value, down_text = format_output_value(data[n_graph][interface.."_down"])
--Drawn up arrow
helpers.draw_up_down_arrows(
cr,
math.floor(data[n_graph].width/2 -1),
height - props.v_margin,
props.v_margin,
up_value,
props.graph_background_color,
props.graph_color,
props.graph_line_color ,
true)
--Drawn down arrow
helpers.draw_up_down_arrows(
cr,
math.floor(data[n_graph].width/2)+1,
props.v_margin,
height - props.v_margin,
down_value,
props.graph_background_color,
props.graph_color,
props.graph_line_color ,
false)
if data[n_graph][interface.."_state"] ~= "up" or data[n_graph][interface.."_carrier"] ~= "1" then
draw_a_red_cross(cr, props.h_margin, props.v_margin, data[n_graph].width, height)
end
if props.show_text == true then
--Draw Text and it's background
helpers.draw_layout_and_background(cr,
down_text,
data[n_graph].width - props.h_margin,
props.v_margin ,
font,
props.text_background_color,
props.text_color,
"end",
"start")
helpers.draw_layout_and_background(cr,
up_text,
props.h_margin,
height - props.v_margin ,
font,
props.text_background_color,
props.text_color,
"start",
"end")
end
end
function net.fit(n_graph, width, height)
return data[n_graph].width, data[n_graph].height
end
local function get_net_infos(n_graph)
-- Variable definitions
for line in io.lines("/proc/net/dev") do
local device = string.match(line, "^[%s]?[%s]?[%s]?[%s]?([%w]+):")
if device ~= nil then
-- Received bytes, first value after the name
local recv = tonumber(string.match(line, ":[%s]*([%d]+)"))
-- Transmited bytes, 7 fields from end of the line
local send = tonumber(string.match(line,
"([%d]+)%s+%d+%s+%d+%s+%d+%s+%d+%s+%d+%s+%d+%s+%d$"))
--check if interface is up or down
local state
for line in io.lines("/sys/class/net/"..string.gsub(device,"%s","").."/operstate") do
state = line
end
data[n_graph][device.."_state"]=state
--check if wire is connected
local carrier
if data[n_graph][device.."_state"] == "up" then
for line in io.lines("/sys/class/net/"..string.gsub(device,"%s","").."/carrier") do
carrier = line
end
data[n_graph][device.."_carrier"]=carrier
else
data[n_graph][device.."_carrier"]="0"
end
local now =os.time()
if data[n_graph][device.."_down"] == nil or data[n_graph][device.."_up"] == nil then
data[n_graph][device.."_down"] = 0
data[n_graph][device.."_up"] = 0
else
local interval = now - data[n_graph][device.."_time"]
if interval <= 0 then interval =1 end
local down = (recv -data[n_graph][device.."_last_recv"]) / interval
local up = (send - data[n_graph][device.."_last_send"]) / interval
data[n_graph][device.."_down" ] = down
data[n_graph][device.."_up"] = up
end
data[n_graph][device.."_time"] = now
data[n_graph][device.."_last_recv"] = recv
data[n_graph][device.."_last_send"] = send
end
end
end
local function update_net(n_graph)
if not n_graph then return end
data[n_graph].timer_update = timer({timeout = 2})
data[n_graph].timer_update:connect_signal("timeout", function()
get_net_infos(n_graph);
n_graph:emit_signal("widget::updated")
end)
data[n_graph].timer_update:start()
return n_graph
end
local function hide_ippopup_infos(n_graph)
if data[n_graph].ippopup ~= nil then
naughty.destroy(data[n_graph].ippopup)
data[n_graph].ippopup = nil
end
end
local function show_ippopup_infos(n_graph)
local ip_addr
local gateway
local all_infos=awful.util.pread("ip route show")
local interface = data[n_graph].interface
if data[n_graph][interface.."_state"] == "up" then
if data[n_graph][interface.."_carrier"] == "1" then --get local ip configuration
ip_addr=string.match(string.match(all_infos, "%sdev%s".. interface .. "%s+proto%skernel.*" .."%ssrc%s[%d]+%.[d%]+%.[%d]+%.[%d]+"), "[%d]+%.[d%]+%.[%d]+%.[%d]+")
--get gateway
gateway= string.match(string.match(all_infos,"default%svia%s[%d]+%.[d%]+%.[%d]+%.[%d]+"), "[%d]+%.[d%]+%.[%d]+%.[%d]+")
--get external ip configuration
local url_for_ext_ip = ""
if data[n_graph].url_for_ext_ip == nil then
data[n_graph].url_for_ext_ip = "http://ipecho.net/plain"
end
url_for_ext_ip = data[n_graph].url_for_ext_ip
local ext_ip = awful.util.pread("curl --silent --connect-timeout 3 -S " .. url_for_ext_ip .. " 2>&1")
--if time out then no external ip
if string.match(ext_ip,"timed%sout%!") then
data[n_graph].ext_ip = "n/a"
else
data[n_graph].ext_ip = ext_ip
end
--get tor external configuration
local tor_ext_ip
--we check that the tor address have not been checked or that the elapsed time from the last request is not < 300 sec. whereas whatsmyip block the request
if (data[n_graph].tor_ext_ip_timer == nil or data[n_graph].tor_ext_ip_timer + 300 < os.time()) and data[n_graph].ext_ip ~= "n/a" then
if awful.util.pread("pgrep -x tor") ~= "" then
tor_ext_ip = awful.util.pread("curl --silent -S -x socks4a://localhost:9050 http://ipecho.net/plain 2>&1")
else
tor_ext_ip = "No tor"
end
data[n_graph].tor_ext_ip=tor_ext_ip
data[n_graph].tor_ext_ip_timer=os.time()
--if local ip is ok but not the external ip, then we can't get external tor ip
elseif data[n_graph].ext_ip == "n/a" then
tor_ext_ip="n/a"
--we get the last value of tor_ext_ip of the last recent check.
else
tor_ext_ip= data[n_graph].tor_ext_ip
end
local separator ="\n|\n"
text="Local Ip:\t"..ip_addr..separator.."Gateway:\t".. gateway..separator .."External Ip:\t"..data[n_graph].ext_ip .. separator .. "Tor External Ip:\t" .. tor_ext_ip
else
text="Wire is not connected on " .. interface
end
else
text ="Interface : "..interface .. " is down."
end
data[n_graph].ippopup=naughty.notify({
title = interface .. " informations:",
text = text,
timeout= 0,
hover_timeout = 0.5
})
end
---Add a popup on the widget that displays informations on the current network connection.
--@usage mynet:set_ippopup()
function net:set_ippopup()
self:connect_signal("mouse::enter", function()
show_ippopup_infos(self)
end)
self:connect_signal("mouse::leave", function()
hide_ippopup_infos(self)
end)
end
--- Set the n_graph height.
-- @param height The height to set.
function net:set_height( height)
if height >= 5 then
data[self].height = height
self:emit_signal("widget::updated")
end
return self
end
--- Set the graph width.
-- @param width The width to set.
function net:set_width( width)
if width >= 5 then
data[self].width = width
self:emit_signal("widget::updated")
end
return self
end
-- Build properties function
for _, prop in ipairs(properties) do
if not net["set_" .. prop] then
net["set_" .. prop] = function(n_graph, value)
data[n_graph][prop] = value
n_graph:emit_signal("widget::updated")
return n_graph
end
end
end
--- Create a n_graph widget.
--@usage mynet = blingbling.net({width = 100, height = 20, interface = "eth0"})
-- @param args Standard widget() arguments. You should add width and height and interface
-- @return A graph widget.
function net.new(args)
local args = args or {}
args.width = args.width or 100
args.height = args.height or 20
if args.width < 5 or args.height < 5 then return end
local n_graph = base.make_widget()
data[n_graph] = {}
for _, v in ipairs(properties) do
data[n_graph][v] = args[v]
end
if args.interface then
data[n_graph].interface = args.interface
end
data[n_graph].nets = {}
--or
data[n_graph].value = 0
data[n_graph].max_value = 1
n_graph.draw = net.draw
n_graph.fit = net.fit
n_graph.set_ippopup = net.set_ippopup
for _, prop in ipairs(properties) do
n_graph["set_" .. prop] = net["set_" .. prop]
end
update_net(n_graph)
return n_graph
end
function net.mt:__call(...)
return net.new(...)
end
return setmetatable(net, net.mt)