2023-09-24 20:57:56 +00:00
|
|
|
// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-10-25 04:14:32 +00:00
|
|
|
package ws
|
2023-09-21 18:03:21 +00:00
|
|
|
|
|
|
|
import (
|
2023-10-25 04:14:32 +00:00
|
|
|
"database/sql"
|
2023-09-21 18:03:21 +00:00
|
|
|
"embed"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
2023-10-25 04:14:32 +00:00
|
|
|
"sync"
|
2023-09-21 18:03:21 +00:00
|
|
|
"text/template"
|
2023-10-25 04:14:32 +00:00
|
|
|
|
|
|
|
"git.sr.ht/~amolith/willow/project"
|
|
|
|
"github.com/microcosm-cc/bluemonday"
|
2023-09-21 18:03:21 +00:00
|
|
|
)
|
|
|
|
|
2023-10-25 04:14:32 +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
|
|
|
|
|
2023-10-25 04:14:32 +00:00
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-25 04:14:32 +00:00
|
|
|
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" {
|
2023-10-25 04:14:32 +00:00
|
|
|
submittedURL := bmStrict.Sanitize(params.Get("url"))
|
2023-09-26 20:13:45 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-10-25 04:14:32 +00:00
|
|
|
proj := project.Project{
|
2023-09-26 20:13:45 +00:00
|
|
|
URL: submittedURL,
|
2023-09-21 18:03:21 +00:00
|
|
|
Name: name,
|
|
|
|
Forge: forge,
|
|
|
|
}
|
2023-10-25 04:14:32 +00:00
|
|
|
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" {
|
2023-10-25 04:14:32 +00:00
|
|
|
submittedURL := params.Get("url")
|
2023-09-26 20:13:45 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-10-25 04:14:32 +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 != "" {
|
2023-10-25 04:14:32 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-25 04:14:32 +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)
|
|
|
|
}
|
|
|
|
}
|