willow/ws/ws.go

180 lines
4.6 KiB
Go
Raw Normal View History

2023-09-24 20:57:56 +00:00
// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
//
// SPDX-License-Identifier: Apache-2.0
package ws
2023-09-21 18:03:21 +00:00
import (
"database/sql"
2023-09-21 18:03:21 +00:00
"embed"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"sync"
2023-09-21 18:03:21 +00:00
"text/template"
"git.sr.ht/~amolith/willow/project"
"github.com/microcosm-cc/bluemonday"
2023-09-21 18:03:21 +00:00
)
type Handler struct {
DbConn *sql.DB
Mutex *sync.Mutex
Req *chan struct{}
ManualRefresh *chan struct{}
Res *chan []project.Project
}
2023-09-21 18:03:21 +00:00
//go:embed static
var fs embed.FS
// bmUGC = bluemonday.UGCPolicy()
var bmStrict = bluemonday.StrictPolicy()
func (h Handler) RootHandler(w http.ResponseWriter, r *http.Request) {
if !h.isAuthorised(r) {
http.Redirect(w, r, "/login", http.StatusSeeOther)
return
}
*h.Req <- struct{}{}
data := <-*h.Res
2023-09-21 18:03:21 +00:00
tmpl := template.Must(template.ParseFS(fs, "static/home.html"))
if err := tmpl.Execute(w, data); err != nil {
fmt.Println(err)
}
}
func (h Handler) NewHandler(w http.ResponseWriter, r *http.Request) {
if !h.isAuthorised(r) {
http.Redirect(w, r, "/login", http.StatusSeeOther)
return
}
2023-09-21 18:03:21 +00:00
params := r.URL.Query()
action := bmStrict.Sanitize(params.Get("action"))
if r.Method == http.MethodGet {
if action == "" {
tmpl := template.Must(template.ParseFS(fs, "static/new.html"))
if err := tmpl.Execute(w, nil); err != nil {
fmt.Println(err)
}
} else if action != "delete" {
submittedURL := bmStrict.Sanitize(params.Get("url"))
if submittedURL == "" {
2023-09-21 18:03:21 +00:00
w.WriteHeader(http.StatusBadRequest)
2023-09-24 21:08:00 +00:00
_, err := w.Write([]byte("No URL provided"))
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
return
}
forge := bmStrict.Sanitize(params.Get("forge"))
if forge == "" {
w.WriteHeader(http.StatusBadRequest)
2023-09-24 21:08:00 +00:00
_, err := w.Write([]byte("No forge provided"))
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
return
}
name := bmStrict.Sanitize(params.Get("name"))
if name == "" {
w.WriteHeader(http.StatusBadRequest)
2023-09-24 21:08:00 +00:00
_, err := w.Write([]byte("No name provided"))
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
}
proj := project.Project{
URL: submittedURL,
2023-09-21 18:03:21 +00:00
Name: name,
Forge: forge,
}
proj, err := project.GetReleases(h.DbConn, proj)
2023-09-21 18:03:21 +00:00
if err != nil {
w.WriteHeader(http.StatusBadRequest)
2023-09-24 21:08:00 +00:00
_, err := w.Write([]byte(fmt.Sprintf("Error getting releases: %s", err)))
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
}
tmpl := template.Must(template.ParseFS(fs, "static/select-release.html"))
if err := tmpl.Execute(w, proj); err != nil {
fmt.Println(err)
}
} else if action == "delete" {
submittedURL := params.Get("url")
if submittedURL == "" {
2023-09-21 18:03:21 +00:00
w.WriteHeader(http.StatusBadRequest)
2023-09-24 21:08:00 +00:00
_, err := w.Write([]byte("No URL provided"))
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
}
project.Untrack(h.DbConn, h.ManualRefresh, submittedURL)
2023-09-21 18:03:21 +00:00
http.Redirect(w, r, "/", http.StatusSeeOther)
}
}
if r.Method == http.MethodPost {
2023-09-24 21:08:00 +00:00
err := r.ParseForm()
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
nameValue := bmStrict.Sanitize(r.FormValue("name"))
urlValue := bmStrict.Sanitize(r.FormValue("url"))
forgeValue := bmStrict.Sanitize(r.FormValue("forge"))
releaseValue := bmStrict.Sanitize(r.FormValue("release"))
if nameValue != "" && urlValue != "" && forgeValue != "" && releaseValue != "" {
project.Track(h.DbConn, h.ManualRefresh, nameValue, urlValue, forgeValue, releaseValue)
2023-09-21 18:03:21 +00:00
http.Redirect(w, r, "/", http.StatusSeeOther)
return
}
if nameValue != "" && urlValue != "" && forgeValue != "" && releaseValue == "" {
http.Redirect(w, r, "/new?action=yoink&name="+url.QueryEscape(nameValue)+"&url="+url.QueryEscape(urlValue)+"&forge="+url.QueryEscape(forgeValue), http.StatusSeeOther)
return
}
if nameValue == "" && urlValue == "" && forgeValue == "" && releaseValue == "" {
w.WriteHeader(http.StatusBadRequest)
2023-09-24 21:08:00 +00:00
_, err := w.Write([]byte("No data provided"))
if err != nil {
fmt.Println(err)
}
2023-09-21 18:03:21 +00:00
}
}
}
func (h Handler) LoginHandler(w http.ResponseWriter, r *http.Request) {
// TODO: do this
}
func (h Handler) isAuthorised(r *http.Request) bool {
// TODO: do this
return false
}
func StaticHandler(writer http.ResponseWriter, request *http.Request) {
2023-09-21 18:03:21 +00:00
resource := strings.TrimPrefix(request.URL.Path, "/")
// if path ends in .css, set content type to text/css
if strings.HasSuffix(resource, ".css") {
writer.Header().Set("Content-Type", "text/css")
} else if strings.HasSuffix(resource, ".js") {
writer.Header().Set("Content-Type", "text/javascript")
}
home, err := fs.ReadFile(resource)
if err != nil {
fmt.Println(err)
}
if _, err = io.WriteString(writer, string(home)); err != nil {
fmt.Println(err)
}
}