Big rewrite part 1

This commit is contained in:
Rene Kievits
2023-04-20 01:04:06 +02:00
parent 61930bf561
commit 3a85753a74
78 changed files with 3364 additions and 4090 deletions

View File

@@ -1,11 +1,9 @@
local gfilesystem = require("gears.filesystem")
local gobject = require("gears.object")
local gtable = require("gears.table")
local naughty = require("naughty")
local gfilesystem = require('gears.filesystem')
local gobject = require('gears.object')
local gtable = require('gears.table')
local naughty = require('naughty')
local color = require("src.theme.colors")
local json = require("src.lib.json-lua.json-lua")
local json = require('src.lib.json-lua.json-lua')
local ical = { mt = {} }
ical.VCALENDAR = {}
@@ -75,25 +73,25 @@ ical._private.parser = {}
function ical._private.add_to_cache(file, vcal)
-- Copy file to src/config/files/calendar/
local path = gfilesystem.get_configuration_dir() .. "src/config/"
local file_name = file:match(".*/(.*)")
local path = gfilesystem.get_configuration_dir() .. 'src/config/'
local file_name = file:match('.*/(.*)')
if not
os.execute("cp " ..
file .. " " .. gfilesystem.get_configuration_dir() .. "src/config/files/calendar/" .. file_name) then
naughty.notification({
app_name = "Systemnotification",
title = "Error",
text = "Could not copy file to config/files/calendar/",
os.execute('cp ' ..
file .. ' ' .. gfilesystem.get_configuration_dir() .. 'src/config/files/calendar/' .. file_name) then
naughty.notification {
app_name = 'Systemnotification',
title = 'Error',
text = 'Could not copy file to config/files/calendar/',
timeout = 0,
urgency = "critical",
})
urgency = 'critical',
}
return
end
local handler = io.open(path .. "calendar.json", "r")
local handler = io.open(path .. 'calendar.json', 'r')
if not handler then return end
local json_data = json:decode(handler:read("a"))
local json_data = json:decode(handler:read('a'))
handler:close()
if not (type(json_data) == "table") then return end
if not (type(json_data) == 'table') then return end
table.insert(json_data, {
file = file_name,
VCALENDAR = vcal,
@@ -101,19 +99,19 @@ function ical._private.add_to_cache(file, vcal)
json_data = json:encode(json_data)
handler = io.open(path .. "calendar.json", "w")
handler = io.open(path .. 'calendar.json', 'w')
if not handler then return end
handler:write(json_data)
handler:close()
end
function ical:add_calendar(file)
local handler = io.open(file, "r")
local handler = io.open(file, 'r')
if not handler then return end
-- Check if the line is a BEGIN:VCALENDAR
local v, k = handler:read("l"):match("([A-Z]+):([A-Z]+)")
local v, k = handler:read('l'):match('([A-Z]+):([A-Z]+)')
local vcal = {}
if v:match("BEGIN") and k:match("VCALENDAR") then
if v:match('BEGIN') and k:match('VCALENDAR') then
vcal = self._private.parser:VCALENDAR(handler)
table.insert(self.VCALENDAR, vcal)
self._private.add_to_cache(file, vcal)
@@ -124,12 +122,12 @@ function ical.new(args)
args = args or {}
local ret = gobject { enable_properties = true, enable_auto_signals = true }
gtable.crush(ret, ical, true)
local path = gfilesystem.get_configuration_dir() .. "src/config/calendar.json"
local handler = io.open(path, "r")
local path = gfilesystem.get_configuration_dir() .. 'src/config/calendar.json'
local handler = io.open(path, 'r')
if not handler then return ret end
local json_data = json:decode(handler:read("a"))
local json_data = json:decode(handler:read('a'))
handler:close()
if not (type(json_data) == "table") then return end
if not (type(json_data) == 'table') then return end
--Load into the cache
for _, v in ipairs(json_data) do
ret._private.cache[v.file] = v.VCALENDAR
@@ -138,21 +136,7 @@ function ical.new(args)
local function get_random_color()
local colors = {
color["Blue200"],
color["Red200"],
color["Green200"],
color["Yellow200"],
color["Purple200"],
color["Orange200"],
color["Pink200"],
color["Cyan200"],
color["Lime200"],
color["Teal200"],
color["Indigo200"],
color["LightBlue200"],
color["BlueGrey200"],
color["DeepOrange200"],
color["DeepPurple200"],
'#FF0000',
}
return colors[math.random(1, 15)]
@@ -167,63 +151,63 @@ function ical._private.parser:VEVENT(handler)
local VEVENT = {}
while true do
local line = handler:read("l")
local line = handler:read('l')
if not line or line:match("END:VEVENT") then
if not line or line:match('END:VEVENT') then
break
end
local v, k = line:match("(.*):(.*)")
if v:match("CREATED") then
local v, k = line:match('(.*):(.*)')
if v:match('CREATED') then
VEVENT.CREATED = self.to_datetime(k)
elseif v:match("LAST-MODIFIED") then
elseif v:match('LAST-MODIFIED') then
VEVENT.LAST_MODIFIED = self.to_datetime(k)
elseif v:match("DTSTAMP") then
elseif v:match('DTSTAMP') then
VEVENT.DTSTAMP = self.to_datetime(k)
elseif v:match("UID") then
elseif v:match('UID') then
VEVENT.UID = k
elseif v:match("SUMMARY") then
elseif v:match('SUMMARY') then
VEVENT.SUMMARY = k
elseif v:match("STATUS") then
elseif v:match('STATUS') then
VEVENT.STATUS = k
elseif v:match("RRULE") then
elseif v:match('RRULE') then
VEVENT.RRULE = {
FREQ = k:match("FREQ=([A-Z]+)"),
UNTIL = self.to_datetime(k:match("UNTIL=([TZ0-9]+)")),
WKST = k:match("WKST=([A-Z]+)"),
COUNT = k:match("COUNT=([0-9]+)"),
INTERVAL = k:match("INTERVAL=([0-9]+)")
FREQ = k:match('FREQ=([A-Z]+)'),
UNTIL = self.to_datetime(k:match('UNTIL=([TZ0-9]+)')),
WKST = k:match('WKST=([A-Z]+)'),
COUNT = k:match('COUNT=([0-9]+)'),
INTERVAL = k:match('INTERVAL=([0-9]+)'),
}
elseif v:match("DTSTART") then
elseif v:match('DTSTART') then
VEVENT.DTSTART = {
DTSTART = self.to_datetime(k),
TZID = v:match("TZID=([a-zA-Z-\\/]+)"),
VALUE = v:match("VALUE=([A-Z]+)")
TZID = v:match('TZID=([a-zA-Z-\\/]+)'),
VALUE = v:match('VALUE=([A-Z]+)'),
}
elseif v:match("DTEND") then
elseif v:match('DTEND') then
VEVENT.DTEND = {
DTEND = self.to_datetime(k),
TZID = v:match("TZID=([a-zA-Z-\\/]+)"),
VALUE = v:match("VALUE=([A-Z]+)")
TZID = v:match('TZID=([a-zA-Z-\\/]+)'),
VALUE = v:match('VALUE=([A-Z]+)'),
}
elseif v:match("TRANSP") then
elseif v:match('TRANSP') then
VEVENT.TRANSP = k
elseif v:match("LOCATION") then
elseif v:match('LOCATION') then
VEVENT.LOCATION = k
elseif v:match("SEQUENCE") then
elseif v:match('SEQUENCE') then
VEVENT.SEQUENCE = k
elseif v:match("DESCRIPTION") then
elseif v:match('DESCRIPTION') then
VEVENT.DESCRIPTION = k
elseif v:match("URL") then
elseif v:match('URL') then
VEVENT.URL = {
URL = k,
VALUE = v:match("VALUE=([A-Z]+)")
VALUE = v:match('VALUE=([A-Z]+)'),
}
elseif v:match("BEGIN") then
if k:match("VALARM") then
elseif v:match('BEGIN') then
if k:match('VALARM') then
VEVENT.VALARM = self:VALARM(handler)
end
elseif v:match("UID") then
elseif v:match('UID') then
VEVENT.UID = k
end
end
@@ -235,8 +219,8 @@ end
function ical._private.parser.alarm_to_time(alarm)
if not alarm then return end
--Parse alarm into a time depending on its value. The value will be -PT15M where - mean before and with no leading - it means after. PT can be ignored and 15 is the time M then the unit where M is minute, H is out etc
local time = alarm:match("([-]?[0-9]+)[A-Z]")
local unit = alarm:match("[-]?[A-Z][A-Z][0-9]+([A-Z]*)")
local time = alarm:match('([-]?[0-9]+)[A-Z]')
local unit = alarm:match('[-]?[A-Z][A-Z][0-9]+([A-Z]*)')
return time .. unit
end
@@ -245,21 +229,21 @@ function ical._private.parser:VALARM(handler)
local VALARM = {}
while true do
local line = handler:read("l")
local line = handler:read('l')
if not line or line:match("END:VALARM") then
if not line or line:match('END:VALARM') then
break
end
local v, k = line:match("(.*):(.*)")
if v:match("ACTION") then
local v, k = line:match('(.*):(.*)')
if v:match('ACTION') then
VALARM.ACTION = k
elseif v:match("TRIGGER;VALUE=DURATION") then
elseif v:match('TRIGGER;VALUE=DURATION') then
VALARM.TRIGGER = {
VALUE = v:match("VALUE=(.*):"),
TRIGGER = self._private.parser.alarm_to_time(k)
VALUE = v:match('VALUE=(.*):'),
TRIGGER = self._private.parser.alarm_to_time(k),
}
elseif v:match("DESCRIPTION") then
elseif v:match('DESCRIPTION') then
VALARM.DESCRIPTION = k
end
end
@@ -273,22 +257,22 @@ function ical._private.parser:VCALENDAR(handler)
VCALENDAR.VTIMEZONE = {}
while true do
local line = handler:read("l")
local line = handler:read('l')
if not line or line:match("END:VCALENDAR") then
if not line or line:match('END:VCALENDAR') then
break
end
local v, k = line:match("(.*):(.*)")
local v, k = line:match('(.*):(.*)')
if v and k then
if v:match("PRODID") then
if v:match('PRODID') then
VCALENDAR.PRODID = k
elseif v:match("VERSION") then
elseif v:match('VERSION') then
VCALENDAR.VERSION = k
elseif v:match("BEGIN") then
if k:match("VTIMEZONE") then
elseif v:match('BEGIN') then
if k:match('VTIMEZONE') then
VCALENDAR.VTIMEZONE = self:VTIMEZONE(handler)
elseif k:match("VEVENT") then
elseif k:match('VEVENT') then
table.insert(VCALENDAR.VEVENT, self:VEVENT(handler))
end
end
@@ -303,20 +287,20 @@ function ical._private.parser:VTIMEZONE(handler)
local VTIMEZONE = {}
while true do
local line = handler:read("l")
local line = handler:read('l')
if not line or line:match("END:VTIMEZONE") then
if not line or line:match('END:VTIMEZONE') then
break
end
local v, k = line:match("(.*):(.*)")
if v:match("TZID") then
local v, k = line:match('(.*):(.*)')
if v:match('TZID') then
VTIMEZONE.TZID = k
end
if v:match("BEGIN") then
if k:match("DAYLIGHT") then
if v:match('BEGIN') then
if k:match('DAYLIGHT') then
VTIMEZONE.DAYLIGHT = self:DAYLIGHT(handler)
elseif k:match("STANDARD") then
elseif k:match('STANDARD') then
VTIMEZONE.STANDARD = self:STANDARD(handler)
end
end
@@ -329,26 +313,26 @@ function ical._private.parser:DAYLIGHT(handler)
local DAYLIGHT = {}
while true do
local line = handler:read("l")
local line = handler:read('l')
if not line or line:match("END:DAYLIGHT") then
if not line or line:match('END:DAYLIGHT') then
break
end
local v, k = line:match("(.*):(.*)")
if v:match("TZOFFSETFROM") then
local v, k = line:match('(.*):(.*)')
if v:match('TZOFFSETFROM') then
DAYLIGHT.TZOFFSETFROM = self.offset(k)
elseif v:match("TZOFFSETTO") then
elseif v:match('TZOFFSETTO') then
DAYLIGHT.TZOFFSETTO = self.offset(k)
elseif v:match("TZNAME") then
elseif v:match('TZNAME') then
DAYLIGHT.TZNAME = k
elseif v:match("DTSTART") then
elseif v:match('DTSTART') then
DAYLIGHT.DTSTART = self.to_datetime(k)
elseif v:match("RRULE") then
elseif v:match('RRULE') then
DAYLIGHT.RRULE = {
FREQ = k:match("FREQ=([A-Z]+)"),
BYDAY = k:match("BYDAY=([%+%-0-9A-Z,]+)"),
BYMONTH = k:match("BYMONTH=([0-9]+)")
FREQ = k:match('FREQ=([A-Z]+)'),
BYDAY = k:match('BYDAY=([%+%-0-9A-Z,]+)'),
BYMONTH = k:match('BYMONTH=([0-9]+)'),
}
end
end
@@ -364,27 +348,27 @@ function ical._private.parser:STANDARD(handler)
-- Read each line until END:STANDARD is read
while true do
local line = handler:read("l")
local line = handler:read('l')
if not line or line:match("END:STANDARD") then
if not line or line:match('END:STANDARD') then
break
end
-- Break down each line into the property:value
local v, k = line:match("(.*):(.*)")
if v:match("TZOFFSETFROM") then
local v, k = line:match('(.*):(.*)')
if v:match('TZOFFSETFROM') then
STANDARD.TZOFFSETFROM = self.offset(k)
elseif v:match("TZOFFSETTO") then
elseif v:match('TZOFFSETTO') then
STANDARD.TZOFFSETTO = self.offset(k)
elseif v:match("TZNAME") then
elseif v:match('TZNAME') then
STANDARD.TZNAME = k
elseif v:match("DTSTART") then
elseif v:match('DTSTART') then
STANDARD.DTSTART = self.to_datetime(k)
elseif v:match("RRULE") then
elseif v:match('RRULE') then
STANDARD.RRULE = {
FREQ = k:match("FREQ=([A-Z]+)"),
BYDAY = k:match("BYDAY=([%+%-0-9A-Z,]+)"),
BYMONTH = k:match("BYMONTH=([0-9]+)")
FREQ = k:match('FREQ=([A-Z]+)'),
BYDAY = k:match('BYDAY=([%+%-0-9A-Z,]+)'),
BYMONTH = k:match('BYMONTH=([0-9]+)'),
}
end
end
@@ -400,8 +384,8 @@ function ical._private.parser.to_datetime(datetime)
if not datetime then return end
local dt, utc = {}, nil
dt.year, dt.month, dt.day = datetime:match("^(%d%d%d%d)(%d%d)(%d%d)")
dt.hour, dt.min, dt.sec, utc = datetime:match("T(%d%d)(%d%d)(%d%d)(Z?)")
dt.year, dt.month, dt.day = datetime:match('^(%d%d%d%d)(%d%d)(%d%d)')
dt.hour, dt.min, dt.sec, utc = datetime:match('T(%d%d)(%d%d)(%d%d)(Z?)')
if (dt.hour == nil) or (dt.min == nil) or (dt.sec == nil) then
dt.hour, dt.min, dt.sec, utc = 0, 0, 0, nil
@@ -412,8 +396,8 @@ function ical._private.parser.to_datetime(datetime)
end
function ical._private.parser.offset(offset)
local s, h, m = offset:match("([+-])(%d%d)(%d%d)")
if s == "+" then s = 1 else s = -1 end
local s, h, m = offset:match('([+-])(%d%d)(%d%d)')
if s == '+' then s = 1 else s = -1 end
return s * (tonumber(h) * 3600 + tonumber(m) * 60)
end