Skip to content

JeffLac/ics-calendar-tidbyt-lambda

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Tidbyt ICS Next Event

This is a server designed for tidyt app in development that displays the next event from ICS url.

It has been optimized to work on AWS Lambda Serverless.

E.g.

POST lambda



{
    "icsUrl": "https://outlook.office365.com/owa/calendar/xxx.com/xxx/calendar.ics",
    "tz": "America/Chicago",
    "showInProgress": "true",
    "includeAllDayEvents": "true",
    "onlyShowAllDayEvents": "false"
}

Response

{
    "data": {
        "name": "HARVEST",
        "start": 1707498000,
        "end": 1707501600,
        "location": "https://us06web.zoom.us/j/xxx
        "detail": {
            "isToday": true,
            "isTomorrow": false,
            "isThisWeek": true,
            "minutesUntilStart": -736,
            "minutesUntilEnd": 703,
            "hoursToEnd": 11,
            "inProgress": true,  
            "isAllDay": false
        }
    },
    "message": null
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 98.2%
  • Makefile 1.8%