Unifies epoch-related variables in Lua and JS

This commit is contained in:
Simone Mainardi 2021-07-30 15:38:06 +02:00
parent f2d9ee41be
commit 820e497253
9 changed files with 43 additions and 41 deletions

View file

@ -9,12 +9,12 @@ package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
local rest_utils = require("rest_utils")
local begin_epoch = tonumber(_GET["begin_epoch"])
local end_epoch = tonumber(_GET["end_epoch"])
local epoch_begin = tonumber(_GET["epoch_begin"])
local epoch_end = tonumber(_GET["epoch_end"])
local num_records = tonumber(_GET["totalRows"]) or 24
local curr = begin_epoch
local curr = epoch_begin
local records = {}
-- 1 hour is 60*60=3600
@ -23,7 +23,7 @@ local start = os.time()
for i = 1, num_records, 1 do
if (curr < end_epoch) then
if (curr < epoch_end) then
records[#records+1] = {index = i, date = os.date("%c", curr)}
curr = curr + 3600
else