aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.go2
-rw-r--r--icalproxy.go37
-rw-r--r--module/default.nix4
3 files changed, 32 insertions, 11 deletions
diff --git a/config.go b/config.go
index 3ddf42a..0b09061 100644
--- a/config.go
+++ b/config.go
@@ -33,6 +33,7 @@ type config struct {
33 Ignore ignoreRules `json:"ignore"` 33 Ignore ignoreRules `json:"ignore"`
34 Port string `json:"port"` 34 Port string `json:"port"`
35 UserTokens map[string]userToken `json:"user_tokens"` 35 UserTokens map[string]userToken `json:"user_tokens"`
36 UserAgent string `json:"user_agent"`
36} 37}
37 38
38type ignoreRules struct { 39type ignoreRules struct {
@@ -46,6 +47,7 @@ func printConfig(cfg *config) {
46 log.Print("Loaded configuration: ") 47 log.Print("Loaded configuration: ")
47 log.Print(" Calendar URL: ", cfg.CalendarURL.v.String()) 48 log.Print(" Calendar URL: ", cfg.CalendarURL.v.String())
48 log.Print(" HTTP Port: ", cfg.Port) 49 log.Print(" HTTP Port: ", cfg.Port)
50 log.Print(" User Agent: ", cfg.UserAgent)
49 log.Print(" Ignoring:") 51 log.Print(" Ignoring:")
50 for _, entry := range cfg.Ignore.LocationRegexes { 52 for _, entry := range cfg.Ignore.LocationRegexes {
51 log.Printf(" Events with locations matching %s", entry.String()) 53 log.Printf(" Events with locations matching %s", entry.String())
diff --git a/icalproxy.go b/icalproxy.go
index 77ced94..5f775ba 100644
--- a/icalproxy.go
+++ b/icalproxy.go
@@ -22,10 +22,11 @@ func main() {
22 } 22 }
23 23
24 handler := handler{ 24 handler := handler{
25 calURL: url.URL(cfg.CalendarURL.v), 25 calURL: url.URL(cfg.CalendarURL.v),
26 ignore: cfg.Ignore, 26 ignore: cfg.Ignore,
27 tokens: cfg.UserTokens, 27 tokens: cfg.UserTokens,
28 amsTz: amsTz, 28 amsTz: amsTz,
29 userAgent: cfg.UserAgent,
29 } 30 }
30 31
31 mux := http.ServeMux{} 32 mux := http.ServeMux{}
@@ -44,10 +45,11 @@ func main() {
44} 45}
45 46
46type handler struct { 47type handler struct {
47 ignore ignoreRules 48 ignore ignoreRules
48 tokens map[string]userToken 49 tokens map[string]userToken
49 calURL url.URL 50 calURL url.URL
50 amsTz *time.Location 51 amsTz *time.Location
52 userAgent string
51} 53}
52 54
53func (h handler) makeTokenURL(token string) string { 55func (h handler) makeTokenURL(token string) string {
@@ -63,13 +65,26 @@ func (h handler) handle(w http.ResponseWriter, r *http.Request) {
63 proxyUserID := r.URL.Query().Get("proxy_user_id") 65 proxyUserID := r.URL.Query().Get("proxy_user_id")
64 proxyToken := r.URL.Query().Get("proxy_token") 66 proxyToken := r.URL.Query().Get("proxy_token")
65 if !userOK(h.tokens, proxyUserID, []byte(proxyToken)) { 67 if !userOK(h.tokens, proxyUserID, []byte(proxyToken)) {
66 http.Error(w, "Bad proxy_user_id or proxy_token", http.StatusUnauthorized) 68 http.Error(w, "Bad proxy_user_id or proxy_token",
69 http.StatusUnauthorized)
67 return 70 return
68 } 71 }
69 72
70 resp, err := http.Get(h.makeTokenURL(brightspaceToken)) 73 req, err := http.NewRequestWithContext(r.Context(), http.MethodGet,
74 h.makeTokenURL(brightspaceToken), nil)
71 if err != nil { 75 if err != nil {
72 http.Error(w, "Error sending request to Brightspace", http.StatusInternalServerError) 76 http.Error(w, "Error constructing HTTP request for Brightspace",
77 http.StatusInternalServerError)
78 return
79 }
80 if h.userAgent != "" {
81 req.Header.Add("User-Agent", h.userAgent)
82 }
83
84 resp, err := http.DefaultClient.Do(req)
85 if err != nil {
86 http.Error(w, "Error sending request to Brightspace",
87 http.StatusInternalServerError)
73 return 88 return
74 } 89 }
75 90
diff --git a/module/default.nix b/module/default.nix
index 774a361..474187f 100644
--- a/module/default.nix
+++ b/module/default.nix
@@ -25,6 +25,9 @@ in {
25 port = mkOption { 25 port = mkOption {
26 type = str; 26 type = str;
27 }; 27 };
28 userAgent = mkOption {
29 type = str;
30 };
28 userTokens = mkOption { 31 userTokens = mkOption {
29 type = attrsOf (submodule { 32 type = attrsOf (submodule {
30 options = { 33 options = {
@@ -59,6 +62,7 @@ in {
59 summary_regexes = cfg.ignore.summaryRegexes; 62 summary_regexes = cfg.ignore.summaryRegexes;
60 }; 63 };
61 port = cfg.port; 64 port = cfg.port;
65 user_agent = cfg.userAgent;
62 user_tokens = cfg.userTokens; 66 user_tokens = cfg.userTokens;
63 }); 67 });
64 }; 68 };