Compare commits
No commits in common. "863581f5909f35d6016c0e1145d623597dbb3d7d" and "c00645432b7cf86713e28730648af94a1e1b47f7" have entirely different histories.
863581f590
...
c00645432b
@ -2,7 +2,6 @@ package backend
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"image"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
@ -11,14 +10,9 @@ import (
|
|||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
)
|
)
|
||||||
|
|
||||||
var ErrUnsupportedFormat error = image.ErrFormat // used internally by imaging
|
|
||||||
|
|
||||||
func SaveImage(c *Config, src io.Reader) (string, error) {
|
func SaveImage(c *Config, src io.Reader) (string, error) {
|
||||||
img, err := imaging.Decode(src, imaging.AutoOrientation(true))
|
img, err := imaging.Decode(src, imaging.AutoOrientation(true))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == ErrUnsupportedFormat {
|
|
||||||
return "", ErrUnsupportedFormat
|
|
||||||
}
|
|
||||||
return "", fmt.Errorf("error decoding image: %v", err)
|
return "", fmt.Errorf("error decoding image: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,8 +23,8 @@ func SaveImage(c *Config, src io.Reader) (string, error) {
|
|||||||
img = imaging.Resize(img, c.MaxImgWidth, 0, imaging.Lanczos)
|
img = imaging.Resize(img, c.MaxImgWidth, 0, imaging.Lanczos)
|
||||||
}
|
}
|
||||||
|
|
||||||
filename := fmt.Sprint(uuid.New(), ".webp")
|
filename := fmt.Sprint(c.PicsDir, "/", uuid.New(), ".webp")
|
||||||
file, err := os.Create(c.PicsDir + "/" + filename)
|
file, err := os.Create(filename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("error creating new image file: %v", err)
|
return "", fmt.Errorf("error creating new image file: %v", err)
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ func (db *DB) AddUser(u *User, pass string) (int64, error) {
|
|||||||
return id, nil
|
return id, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *DB) GetID(userName string) int64 {
|
func (db *DB) GetID(userName string) (int64, bool) {
|
||||||
var id int64
|
var id int64
|
||||||
|
|
||||||
query := `
|
query := `
|
||||||
@ -56,11 +56,11 @@ func (db *DB) GetID(userName string) int64 {
|
|||||||
WHERE username = ?
|
WHERE username = ?
|
||||||
`
|
`
|
||||||
row := db.QueryRow(query, userName)
|
row := db.QueryRow(query, userName)
|
||||||
if err := row.Scan(&id); err != nil { // seems like the only possible error is ErrNoRows
|
if err := row.Scan(&id); err != nil {
|
||||||
return 0
|
return 0, false
|
||||||
}
|
}
|
||||||
|
|
||||||
return id
|
return id, true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *DB) CheckPassword(id int64, pass string) error {
|
func (db *DB) CheckPassword(id int64, pass string) error {
|
||||||
@ -146,7 +146,7 @@ func (db *DB) GetUser(id int64) (*User, error) {
|
|||||||
return user, nil
|
return user, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *DB) UpdateOwnUserAttributes(id int64, user, first, last, oldPass, newPass, newPass2 string) error {
|
func (db *DB) UpdateOwnAttributes(id int64, user, first, last, oldPass, newPass, newPass2 string) error {
|
||||||
passwordEmpty := true
|
passwordEmpty := true
|
||||||
if len(newPass) > 0 || len(newPass2) > 0 {
|
if len(newPass) > 0 || len(newPass2) > 0 {
|
||||||
if newPass != newPass2 {
|
if newPass != newPass2 {
|
||||||
@ -228,7 +228,7 @@ func (db *DB) AddFirstUser(u *User, pass string) (int64, error) {
|
|||||||
if err = tx.Commit(); err != nil {
|
if err = tx.Commit(); err != nil {
|
||||||
return 0, fmt.Errorf("error committing transaction: %v", err)
|
return 0, fmt.Errorf("error committing transaction: %v", err)
|
||||||
}
|
}
|
||||||
return -1, nil
|
return 2, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
hashedPass, err := bcrypt.GenerateFromPassword([]byte(pass), bcrypt.DefaultCost)
|
hashedPass, err := bcrypt.GenerateFromPassword([]byte(pass), bcrypt.DefaultCost)
|
||||||
|
@ -38,9 +38,10 @@ func WriteArticle(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var data *EditorHTMLData
|
data := &EditorHTMLData{Action: "submit"}
|
||||||
|
|
||||||
if session.Values["article"] == nil {
|
if session.Values["article"] == nil {
|
||||||
data = &EditorHTMLData{Action: "submit", Article: new(b.Article)}
|
data = &EditorHTMLData{Article: new(b.Article)}
|
||||||
} else {
|
} else {
|
||||||
data = session.Values["article"].(*EditorHTMLData)
|
data = session.Values["article"].(*EditorHTMLData)
|
||||||
}
|
}
|
||||||
@ -87,15 +88,6 @@ func SubmitArticle(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
AutoGenerated: false,
|
AutoGenerated: false,
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(article.Title) == 0 {
|
|
||||||
http.Error(w, "Bitte den Titel eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if len(article.Description) == 0 {
|
|
||||||
http.Error(w, "Bitte die Beschreibung eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
article.ID, err = db.AddArticle(article)
|
article.ID, err = db.AddArticle(article)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
@ -103,14 +95,8 @@ func SubmitArticle(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
content := []byte(r.PostFormValue("article-content"))
|
|
||||||
if len(content) == 0 {
|
|
||||||
http.Error(w, "Bitte den Artikel eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
articleAbsName := fmt.Sprint(c.ArticleDir, "/", article.ID, ".md")
|
articleAbsName := fmt.Sprint(c.ArticleDir, "/", article.ID, ".md")
|
||||||
if err = os.WriteFile(articleAbsName, content, 0644); err != nil {
|
if err = os.WriteFile(articleAbsName, []byte(r.PostFormValue("article-content")), 0644); err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
@ -167,22 +153,8 @@ func ResubmitArticle(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
}
|
}
|
||||||
|
|
||||||
title := r.PostFormValue("article-title")
|
title := r.PostFormValue("article-title")
|
||||||
if len(title) == 0 {
|
|
||||||
http.Error(w, "Bitte den Titel eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
description := r.PostFormValue("article-description")
|
description := r.PostFormValue("article-description")
|
||||||
if len(description) == 0 {
|
|
||||||
http.Error(w, "Bitte die Beschreibung eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
content := r.PostFormValue("article-content")
|
content := r.PostFormValue("article-content")
|
||||||
if len(content) == 0 {
|
|
||||||
http.Error(w, "Bitte den Artikel eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
link := fmt.Sprint(c.ArticleDir, "/", id, ".md")
|
link := fmt.Sprint(c.ArticleDir, "/", id, ".md")
|
||||||
if err = os.WriteFile(link, []byte(content), 0644); err != nil {
|
if err = os.WriteFile(link, []byte(content), 0644); err != nil {
|
||||||
@ -538,10 +510,6 @@ func UploadArticleImage(c *b.Config, s *b.CookieStore) http.HandlerFunc {
|
|||||||
|
|
||||||
filename, err := b.SaveImage(c, file)
|
filename, err := b.SaveImage(c, file)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == b.ErrUnsupportedFormat {
|
|
||||||
http.Error(w, "Das Dateiformat wird nicht unterstützt.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
|
@ -31,18 +31,21 @@ func PublishLatestIssue(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFun
|
|||||||
|
|
||||||
title := r.PostFormValue("issue-title")
|
title := r.PostFormValue("issue-title")
|
||||||
if len(title) == 0 {
|
if len(title) == 0 {
|
||||||
http.Error(w, "Bitte den Titel eingeben.", http.StatusBadRequest)
|
err = fmt.Errorf("error: no title for issue specified")
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if session.Values["issue-image"] == nil {
|
if session.Values["issue-image"] == nil {
|
||||||
http.Error(w, "Bitte ein Bild einfügen.", http.StatusBadRequest)
|
err := "error: Image required"
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err, http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
imgFileName := session.Values["issue-image"].(string)
|
imgFileName := session.Values["issue-image"].(string)
|
||||||
fmt.Println(imgFileName)
|
imgAbsName := fmt.Sprint(c.PicsDir, "/", imgFileName)
|
||||||
imgAbsName := c.PicsDir + "/" + imgFileName
|
|
||||||
|
|
||||||
imgFile, err := os.Open(imgAbsName)
|
imgFile, err := os.Open(imgAbsName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -78,14 +81,8 @@ func PublishLatestIssue(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFun
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
content := []byte(r.PostFormValue("issue-content"))
|
|
||||||
if len(content) == 0 {
|
|
||||||
http.Error(w, "Bitte eine Beschreibung eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
articleAbsName := fmt.Sprint(c.ArticleDir, "/", article.ID, ".md")
|
articleAbsName := fmt.Sprint(c.ArticleDir, "/", article.ID, ".md")
|
||||||
if err = os.WriteFile(articleAbsName, content, 0644); err != nil {
|
if err = os.WriteFile(articleAbsName, []byte(r.PostFormValue("article-content")), 0644); err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
@ -170,10 +167,6 @@ func UploadIssueImage(c *b.Config, s *b.CookieStore) http.HandlerFunc {
|
|||||||
|
|
||||||
filename, err := b.SaveImage(c, file)
|
filename, err := b.SaveImage(c, file)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == b.ErrUnsupportedFormat {
|
|
||||||
http.Error(w, "Das Dateiformat wird nicht unterstützt.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
|
@ -34,24 +34,6 @@ func UploadPDF(c *b.Config, s *b.CookieStore) http.HandlerFunc {
|
|||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
||||||
buffer := make([]byte, 512) // Should be enough for mime type
|
|
||||||
if _, err := file.Read(buffer); err != nil {
|
|
||||||
log.Println(err)
|
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, err := file.Seek(0, 0); err != nil {
|
|
||||||
log.Println(err)
|
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if http.DetectContentType(buffer) != "application/pdf" {
|
|
||||||
http.Error(w, "Die Datei ist kein PDF.", http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
filename := fmt.Sprint(uuid.New(), ".pdf")
|
filename := fmt.Sprint(uuid.New(), ".pdf")
|
||||||
absFilepath, err := filepath.Abs(fmt.Sprint(c.PDFDir, "/", filename))
|
absFilepath, err := filepath.Abs(fmt.Sprint(c.PDFDir, "/", filename))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -67,7 +67,7 @@ func HomePage(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
session, err := s.Get(r, "cookie")
|
session, err := getSession(w, r, c, s)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
@ -99,8 +99,8 @@ func Login(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
userName := r.PostFormValue("username")
|
userName := r.PostFormValue("username")
|
||||||
password := r.PostFormValue("password")
|
password := r.PostFormValue("password")
|
||||||
|
|
||||||
id := db.GetID(userName)
|
id, ok := db.GetID(userName)
|
||||||
if id == 0 {
|
if !ok {
|
||||||
http.Error(w, fmt.Sprintf("no such user: %v", userName), http.StatusBadRequest)
|
http.Error(w, fmt.Sprintf("no such user: %v", userName), http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -34,12 +34,7 @@ func AddTag(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
tag := r.PostFormValue("tag")
|
db.AddTag(r.PostFormValue("tag"))
|
||||||
if len(tag) == 0 {
|
|
||||||
http.Error(w, "Bitte einen Tag eingeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
db.AddTag(tag)
|
|
||||||
|
|
||||||
tmpl, err := template.ParseFiles(c.WebDir + "/templates/hub.html")
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/hub.html")
|
||||||
tmpl = template.Must(tmpl, err)
|
tmpl = template.Must(tmpl, err)
|
||||||
|
@ -10,6 +10,11 @@ import (
|
|||||||
b "streifling.com/jason/cpolis/cmd/backend"
|
b "streifling.com/jason/cpolis/cmd/backend"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type UserData struct {
|
||||||
|
*b.User
|
||||||
|
Msg string
|
||||||
|
}
|
||||||
|
|
||||||
func checkUserStrings(user *b.User) (string, int, bool) {
|
func checkUserStrings(user *b.User) (string, int, bool) {
|
||||||
userLen := 15
|
userLen := 15
|
||||||
nameLen := 50
|
nameLen := 50
|
||||||
@ -51,50 +56,71 @@ func AddUser(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user := &b.User{
|
role, err := strconv.Atoi(r.PostFormValue("role"))
|
||||||
UserName: r.PostFormValue("username"),
|
|
||||||
FirstName: r.PostFormValue("first-name"),
|
|
||||||
LastName: r.PostFormValue("last-name"),
|
|
||||||
}
|
|
||||||
pass := r.PostFormValue("password")
|
|
||||||
pass2 := r.PostFormValue("password2")
|
|
||||||
|
|
||||||
if len(user.UserName) == 0 || len(user.FirstName) == 0 ||
|
|
||||||
len(user.LastName) == 0 || len(pass) == 0 || len(pass2) == 0 {
|
|
||||||
http.Error(w, "Bitte alle Felder ausfüllen.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
userString, stringLen, ok := checkUserStrings(user)
|
|
||||||
if !ok {
|
|
||||||
http.Error(w, fmt.Sprint(userString, " ist zu lang. Maximal ", stringLen, " Zeichen erlaubt."), http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if id := db.GetID(user.UserName); id != 0 {
|
|
||||||
http.Error(w, user.UserName+" ist bereits vergeben. Bitte anderen Benutzernamen wählen.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if pass != pass2 {
|
|
||||||
http.Error(w, "Die Passwörter stimmen nicht überein.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
roleString := r.PostFormValue("role")
|
|
||||||
if len(roleString) == 0 {
|
|
||||||
http.Error(w, "Bitte eine Aufgabe vergeben.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
user.Role, err = strconv.Atoi(roleString)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = db.AddUser(user, pass)
|
htmlData := UserData{
|
||||||
|
User: &b.User{
|
||||||
|
UserName: r.PostFormValue("username"),
|
||||||
|
FirstName: r.PostFormValue("first-name"),
|
||||||
|
LastName: r.PostFormValue("last-name"),
|
||||||
|
Role: role,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
pass := r.PostFormValue("password")
|
||||||
|
pass2 := r.PostFormValue("password2")
|
||||||
|
|
||||||
|
if len(htmlData.UserName) == 0 || len(htmlData.FirstName) == 0 ||
|
||||||
|
len(htmlData.LastName) == 0 || len(pass) == 0 || len(pass2) == 0 {
|
||||||
|
htmlData.Msg = "Alle Felder müssen ausgefüllt werden."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
userString, stringLen, ok := checkUserStrings(htmlData.User)
|
||||||
|
if !ok {
|
||||||
|
htmlData.Msg = fmt.Sprint(userString, " ist zu lang. Maximal ",
|
||||||
|
stringLen, " Zeichen erlaubt.")
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
id, _ := db.GetID(htmlData.UserName)
|
||||||
|
if id != 0 {
|
||||||
|
htmlData.Msg = fmt.Sprint(htmlData.UserName,
|
||||||
|
" ist bereits vergeben. Bitte anderen Benutzernamen wählen.")
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if pass != pass2 {
|
||||||
|
htmlData.Msg = "Die Passwörter stimmen nicht überein."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = db.AddUser(htmlData.User, pass)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
@ -145,43 +171,76 @@ func UpdateSelf(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user := &b.User{
|
userData := UserData{
|
||||||
|
User: &b.User{
|
||||||
ID: session.Values["id"].(int64),
|
ID: session.Values["id"].(int64),
|
||||||
UserName: r.PostFormValue("username"),
|
UserName: r.PostFormValue("username"),
|
||||||
FirstName: r.PostFormValue("first-name"),
|
FirstName: r.PostFormValue("first-name"),
|
||||||
LastName: r.PostFormValue("last-name"),
|
LastName: r.PostFormValue("last-name"),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
oldPass := r.PostFormValue("old-password")
|
oldPass := r.PostFormValue("old-password")
|
||||||
newPass := r.PostFormValue("password")
|
newPass := r.PostFormValue("password")
|
||||||
newPass2 := r.PostFormValue("password2")
|
newPass2 := r.PostFormValue("password2")
|
||||||
|
|
||||||
if len(user.UserName) == 0 {
|
if len(userData.UserName) == 0 || len(userData.FirstName) == 0 ||
|
||||||
http.Error(w, "Bitte den Benutzernamen ausfüllen.", http.StatusBadRequest)
|
len(userData.LastName) == 0 {
|
||||||
|
userData.Msg = "Alle Felder mit * müssen ausgefüllt sein."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
|
if err = tmpl.ExecuteTemplate(w, "page-content", userData.Msg); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(user.FirstName) == 0 || len(user.LastName) == 0 {
|
userString, stringLen, ok := checkUserStrings(userData.User)
|
||||||
http.Error(w, "Bitte den vollständigen Namen ausfüllen.", http.StatusBadRequest)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
userString, stringLen, ok := checkUserStrings(user)
|
|
||||||
if !ok {
|
if !ok {
|
||||||
http.Error(w, fmt.Sprint(userString, " ist zu lang. Maximal ", stringLen, " Zeichen erlaubt."), http.StatusBadRequest)
|
userData.Msg = fmt.Sprint(userString, " ist zu lang. Maximal ",
|
||||||
|
stringLen, " Zeichen erlaubt.")
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
|
if err = tmpl.ExecuteTemplate(w, "page-content", userData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if id := db.GetID(user.UserName); id != 0 && id != user.ID {
|
if id, ok := db.GetID(userData.UserName); ok {
|
||||||
http.Error(w, user.UserName+" ist bereits vergeben. Bitte anderen Benutzernamen wählen.", http.StatusBadRequest)
|
if id != userData.ID {
|
||||||
|
userData.Msg = "Benutzername bereits vergeben."
|
||||||
|
userData.UserName = ""
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
|
if err = tmpl.ExecuteTemplate(w, "page-content", userData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = db.UpdateOwnUserAttributes(user.ID, user.UserName, user.FirstName, user.LastName, oldPass, newPass, newPass2); err != nil {
|
|
||||||
log.Println("error: user:", user.ID, err)
|
|
||||||
http.Error(w, "Benutzerdaten konnten nicht aktualisiert werden.", http.StatusInternalServerError)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = db.UpdateOwnAttributes(
|
||||||
|
userData.ID,
|
||||||
|
userData.UserName,
|
||||||
|
userData.FirstName,
|
||||||
|
userData.LastName,
|
||||||
|
oldPass,
|
||||||
|
newPass,
|
||||||
|
newPass2); err != nil {
|
||||||
|
userData.Msg = "Aktualisierung der Benutzerdaten fehlgeschlagen."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", userData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
tmpl, err := template.ParseFiles(c.WebDir + "/templates/hub.html")
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/hub.html")
|
||||||
tmpl = template.Must(tmpl, err)
|
tmpl = template.Must(tmpl, err)
|
||||||
@ -196,44 +255,77 @@ func UpdateSelf(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
func AddFirstUser(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
func AddFirstUser(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
var err error
|
var err error
|
||||||
user := &b.User{
|
htmlData := UserData{
|
||||||
|
User: &b.User{
|
||||||
UserName: r.PostFormValue("username"),
|
UserName: r.PostFormValue("username"),
|
||||||
FirstName: r.PostFormValue("first-name"),
|
FirstName: r.PostFormValue("first-name"),
|
||||||
LastName: r.PostFormValue("last-name"),
|
LastName: r.PostFormValue("last-name"),
|
||||||
Role: b.Admin,
|
Role: b.Admin,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
pass := r.PostFormValue("password")
|
pass := r.PostFormValue("password")
|
||||||
pass2 := r.PostFormValue("password2")
|
pass2 := r.PostFormValue("password2")
|
||||||
|
|
||||||
if len(user.UserName) == 0 || len(user.FirstName) == 0 ||
|
if len(htmlData.UserName) == 0 || len(htmlData.FirstName) == 0 ||
|
||||||
len(user.LastName) == 0 || len(pass) == 0 || len(pass2) == 0 {
|
len(htmlData.LastName) == 0 || len(pass) == 0 || len(pass2) == 0 {
|
||||||
http.Error(w, "Bitte alle Felder ausfüllen.", http.StatusBadRequest)
|
htmlData.Msg = "Alle Felder müssen ausgefüllt werden."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
return
|
||||||
userString, stringLen, ok := checkUserStrings(user)
|
}
|
||||||
|
userString, stringLen, ok := checkUserStrings(htmlData.User)
|
||||||
if !ok {
|
if !ok {
|
||||||
http.Error(w, fmt.Sprint(userString, " ist zu lang. Maximal ", stringLen, " Zeichen erlaubt."), http.StatusBadRequest)
|
htmlData.Msg = fmt.Sprint(userString, " ist zu lang. Maximal ",
|
||||||
|
stringLen, " Zeichen erlaubt.")
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
id, _ := db.GetID(htmlData.UserName)
|
||||||
|
if id != 0 {
|
||||||
|
htmlData.Msg = fmt.Sprint(htmlData.UserName,
|
||||||
|
" ist bereits vergeben. Bitte anderen Benutzernamen wählen.")
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if pass != pass2 {
|
if pass != pass2 {
|
||||||
http.Error(w, "Die Passwörter stimmen nicht überein.", http.StatusBadRequest)
|
htmlData.Msg = "Die Passwörter stimmen nicht überein."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/add-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", htmlData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user.ID, err = db.AddFirstUser(user, pass)
|
htmlData.ID, err = db.AddFirstUser(htmlData.User, pass)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if user.ID == -1 {
|
if htmlData.ID > 1 {
|
||||||
http.Error(w, "Bitte ein Benutzerkonto von einem Administrator anlegen lassen.", http.StatusInternalServerError)
|
errString := "error: there is already a first user"
|
||||||
|
log.Println(errString)
|
||||||
|
http.Error(w, errString, http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := saveSession(w, r, s, user); err != nil {
|
if err := saveSession(w, r, s, htmlData.User); err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
@ -326,55 +418,93 @@ func UpdateUser(c *b.Config, db *b.DB, s *b.CookieStore) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user := new(b.User)
|
id, err := strconv.ParseInt(r.PathValue("id"), 10, 64)
|
||||||
user.ID, err = strconv.ParseInt(r.PathValue("id"), 10, 64)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user.Role, err = strconv.Atoi(r.PostFormValue("role"))
|
role, err := strconv.Atoi(r.PostFormValue("role"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user.UserName = r.PostFormValue("username")
|
userData := UserData{
|
||||||
if len(user.UserName) == 0 {
|
User: &b.User{
|
||||||
http.Error(w, "Bitte den Benutzernamen ausfüllen.", http.StatusInternalServerError)
|
ID: id,
|
||||||
return
|
UserName: r.PostFormValue("username"),
|
||||||
|
FirstName: r.PostFormValue("first-name"),
|
||||||
|
LastName: r.PostFormValue("last-name"),
|
||||||
|
Role: role,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
user.FirstName = r.PostFormValue("first-name")
|
|
||||||
user.LastName = r.PostFormValue("last-name")
|
|
||||||
if len(user.FirstName) == 0 || len(user.LastName) == 0 {
|
|
||||||
http.Error(w, "Bitte den vollständigen Namen ausfüllen.", http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
newPass := r.PostFormValue("password")
|
newPass := r.PostFormValue("password")
|
||||||
newPass2 := r.PostFormValue("password2")
|
newPass2 := r.PostFormValue("password2")
|
||||||
|
|
||||||
userString, stringLen, ok := checkUserStrings(user)
|
if len(userData.UserName) == 0 || len(userData.FirstName) == 0 ||
|
||||||
|
len(userData.LastName) == 0 {
|
||||||
|
userData.Msg = "Alle Felder mit * müssen ausgefüllt sein."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
|
if err = tmpl.ExecuteTemplate(w, "page-content", userData.Msg); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
userString, stringLen, ok := checkUserStrings(userData.User)
|
||||||
if !ok {
|
if !ok {
|
||||||
http.Error(w, fmt.Sprint(userString, " ist zu lang. Maximal ", stringLen, " Zeichen erlaubt."), http.StatusBadRequest)
|
userData.Msg = fmt.Sprint(userString, " ist zu lang. Maximal ",
|
||||||
|
stringLen, " Zeichen erlaubt.")
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
|
if err = tmpl.ExecuteTemplate(w, "page-content", userData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if id := db.GetID(user.UserName); id != 0 && id != user.ID {
|
if id, ok := db.GetID(userData.UserName); ok {
|
||||||
http.Error(w, user.UserName+" ist bereits vergeben. Bitte anderen Benutzernamen wählen.", http.StatusBadRequest)
|
if id != userData.ID {
|
||||||
|
userData.Msg = "Benutzername bereits vergeben."
|
||||||
|
userData.UserName = ""
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
|
if err = tmpl.ExecuteTemplate(w, "page-content", userData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = db.UpdateUserAttributes(user.ID, user.UserName, user.FirstName, user.LastName, newPass, newPass2, user.Role); err != nil {
|
|
||||||
log.Println("error: user:", user.ID, err)
|
|
||||||
http.Error(w, "Benutzerdaten konnten nicht aktualisiert werden.", http.StatusInternalServerError)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
tmpl := template.Must(template.ParseFiles(c.WebDir + "/templates/hub.html"))
|
if err = db.UpdateUserAttributes(
|
||||||
|
userData.ID,
|
||||||
|
userData.UserName,
|
||||||
|
userData.FirstName,
|
||||||
|
userData.LastName,
|
||||||
|
newPass,
|
||||||
|
newPass2,
|
||||||
|
userData.Role); err != nil {
|
||||||
|
userData.Msg = "Aktualisierung der Benutzerdaten fehlgeschlagen."
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/edit-user.html")
|
||||||
|
if err = template.Must(tmpl, err).ExecuteTemplate(w, "page-content", userData); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/hub.html")
|
||||||
|
tmpl = template.Must(tmpl, err)
|
||||||
if err = tmpl.ExecuteTemplate(w, "page-content", session.Values["role"].(int)); err != nil {
|
if err = tmpl.ExecuteTemplate(w, "page-content", session.Values["role"].(int)); err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
@ -49,4 +49,11 @@
|
|||||||
<button class="btn" hx-get="/hub" hx-target="#page-content">Abbrechen</button>
|
<button class="btn" hx-get="/hub" hx-target="#page-content">Abbrechen</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var msg = "{{.Msg}}";
|
||||||
|
if (msg != "") {
|
||||||
|
alert(msg);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
@ -64,7 +64,6 @@
|
|||||||
onSuccess(data);
|
onSuccess(data);
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
htmx.trigger(htmx.find('#notification'), 'htmx:responseError', {xhr: {responseText: error.message}});
|
|
||||||
onError(error);
|
onError(error);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -29,4 +29,11 @@
|
|||||||
<input class="action-btn" type="submit" value="Anlegen" hx-post="/user/add-first" hx-target="#page-content" />
|
<input class="action-btn" type="submit" value="Anlegen" hx-post="/user/add-first" hx-target="#page-content" />
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var msg = "{{.Msg}}";
|
||||||
|
if (msg != "") {
|
||||||
|
alert(msg);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
@ -28,10 +28,6 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="mx-4">
|
<main class="mx-4">
|
||||||
<div class="hidden bg-slate-950 dark:bg-slate-50 fixed font-bold p-4 right-8 rounded-lg shadow-lg text-slate-100 dark:text-slate-900 top-8 z-50"
|
|
||||||
id="notification">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="page-content">
|
<div id="page-content">
|
||||||
{{template "page-content" .}}
|
{{template "page-content" .}}
|
||||||
</div>
|
</div>
|
||||||
@ -39,7 +35,7 @@
|
|||||||
|
|
||||||
<footer class="text-center text-gray-500 my-8">
|
<footer class="text-center text-gray-500 my-8">
|
||||||
<p>© 2024 Jason Streifling. Alle Rechte vorbehalten.</p>
|
<p>© 2024 Jason Streifling. Alle Rechte vorbehalten.</p>
|
||||||
<p>v0.12.0 - <strong>Alpha: Drastische Änderungen und Fehler vorbehalten.</strong></p>
|
<p>v0.11.1 - <strong>Alpha: Drastische Änderungen und Fehler vorbehalten.</strong></p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script src="https://unpkg.com/htmx.org@2.0.2"></script>
|
<script src="https://unpkg.com/htmx.org@2.0.2"></script>
|
||||||
@ -70,16 +66,6 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
|
||||||
htmx.on('htmx:responseError', function (event) {
|
|
||||||
var notification = document.getElementById('notification');
|
|
||||||
notification.innerText = event.detail.xhr.responseText;
|
|
||||||
notification.classList.remove('hidden');
|
|
||||||
setTimeout(function () {
|
|
||||||
notification.classList.add('hidden');
|
|
||||||
}, 5000);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user