Module:TimeGreeting: Difference between revisions

From Empire of Dragons
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
     -- Use local time (server's time zone)
     -- Use local time (server's time zone)
     local now = mw.getCurrentFrame():callParserFunction("#time", "Y-m-d H:i:s")
     local now = mw.getCurrentFrame():callParserFunction("#time", "Y-m-d H:i:s")
      
     local offsetHours = tonumber(mw.getCurrentFrame():callParserFunction("#time", "O")) / 100
    local offsetHours = -10
 
    -- Alternatively, use UTC+1
    -- local now = mw.getCurrentFrame():callParserFunction("#time", "Y-m-d H:i:s", "1")
    -- local offsetHours = 1


     local hours = tonumber(now:match("(%d%d)"))
     local hours = tonumber(now:match("(%d%d)"))
    local greeting
 
     if hours then
     if hours then
         -- Adjust for local time zone
         -- Adjust for local time zone
         hours = hours + offsetHours
         hours = hours + offsetHours
        greeting = "It is " .. hours .. " "
 
        local greeting
         if hours >= 6 and hours < 12 then
         if hours >= 6 and hours < 12 then
          greeting = "It is " .. hours .. " Good morning"
            greeting = "Good morning"
         elseif hours >= 12 and hours < 18 then
        elseif hours >= 12 and hours < 14 then
          greeting = "It is " .. hours .. " Good afternoon"
            greeting = "Good noon"
         elseif hours >= 14 and hours < 18 then
            greeting = "Good afternoon"
        elseif hours >= 18 and hours < 24 then
            greeting = "Good night"
        elseif hours >= 0 and hours < 6 then
            greeting = "Good midnight"
         else
         else
          greeting = "It is " .. hours .. " Good evening"
            greeting = "Unknown time"
         end
         end
         return greeting
 
        local fullTime = mw.getCurrentFrame():callParserFunction("#time", "H:i:s")
 
         return greeting .. " | Full local time: " .. fullTime
     else
     else
         return "Error: Unable to determine the time"
         return "Error: Unable to determine the time"

Revision as of 10:06, 19 January 2024

Good night | Full local time: 10:23:05


-- Module:TimeGreeting

local p = {}

function p.getGreeting()
    -- Use local time (server's time zone)
    local now = mw.getCurrentFrame():callParserFunction("#time", "Y-m-d H:i:s")
    local offsetHours = tonumber(mw.getCurrentFrame():callParserFunction("#time", "O")) / 100

    -- Alternatively, use UTC+1
    -- local now = mw.getCurrentFrame():callParserFunction("#time", "Y-m-d H:i:s", "1")
    -- local offsetHours = 1

    local hours = tonumber(now:match("(%d%d)"))

    if hours then
        -- Adjust for local time zone
        hours = hours + offsetHours

        local greeting
        if hours >= 6 and hours < 12 then
            greeting = "Good morning"
        elseif hours >= 12 and hours < 14 then
            greeting = "Good noon"
        elseif hours >= 14 and hours < 18 then
            greeting = "Good afternoon"
        elseif hours >= 18 and hours < 24 then
            greeting = "Good night"
        elseif hours >= 0 and hours < 6 then
            greeting = "Good midnight"
        else
            greeting = "Unknown time"
        end

        local fullTime = mw.getCurrentFrame():callParserFunction("#time", "H:i:s")

        return greeting .. " | Full local time: " .. fullTime
    else
        return "Error: Unable to determine the time"
    end
end

function p.displayGreeting(frame)
    return p.getGreeting()
end

return p