Clone
2
ICS calendar
Jan-Henrik Bruhn edited this page 2024-01-07 13:42:16 +01:00

There is a tiny rust program which "proxies" .ics file URLs into a JSON format: https://github.com/jhbruhn/ics-adapter

The usage is rather simple. It is recommended to run this as a Docker container. An example docker-compose configuration might look like this:

version: "3"
services:
    calendar:
        image: ghcr.io/jhbruhn/ics-adapter:main
        ports:
            - "3000:3000"
        restart: unless-stopped

As you can see, you only have to forward port 3000 to wherever you like, in this case port 3000. The URL you have to enter into the OEPL Google Calendar config then looks like this:

http://<docker-host>:3000/calendar/<ics-url>/entries

This URL then has to be entered into a Google Calendar URL field in the OEPL firmware.

It is important that you urlencode the <ics-url> with a tool like this: https://www.urlencoder.org/

With an actual .ics url, it looks like this:

http://192.168.178.42:3000/calendar/https%3A%2F%2Fnextcloud.net%2Fremote.php%2Fdav%2Fpublic-calendars%2Fasdlkijf/entries

You may also list multiple urls to calendars separated with a ;:

http://<docker-host>:3000/calendar/<ics-url-1>;<ics-url-2>/entries

Previous versions also supported these URL formats, but these are not compatible with modern OEPL features:

http://<docker-host>:3000/get?url=<ics-url>

With an actual .ics url, it looks like this:

http://192.168.178.42:3000/get?url=https://nextcloud.net/remote.php/dav/public-calendars/whateveryolo901i230ji