2024-03-09 10:25:20 +01:00
|
|
|
package view
|
2024-02-27 14:10:27 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"html/template"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
2024-03-06 20:53:17 +01:00
|
|
|
"strconv"
|
2024-02-27 14:10:27 +01:00
|
|
|
|
2024-03-09 10:25:20 +01:00
|
|
|
"streifling.com/jason/cpolis/cmd/control"
|
|
|
|
"streifling.com/jason/cpolis/cmd/model"
|
2024-02-27 14:10:27 +01:00
|
|
|
)
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
func ShowHub(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
2024-03-01 11:30:31 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-03 09:16:49 +01:00
|
|
|
session, err := s.Get(r, "cookie")
|
|
|
|
if err != nil {
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/login.html")
|
|
|
|
msg := "Session nicht mehr gültig. Bitte erneut anmelden."
|
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", msg)
|
|
|
|
}
|
|
|
|
|
2024-03-02 09:09:55 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/hub.html")
|
2024-03-10 15:03:46 +01:00
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", session.Values["role"].(int))
|
2024-03-01 11:30:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:25:20 +01:00
|
|
|
func WriteArticle(db *model.DB) http.HandlerFunc {
|
2024-03-03 13:56:49 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-06 20:53:17 +01:00
|
|
|
tags, err := db.GetTagList()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-03 13:56:49 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/editor.html")
|
2024-03-06 20:53:17 +01:00
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", tags)
|
2024-03-03 13:56:49 +01:00
|
|
|
}
|
2024-02-27 14:10:27 +01:00
|
|
|
}
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
func SubmitArticle(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
2024-02-27 14:10:27 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-03 09:16:49 +01:00
|
|
|
session, err := s.Get(r, "cookie")
|
|
|
|
if err != nil {
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/login.html")
|
|
|
|
msg := "Session nicht mehr gültig. Bitte erneut anmelden."
|
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", msg)
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
article := &model.Article{
|
|
|
|
Title: r.PostFormValue("article-title"),
|
|
|
|
Description: r.PostFormValue("article-description"),
|
|
|
|
Content: r.PostFormValue("article-content"),
|
|
|
|
Published: false,
|
|
|
|
Rejected: false,
|
|
|
|
AuthorID: session.Values["id"].(int64),
|
|
|
|
}
|
|
|
|
|
2024-03-07 15:31:00 +01:00
|
|
|
article.ID, err = db.AddArticle(article)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
r.ParseForm()
|
|
|
|
tags := make([]int64, 0)
|
|
|
|
for _, tag := range r.Form["tags"] {
|
|
|
|
tagID, err := strconv.ParseInt(tag, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
tags = append(tags, tagID)
|
|
|
|
}
|
|
|
|
if err = db.WriteArticleTags(article.ID, tags); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2024-02-27 14:10:27 +01:00
|
|
|
|
2024-03-02 09:09:55 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/hub.html")
|
2024-03-03 09:16:49 +01:00
|
|
|
tmpl = template.Must(tmpl, err)
|
|
|
|
tmpl.ExecuteTemplate(w, "page-content", session.Values["role"])
|
2024-02-27 14:10:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
func ResubmitArticle(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
id, err := strconv.ParseInt(r.PostFormValue("article-id"), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
title := r.PostFormValue("article-title")
|
|
|
|
description := r.PostFormValue("article-description")
|
|
|
|
content := r.PostFormValue("article-content")
|
|
|
|
|
|
|
|
if err := db.UpdateAttributes(
|
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "title", Value: title},
|
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "description", Value: description},
|
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "content", Value: content},
|
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "rejected", Value: false},
|
|
|
|
); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
session, err := s.Get(r, "cookie")
|
|
|
|
if err != nil {
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/login.html")
|
|
|
|
msg := "Session nicht mehr gültig. Bitte erneut anmelden."
|
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/hub.html")
|
|
|
|
tmpl = template.Must(tmpl, err)
|
|
|
|
tmpl.ExecuteTemplate(w, "page-content", session.Values["role"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:25:20 +01:00
|
|
|
func ShowUnpublishedArticles(db *model.DB) http.HandlerFunc {
|
2024-03-01 11:30:31 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-10 15:03:46 +01:00
|
|
|
unpublishedArticles, err := db.GetCertainArticles(false, false)
|
2024-03-06 20:53:17 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2024-03-10 15:03:46 +01:00
|
|
|
|
2024-03-02 09:09:55 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/unpublished-articles.html")
|
2024-03-10 15:03:46 +01:00
|
|
|
tmpl = template.Must(tmpl, err)
|
|
|
|
tmpl.ExecuteTemplate(w, "page-content", unpublishedArticles)
|
2024-03-01 11:30:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
func ShowRejectedArticles(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
rejectedArticles, err := db.GetCertainArticles(false, true)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/rejected-articles.html")
|
|
|
|
tmpl = template.Must(tmpl, err)
|
|
|
|
tmpl.ExecuteTemplate(w, "page-content", rejectedArticles)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReviewUnpublishedArticle(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
2024-03-01 11:30:31 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-17 08:46:49 +01:00
|
|
|
type htmlData struct {
|
|
|
|
Article *model.Article
|
|
|
|
Tags []*model.Tag
|
|
|
|
}
|
|
|
|
data := new(htmlData)
|
|
|
|
|
2024-03-06 20:53:17 +01:00
|
|
|
id, err := strconv.ParseInt(r.PostFormValue("id"), 10, 64)
|
2024-03-01 11:30:31 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-17 08:46:49 +01:00
|
|
|
data.Article, err = db.GetArticle(id)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
data.Tags, err = db.GetArticleTags(id)
|
2024-03-06 20:53:17 +01:00
|
|
|
if err != nil {
|
2024-03-17 08:46:49 +01:00
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
2024-03-06 20:53:17 +01:00
|
|
|
return
|
2024-03-01 11:30:31 +01:00
|
|
|
}
|
2024-03-03 09:16:49 +01:00
|
|
|
|
2024-03-07 20:11:28 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/to-be-published.html")
|
2024-03-03 09:16:49 +01:00
|
|
|
tmpl = template.Must(tmpl, err)
|
2024-03-17 08:46:49 +01:00
|
|
|
tmpl.ExecuteTemplate(w, "page-content", data)
|
2024-03-01 11:30:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
func ReviewRejectedArticle(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-17 08:46:49 +01:00
|
|
|
type htmlData struct {
|
|
|
|
Selected map[int64]bool
|
|
|
|
Article *model.Article
|
|
|
|
Tags []*model.Tag
|
|
|
|
}
|
|
|
|
data := new(htmlData)
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
id, err := strconv.ParseInt(r.PostFormValue("id"), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-17 08:46:49 +01:00
|
|
|
data.Article, err = db.GetArticle(id)
|
2024-03-10 15:03:46 +01:00
|
|
|
if err != nil {
|
2024-03-17 08:46:49 +01:00
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
2024-03-10 15:03:46 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-17 08:46:49 +01:00
|
|
|
data.Tags, err = db.GetTagList()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
selectedTags, err := db.GetArticleTags(id)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
data.Selected = make(map[int64]bool)
|
|
|
|
for _, tag := range selectedTags {
|
|
|
|
data.Selected[tag.ID] = true
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:03:46 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/rework-article.html")
|
|
|
|
tmpl = template.Must(tmpl, err)
|
2024-03-17 08:46:49 +01:00
|
|
|
tmpl.ExecuteTemplate(w, "page-content", data)
|
2024-03-10 15:03:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-09 10:25:20 +01:00
|
|
|
func PublishArticle(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
2024-02-27 14:10:27 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2024-03-06 20:53:17 +01:00
|
|
|
id, err := strconv.ParseInt(r.PostFormValue("id"), 10, 64)
|
2024-03-01 11:30:31 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-03 13:56:49 +01:00
|
|
|
session, err := s.Get(r, "cookie")
|
|
|
|
if err != nil {
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/login.html")
|
|
|
|
msg := "Session nicht mehr gültig. Bitte erneut anmelden."
|
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", msg)
|
|
|
|
}
|
|
|
|
|
2024-03-11 21:08:27 +01:00
|
|
|
if err = db.UpdateAttributes(
|
2024-03-10 15:03:46 +01:00
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "published", Value: true},
|
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "rejected", Value: false},
|
2024-03-11 21:08:27 +01:00
|
|
|
); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2024-03-10 15:03:46 +01:00
|
|
|
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/hub.html")
|
|
|
|
tmpl = template.Must(tmpl, err)
|
|
|
|
tmpl.ExecuteTemplate(w, "page-content", session.Values["role"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func RejectArticle(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
id, err := strconv.ParseInt(r.PostFormValue("id"), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
session, err := s.Get(r, "cookie")
|
|
|
|
if err != nil {
|
|
|
|
tmpl, err := template.ParseFiles("web/templates/login.html")
|
|
|
|
msg := "Session nicht mehr gültig. Bitte erneut anmelden."
|
|
|
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", msg)
|
|
|
|
}
|
|
|
|
|
2024-03-11 21:08:27 +01:00
|
|
|
if err = db.UpdateAttributes(
|
2024-03-10 15:03:46 +01:00
|
|
|
&model.Attribute{Table: "articles", ID: id, AttName: "rejected", Value: true},
|
2024-03-11 21:08:27 +01:00
|
|
|
); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2024-02-27 14:10:27 +01:00
|
|
|
|
2024-03-02 09:09:55 +01:00
|
|
|
tmpl, err := template.ParseFiles("web/templates/hub.html")
|
2024-03-03 09:16:49 +01:00
|
|
|
tmpl = template.Must(tmpl, err)
|
|
|
|
tmpl.ExecuteTemplate(w, "page-content", session.Values["role"])
|
2024-02-27 14:10:27 +01:00
|
|
|
}
|
|
|
|
}
|