diff options
Diffstat (limited to 'internal/calfeed/ical.go')
| -rw-r--r-- | internal/calfeed/ical.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/calfeed/ical.go b/internal/calfeed/ical.go index bce3710..810847d 100644 --- a/internal/calfeed/ical.go +++ b/internal/calfeed/ical.go @@ -4,6 +4,8 @@ import ( "strconv" "strings" "time" + + "github.com/lukaszkasprzak/lectio/internal/config" ) // icalEscape neutralises RFC-5545 TEXT specials AND all CR/LF, so untrusted @@ -58,6 +60,12 @@ func ICal(form string, days []DayView, stamp time.Time) []byte { add("PRODID:-//lectio//calendar//EN") add("CALSCALE:GREGORIAN") add("METHOD:PUBLISH") + // AGPL-3.0 ยง13 offer for subscribers who only ever see the .ics feed. + // X- properties are the RFC-5545 extension point; unknown ones are + // ignored by clients, so this is inert for consumers and present for + // anyone who looks. + add("X-LECTIO-SOURCE:" + icalEscape(config.SourceURL)) + add("X-LECTIO-LICENSE:" + icalEscape(config.License)) add("X-WR-CALNAME:" + icalEscape(calName(form))) ds := stamp.UTC().Format("20060102T150405Z") for _, d := range days { |
