Extracted verification logic for frontend into seperate function tokenIsVerified() and created ServePDFListe()

This commit is contained in:
Jason Streifling 2024-08-17 20:15:35 +02:00
parent bebfe994ae
commit 472f00a107

View File

@ -1,45 +1,72 @@
package frontend package frontend
import ( import (
"encoding/json"
"log" "log"
"net/http" "net/http"
"os"
"strings" "strings"
b "streifling.com/jason/cpolis/cmd/backend" b "streifling.com/jason/cpolis/cmd/backend"
) )
func ServePDFs(c *b.Config) http.HandlerFunc { func tokenIsVerified(w http.ResponseWriter, r *http.Request) bool {
idToken := r.Header.Get("Authorization")
if idToken == "" {
http.Error(w, "Authorization header missing", http.StatusUnauthorized)
}
client, err := b.NewClient()
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusInternalServerError)
return false
}
_, err = client.Verify(idToken)
if err != nil {
log.Println(err)
http.Error(w, err.Error(), http.StatusUnauthorized)
return false
}
return true
}
func ServePDFList(c *b.Config) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) { return func(w http.ResponseWriter, r *http.Request) {
idToken := r.Header.Get("Authorization") if tokenIsVerified(w, r) {
if idToken == "" { files, err := os.ReadDir(c.PDFDir)
http.Error(w, "Authorization header missing", http.StatusUnauthorized) if err != nil {
} log.Println(err)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
client, err := b.NewClient() fileNames := make([]string, 0)
if err != nil { for _, file := range files {
log.Println(err) fileNames = append(fileNames, file.Name())
http.Error(w, err.Error(), http.StatusInternalServerError) }
return
}
_, err = client.Verify(idToken) w.Header().Set("Content-Type", "application/json")
if err != nil { if err = json.NewEncoder(w).Encode(fileNames); err != nil {
log.Println(err) log.Println(err)
http.Error(w, err.Error(), http.StatusUnauthorized) http.Error(w, err.Error(), http.StatusInternalServerError)
return return
} }
}
pdfIDsString := r.PathValue("ids") }
if err != nil { }
log.Println(err)
http.Error(w, err.Error(), http.StatusInternalServerError) func ServePDFs(c *b.Config) http.HandlerFunc {
return return func(w http.ResponseWriter, r *http.Request) {
} if tokenIsVerified(w, r) {
pdfIDsString := r.PathValue("ids")
pdfIDs := strings.Split(pdfIDsString, ",") pdfIDs := strings.Split(pdfIDsString, ",")
for _, id := range pdfIDs { for _, id := range pdfIDs {
http.ServeFile(w, r, id) http.ServeFile(w, r, id)
}
} }
} }
} }