Caldav to Github/Jira Proxy

Tags

Proxying different services, so they can be registered in a caldav compatible client



Intial Prototype



sequenceDiagram
participant Client
participant Cache
participant Server

Note right of Client: Basic Fetch

Client->>Server: Proxy Request
Activate Cache
Server->>Cache: Update cache with values
Cache->>Client: Return updated cache
Deactivate Cache

Note right of Client: Basic PUT
Client->>Cache: HTTP PUT
Activate Cache
Cache->>Server: Post to Server
Server->>Cache: Update cache
Cache->>Client: Return to Client
Deactivate Cache