aboutsummaryrefslogtreecommitdiffstats
path: root/icalproxy.go
diff options
context:
space:
mode:
Diffstat (limited to 'icalproxy.go')
-rw-r--r--icalproxy.go37
1 files changed, 26 insertions, 11 deletions
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