2015-07-03 00:15:52 +02:00
|
|
|
|
-- utilities.lua
|
|
|
|
|
-- Functions shared among plugins.
|
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
function get_word(str, idx) -- get the indexed word in a string
|
|
|
|
|
|
|
|
|
|
local str = str:gsub('^%s*(.-)%s*$', '%1')
|
|
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
|
str = string.gsub(str, '\n', ' ')
|
2015-11-25 03:22:04 +01:00
|
|
|
|
if not string.find(str, ' ') then
|
|
|
|
|
if idx == 1 then
|
|
|
|
|
return str
|
|
|
|
|
else
|
|
|
|
|
return false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
|
str = str .. ' '
|
|
|
|
|
if idx ~= 1 then
|
|
|
|
|
for i = 2, idx do
|
|
|
|
|
str = string.sub(str, string.find(str, ' ') + 1)
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-11-25 03:22:04 +01:00
|
|
|
|
str = str:sub(1, str:find(' '))
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
return str:sub(1, -2)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
function string:input() -- Returns the string after the first space.
|
|
|
|
|
if not self:find(' ') then
|
2015-07-29 00:13:46 +02:00
|
|
|
|
return false
|
|
|
|
|
end
|
2015-11-25 03:22:04 +01:00
|
|
|
|
return self:sub(self:find(' ')+1)
|
2015-07-29 00:13:46 +02:00
|
|
|
|
end
|
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
-- I swear, I copied this from PIL, not yago! :)
|
|
|
|
|
function string:trim() -- Trims whitespace from a string.
|
|
|
|
|
local s = self:gsub('^%s*(.-)%s*$', '%1')
|
|
|
|
|
return s
|
2015-07-03 00:15:52 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local lc_list = {
|
|
|
|
|
-- Latin = 'Cyrillic'
|
|
|
|
|
['A'] = 'А',
|
|
|
|
|
['B'] = 'В',
|
|
|
|
|
['C'] = 'С',
|
|
|
|
|
['E'] = 'Е',
|
|
|
|
|
['I'] = 'І',
|
|
|
|
|
['J'] = 'Ј',
|
|
|
|
|
['K'] = 'К',
|
|
|
|
|
['M'] = 'М',
|
|
|
|
|
['H'] = 'Н',
|
|
|
|
|
['O'] = 'О',
|
|
|
|
|
['P'] = 'Р',
|
|
|
|
|
['S'] = 'Ѕ',
|
|
|
|
|
['T'] = 'Т',
|
|
|
|
|
['X'] = 'Х',
|
|
|
|
|
['Y'] = 'Ү',
|
|
|
|
|
['a'] = 'а',
|
|
|
|
|
['c'] = 'с',
|
|
|
|
|
['e'] = 'е',
|
|
|
|
|
['i'] = 'і',
|
|
|
|
|
['j'] = 'ј',
|
|
|
|
|
['o'] = 'о',
|
|
|
|
|
['s'] = 'ѕ',
|
|
|
|
|
['x'] = 'х',
|
|
|
|
|
['y'] = 'у',
|
|
|
|
|
['!'] = 'ǃ'
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
function latcyr(str) -- Replaces letters with corresponding Cyrillic characters.
|
2015-07-03 00:15:52 +02:00
|
|
|
|
for k,v in pairs(lc_list) do
|
|
|
|
|
str = string.gsub(str, k, v)
|
|
|
|
|
end
|
|
|
|
|
return str
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
function load_data(filename) -- Loads a JSON file as a table.
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
|
|
local f = io.open(filename)
|
|
|
|
|
if not f then
|
|
|
|
|
return {}
|
|
|
|
|
end
|
|
|
|
|
local s = f:read('*all')
|
|
|
|
|
f:close()
|
|
|
|
|
local data = JSON.decode(s)
|
|
|
|
|
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
function save_data(filename, data) -- Saves a table to a JSON file.
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
|
|
local s = JSON.encode(data)
|
|
|
|
|
local f = io.open(filename, 'w')
|
|
|
|
|
f:write(s)
|
|
|
|
|
f:close()
|
|
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- Gets coordinates for a location. Used by gMaps.lua, time.lua, weather.lua.
|
|
|
|
|
function get_coords(input)
|
|
|
|
|
|
|
|
|
|
local url = 'http://maps.googleapis.com/maps/api/geocode/json?address=' .. URL.escape(input)
|
|
|
|
|
|
|
|
|
|
local jstr, res = HTTP.request(url)
|
|
|
|
|
if res ~= 200 then
|
|
|
|
|
return config.errors.connection
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local jdat = JSON.decode(jstr)
|
|
|
|
|
if jdat.status == 'ZERO_RESULTS' then
|
|
|
|
|
return config.errors.results
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
lat = jdat.results[1].geometry.location.lat,
|
|
|
|
|
lon = jdat.results[1].geometry.location.lng
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-29 00:13:46 +02:00
|
|
|
|
end
|