126 lines
3.3 KiB
Go
126 lines
3.3 KiB
Go
package main
|
|
|
|
import (
|
|
"embed"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"text/template"
|
|
)
|
|
|
|
//go:embed static
|
|
var fs embed.FS
|
|
|
|
func rootHandler(w http.ResponseWriter, r *http.Request) {
|
|
req <- struct{}{}
|
|
data := <-res
|
|
tmpl := template.Must(template.ParseFS(fs, "static/home.html"))
|
|
if err := tmpl.Execute(w, data); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|
|
|
|
func newHandler(w http.ResponseWriter, r *http.Request) {
|
|
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" {
|
|
url := bmStrict.Sanitize(params.Get("url"))
|
|
if url == "" {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte("No URL provided"))
|
|
return
|
|
}
|
|
|
|
forge := bmStrict.Sanitize(params.Get("forge"))
|
|
if forge == "" {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte("No forge provided"))
|
|
return
|
|
}
|
|
|
|
name := bmStrict.Sanitize(params.Get("name"))
|
|
if name == "" {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte("No name provided"))
|
|
return
|
|
}
|
|
|
|
proj := project{
|
|
URL: url,
|
|
Name: name,
|
|
Forge: forge,
|
|
}
|
|
proj, err := getReleases(proj)
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte(fmt.Sprintf("Error getting releases: %s", err)))
|
|
return
|
|
}
|
|
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" {
|
|
url := params.Get("url")
|
|
if url == "" {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte("No URL provided"))
|
|
return
|
|
}
|
|
|
|
untrack(url)
|
|
http.Redirect(w, r, "/", http.StatusSeeOther)
|
|
}
|
|
}
|
|
|
|
if r.Method == http.MethodPost {
|
|
r.ParseForm()
|
|
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 != "" {
|
|
track(nameValue, urlValue, forgeValue, releaseValue)
|
|
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)
|
|
w.Write([]byte("No data provided"))
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func staticHandler(writer http.ResponseWriter, request *http.Request) {
|
|
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)
|
|
}
|
|
}
|