cpolis/cmd/main.go

87 lines
3.3 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"
2024-03-09 10:27:04 +01:00
"streifling.com/jason/cpolis/cmd/control"
"streifling.com/jason/cpolis/cmd/model"
"streifling.com/jason/cpolis/cmd/view"
)
2024-02-18 07:20:51 +01:00
2024-03-03 09:16:49 +01:00
func init() {
2024-03-09 10:27:04 +01:00
gob.Register(model.User{})
2024-03-03 09:16:49 +01:00
}
2024-02-18 07:20:51 +01:00
func main() {
config, err := control.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 := model.OpenDB(config.DBName)
if err != nil {
log.Fatalln(err)
}
2024-02-22 19:27:41 +01:00
defer db.Close()
key, err := control.LoadKey(config.KeyFile)
2024-03-03 09:16:49 +01:00
if err != nil {
2024-03-09 10:27:04 +01:00
key, err = control.NewKey()
2024-03-03 09:16:49 +01:00
if err != nil {
log.Fatalln(err)
}
control.SaveKey(key, config.KeyFile)
2024-03-03 09:16:49 +01:00
}
2024-03-09 10:27:04 +01:00
store := control.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("/", view.HomePage(config, db, store))
mux.HandleFunc("GET /create-tag", view.CreateTag(config))
mux.HandleFunc("GET /create-user", view.CreateUser(config))
mux.HandleFunc("GET /edit-self", view.EditSelf(config, db, store))
mux.HandleFunc("GET /edit-user/{id}", view.EditUser(config, db))
2024-04-12 08:46:34 +02:00
mux.HandleFunc("GET /delete-user/{id}", view.DeleteUser(config, db, store))
mux.HandleFunc("GET /hub", view.ShowHub(config, db, store))
mux.HandleFunc("GET /logout", view.Logout(config, store))
mux.HandleFunc("GET /pics/{pic}", view.ServeImage(config, store))
mux.HandleFunc("GET /publish-article/{id}", view.PublishArticle(config, db, store))
mux.HandleFunc("GET /publish-issue", view.PublishLatestIssue(config, db, store))
mux.HandleFunc("GET /reject-article/{id}", view.RejectArticle(config, db, store))
mux.HandleFunc("GET /rejected-articles", view.ShowRejectedArticles(config, db, store))
mux.HandleFunc("GET /review-rejected-article/{id}", view.ReviewRejectedArticle(config, db, store))
mux.HandleFunc("GET /review-unpublished-article/{id}", view.ReviewUnpublishedArticle(config, db, store))
2024-04-07 10:58:07 +02:00
mux.HandleFunc("GET /rss", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, config.RSSFile)
2024-04-07 10:58:07 +02:00
})
2024-04-12 08:46:34 +02:00
mux.HandleFunc("GET /show-all-users-edit", view.ShowAllUsers(config, db, store, "edit-user"))
mux.HandleFunc("GET /show-all-users-delete", view.ShowAllUsers(config, db, store, "delete-user"))
mux.HandleFunc("GET /this-issue", view.ShowCurrentArticles(config, db))
mux.HandleFunc("GET /unpublished-articles", view.ShowUnpublishedArticles(config, db))
mux.HandleFunc("GET /write-article", view.WriteArticle(config, db))
2024-03-01 11:30:31 +01:00
mux.HandleFunc("POST /add-first-user", view.AddFirstUser(config, db, store))
mux.HandleFunc("POST /add-tag", view.AddTag(config, db, store))
mux.HandleFunc("POST /add-user", view.AddUser(config, db, store))
mux.HandleFunc("POST /login", view.Login(config, db, store))
mux.HandleFunc("POST /resubmit-article/{id}", view.ResubmitArticle(config, db, store))
mux.HandleFunc("POST /submit-article", view.SubmitArticle(config, db, store))
mux.HandleFunc("POST /update-self", view.UpdateSelf(config, db, store))
mux.HandleFunc("POST /update-user/{id}", view.UpdateUser(config, db, store))
mux.HandleFunc("POST /upload-image", view.UploadImage(config))
log.Fatalln(http.ListenAndServe(config.Port, mux))
2024-02-18 07:20:51 +01:00
}