Deaktiviere das Löschen von Sprechstunden wegen Spam

This commit is contained in:
Gonne 2022-10-27 20:59:10 +02:00
parent 12a5080659
commit 8654263798
5 changed files with 15 additions and 8 deletions

View File

@ -3,7 +3,7 @@ package controllers
import (
"net/http"
"officeHours/models"
//"officeHours/models"
"officeHours/templating"
"strconv"
)
@ -12,16 +12,16 @@ func (b *BaseHandler) DeleteOfficeHourHandler(w http.ResponseWriter, req *http.R
// TODO: error handling here is by no means sufficient, furthermore
// 400 BadRequest is for technically wrong stuff (most promimently GET instead of POST)
if req.FormValue("id") != "" {
id, err := strconv.Atoi(req.FormValue("id"))
_, err := strconv.Atoi(req.FormValue("id"))
if err != nil {
w.WriteHeader(http.StatusBadRequest)
}
officeHour, err := b.officeHourRepo.FindById(id)
//officeHour, err := b.officeHourRepo.FindById(id)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
}
_, err = b.requestRepo.Add(officeHour, models.RequestDelete)
templating.ServeTemplate(w, "deleteSuccess", nil)
//_, err = b.requestRepo.Add(officeHour, models.RequestDelete)
templating.ServeTemplate(w, "deleteDisabled", nil)
} else {
officeHours, _ := b.officeHourRepo.GetAll(true)
timetable, slots := b.GetTimetable(officeHours)

2
go.mod
View File

@ -2,6 +2,6 @@ module officeHours
go 1.18
require github.com/mattn/go-sqlite3 v1.14.15
require github.com/mattn/go-sqlite3 v1.14.16
require github.com/go-sql-driver/mysql v1.6.0

4
go.sum
View File

@ -1,4 +1,4 @@
github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
github.com/mattn/go-sqlite3 v1.14.15 h1:vfoHhTN1af61xCRSWzFIWzx2YskyMTwHLrExkBOjvxI=
github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
github.com/mattn/go-sqlite3 v1.14.16 h1:yOQRA0RpS5PFz/oikGwBEqvAWhWg5ufRz4ETLjwpU1Y=
github.com/mattn/go-sqlite3 v1.14.16/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=

View File

@ -44,6 +44,7 @@ func InitTemplates() error {
"addMask": {"addMask.html", false},
"addSuccess": {"addSuccess.html", false},
"deleteSuccess": {"deleteSuccess.html", false},
"deleteDisabled": {"deleteDisabled.html", false},
"executeFailure": {"executeFailure.html", false},
"executeSuccess": {"executeSuccess.html", false},
"index": {"index.html", false},

View File

@ -0,0 +1,6 @@
{{define "title"}}Sprechstunde löschen{{end}}
{{define "content"}}
Sprechstunden zu löschen wurde wegen zu viel Spam deaktiviert. <br>
Falls du deine Sprechstunde löschen möchtest, melde dich bitte unter <a href="mailto:sprechstundentool@mathebau.de">sprechstundentool@mathebau.de</a>.
{{end}}