Module:IxTime

From IxWiki
Revision as of 20:54, 3 August 2024 by Heku (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:IxTime/doc

local p = {}

-- Ensure this matches the JavaScript epoch
local EPOCH = os.time({year=2020, month=10, day=4, hour=0, minute=0, second=0})

function p.calculateIxTime(inputTime)
    local currentTime = inputTime or os.time()
    local secondsSinceEpoch = currentTime - EPOCH
    local ixTime = math.floor(secondsSinceEpoch * 4.0 + EPOCH)
    return ixTime
end

function p.formatIxTime(ixTime)
    -- Format the time to match the JavaScript output
    return os.date("!%A, %B %d, %Y %I:%M:%S %p", ixTime)
end

function p.convertToIxTime(frame)
    local args = frame.args
    local year = tonumber(args[1] or args.year)
    local month = tonumber(args[2] or args.month)
    local day = tonumber(args[3] or args.day)
    local hour = tonumber(args[4] or args.hour or "0")
    local minute = tonumber(args[5] or args.minute or "0")
    local second = tonumber(args[6] or args.second or "0")

    if not year or not month or not day then
        return "Error: Invalid date format"
    end

    local inputTime = os.time({year=year, month=month, day=day, hour=hour, minute=minute, second=second})
    local ixTime = p.calculateIxTime(inputTime)
    return p.formatIxTime(ixTime) .. " (ILT)"
end

function p.getCurrentIxTime(frame)
    local ixTime = p.calculateIxTime()
    return p.formatIxTime(ixTime) .. " (ILT)"
end

return p