cpolis/cmd/main.go

99 lines
4.5 KiB
Go
Raw Normal View History

2024-02-18 07:20:51 +01:00
package main
import (
2024-03-03 09:16:49 +01:00
"encoding/gob"
"log"
"net/http"
2024-02-24 11:41:01 +01:00
"os"
b "streifling.com/jason/cpolis/cmd/backend"
c "streifling.com/jason/cpolis/cmd/calls"
f "streifling.com/jason/cpolis/cmd/frontend"
)
2024-02-18 07:20:51 +01:00
2024-03-03 09:16:49 +01:00
func init() {
gob.Register(b.User{})
2024-03-03 09:16:49 +01:00
}
2024-02-18 07:20:51 +01:00
func main() {
config, err := b.HandleConfig()
if err != nil {
log.Fatalln(err)
}
logFile, err := os.OpenFile(config.LogFile, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
2024-02-24 11:41:01 +01:00
if err != nil {
log.Fatalln(err)
}
defer logFile.Close()
log.SetOutput(logFile)
2024-02-24 11:41:01 +01:00
db, err := b.OpenDB(config.DBName)
if err != nil {
log.Fatalln(err)
}
2024-02-22 19:27:41 +01:00
defer db.Close()
key, err := b.LoadKey(config.GOBKeyFile)
2024-03-03 09:16:49 +01:00
if err != nil {
key, err = b.NewKey()
2024-03-03 09:16:49 +01:00
if err != nil {
log.Fatalln(err)
}
if err = b.SaveKey(key, config.GOBKeyFile); err != nil {
2024-10-27 07:20:23 +01:00
log.Fatalln(err)
}
2024-03-03 09:16:49 +01:00
}
store := b.NewCookieStore(key)
2024-03-03 09:16:49 +01:00
mux := http.NewServeMux()
mux.Handle("/web/static/", http.StripPrefix("/web/static/",
http.FileServer(http.Dir(config.WebDir+"/static/"))))
mux.HandleFunc("/", f.HomePage(config, db, store))
2024-09-28 12:17:03 +02:00
mux.HandleFunc("GET /article/allow-edit/{id}", f.AllowEditArticle(config, db, store))
mux.HandleFunc("GET /article/all-published/review-edit", f.ShowPublishedArticles(config, db, store, "review-edit"))
mux.HandleFunc("GET /article/all-published/delete", f.ShowPublishedArticles(config, db, store, "review-delete"))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("GET /article/all-rejected", f.ShowRejectedArticles(config, db, store))
2024-09-28 12:17:03 +02:00
mux.HandleFunc("GET /article/all-unpublished-unrejected-and-published-rejected", f.ShowUnpublishedUnrejectedAndPublishedRejectedArticles(config, db, store))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("GET /article/delete/{id}", f.DeleteArticle(config, db, store))
2024-09-28 12:17:03 +02:00
mux.HandleFunc("GET /article/edit/{id}", f.EditArticle(config, db, store))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("GET /article/publish/{id}", f.PublishArticle(config, db, store))
mux.HandleFunc("GET /article/reject/{id}", f.RejectArticle(config, db, store))
2024-09-28 12:17:03 +02:00
mux.HandleFunc("GET /article/review-delete/{id}", f.ReviewArticle(config, db, store, "delete", "Artikel löschen", "Löschen"))
mux.HandleFunc("GET /article/review-edit/{id}", f.ReviewArticle(config, db, store, "allow-edit", "Artikel bearbeiten", "Bearbeiten erlauben"))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("GET /article/review-rejected/{id}", f.ReviewRejectedArticle(config, db, store))
2024-09-28 12:17:03 +02:00
mux.HandleFunc("GET /article/review-unpublished/{id}", f.ReviewArticle(config, db, store, "publish", "Artikel veröffentlichen", "Veröffentlichen"))
mux.HandleFunc("GET /article/serve/{id}", c.ServeArticle(config, db))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("GET /article/write", f.WriteArticle(config, db, store))
mux.HandleFunc("GET /hub", f.ShowHub(config, db, store))
2024-08-30 16:06:19 +02:00
mux.HandleFunc("GET /image/serve/{pic}", c.ServeImage(config, store))
2024-10-27 07:21:36 +01:00
mux.HandleFunc("GET /issue/this", f.ShowCurrentIssue(config, db, store))
mux.HandleFunc("GET /logout", f.Logout(config, store))
mux.HandleFunc("GET /pdf/get-list", c.ServePDFList(config))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("GET /pdf/serve/{id}", c.ServePDF(config))
mux.HandleFunc("GET /tag/create", f.CreateTag(config, store))
mux.HandleFunc("GET /user/create", f.CreateUser(config, store))
mux.HandleFunc("GET /user/delete/{id}", f.DeleteUser(config, db, store))
mux.HandleFunc("GET /user/edit/{id}", f.EditUser(config, db, store))
mux.HandleFunc("GET /user/edit/self", f.EditSelf(config, db, store))
2024-08-30 15:58:09 +02:00
mux.HandleFunc("GET /user/show-all/delete", f.ShowAllUsers(config, db, store, "delete"))
mux.HandleFunc("GET /user/show-all/edit", f.ShowAllUsers(config, db, store, "edit"))
2024-03-01 11:30:31 +01:00
2024-08-30 15:42:53 +02:00
mux.HandleFunc("POST /article/resubmit/{id}", f.ResubmitArticle(config, db, store))
mux.HandleFunc("POST /article/submit", f.SubmitArticle(config, db, store))
2024-10-27 07:21:36 +01:00
mux.HandleFunc("POST /article/upload-banner", f.UploadBanner(config, store, "article-banner", "editor.html", "article-banner-template"))
mux.HandleFunc("POST /article/upload-image", f.UploadImage(config, store))
mux.HandleFunc("POST /issue/publish", f.PublishLatestIssue(config, db, store))
2024-10-27 07:21:36 +01:00
mux.HandleFunc("POST /issue/upload-banner", f.UploadBanner(config, store, "issue-banner", "current-issue.html", "issue-banner-template"))
mux.HandleFunc("POST /login", f.Login(config, db, store))
2024-09-01 18:16:26 +02:00
mux.HandleFunc("POST /pdf/upload", f.UploadPDF(config, store))
2024-08-30 15:42:53 +02:00
mux.HandleFunc("POST /tag/add", f.AddTag(config, db, store))
mux.HandleFunc("POST /user/add", f.AddUser(config, db, store))
mux.HandleFunc("POST /user/add-first", f.AddFirstUser(config, db, store))
mux.HandleFunc("POST /user/update/{id}", f.UpdateUser(config, db, store))
mux.HandleFunc("POST /user/update/self", f.UpdateSelf(config, db, store))
log.Fatalln(http.ListenAndServe(config.Port, mux))
2024-02-18 07:20:51 +01:00
}