根据UTC获取未来事件的本地时间

时间:2015-10-26 01:03:24

标签: datetime lua timezone date-formatting

我正在开发一个脚本,该脚本将在社区Google日历(使用东部时区)上查找活动并成功将其转换为本地用户的时区。因为它是一个社区Google日历,所以我无法设置显示为UTC的时间,这在理论上会使这更容易。以下是我尝试创建的分步过程:

  1. 从Google日历中获取活动时间(东部时间)。使用API​​和json格式可以非常轻松地完成此操作。
  2. 使用Google Maps API根据活动时间获取东部时区偏移量。同样,这很容易做到。
  3. 将事件时间从东部转换为UTC,我相信这是通过将偏移量添加到事件时间来完成的。
  4. 根据将来的日期计算本地时区/ UTC时区差异。
  5. 通过将步骤4的结果添加到UTC事件的时间来返回事件的本地时间。
  6. 但是,无论我做什么,它似乎都不能按我想要的方式工作。这是代码:

    local function get_local_time(dateTime)
        local xyear, xmonth, xday = string.match(dateTime, "(%d+)%-(%d+)%-(%d+)") -- Date format is displayed as yyyy-mm-dd
        local xhour, xmin = string.match(dateTime, "%a(%d+):(%d+)") -- Time format is displayed as Thh:mm
    
        local event_time = os.time({year = xyear, month = xmonth, day = xday, hour = xhour or 23, min = xmin or 59, sec = 0}) -- Gets epoch time for event time
    
        async_ok, async = pcall (require, "async") -- Asynchronous lookup functions
        if not json then json = require 'json' end
    
        tzpage = "https://maps.googleapis.com/maps/api/timezone/json?location=28.4158,-81.2989&timestamp=" .. event_time .. "&key=" .. key -- Gets offset data for Eastern Time Zone
    
        if async_ok then
            tzrpage = async.request(tzpage, "HTTPS")
        end
    
        retval, page, status, headers, full_status = tzrpage:join()
        tzrpage = nil
    
        if status == 200 then
            tzopage = json.decode(page)
        end
    
        local eastern_offset = tzopage.rawOffset+tzopage.dstOffset -- Adds the offset information together (includes Daylight Savings)
    
        local utc_event_time = event_time+eastern_offset -- Sets UTC's time for the event
    
        local utctime, localtime = os.date("!*t", utc_event_time), os.date("*t", utc_event_time) -- Sets table data for events based on UTC's time of the event
        localtime.isdst = false
        local localoffset = os.difftime(os.time(utctime), os.time(localtime)) -- Sets the time difference between UTC and local time at the time of the event UTC
    
        return os.date("%A, %B %d %Y at %I:%M%p", (utc_event_time-localoffset)) -- Should return local time of the event
    end
    

    但是,当我做以下事情时:

    print(get_local_time("2015-10-31T01:15:00"))
    

    它返回

    Friday, October 30 2015 at 02:15PM
    

    何时应该返回

    Friday, October 30 2015 at 10:15PM
    

    因为我是太平洋时间。

    如果我改变

    return os.date("%A, %B %d %Y at %I:%M%p", (utc_event_time-localoffset))
    

    return os.date("%A, %B %d %Y at %I:%M%p", (utc_event_time+localoffset))
    

    我得到了

    Saturday, October 31 2015 at 04:15AM
    

    这又是不正确的。

    这个脚本我哪里错了?另外,async是客户端依赖项,但它基本上是http.request

1 个答案:

答案 0 :(得分:3)

  

将事件时间从东部转换为UTC,我相信这是通过将偏移量添加到事件时间来完成的。

减法。

时间戳中显示的偏移量是带符号的数字。它已被添加"已添加"到UTC生成本地时间,因此逆操作将减去它。 -0400为负数时,您需要减去负4小时才能转换回UTC。