package http import ( "net/http" "strings" "time" "git.arav.top/Arav/dwelling-home/pkg/mindflow" "git.arav.top/Arav/dwelling-home/pkg/servicestat" "git.arav.top/Arav/dwelling-home/pkg/util" "git.arav.top/Arav/dwelling-home/web" gbsqlite "git.arav.top/Arav/justguestbook/database/sqlite" ) type Handlers struct { guestbookDB *gbsqlite.SQLiteDatabase captchaExpire time.Duration databasesPath string guestbookOwner string guestbookPageSize int64 } func NewHandlers(captchaExpire time.Duration, dbPath, gbOwner string, gbPageSize int64) *Handlers { gbdb, err := gbsqlite.New(dbPath + "/guestbook.sqlite") if err != nil { panic(err) } return &Handlers{ guestbookDB: gbdb, captchaExpire: captchaExpire, guestbookOwner: gbOwner, guestbookPageSize: gbPageSize} } func (h *Handlers) CloseDB() { h.guestbookDB.Close() } func (h *Handlers) AssetsFS() http.FileSystem { return web.Assets() } func (h *Handlers) Index(w http.ResponseWriter, r *http.Request) { web.Index("", w) } func (h *Handlers) Stuff(w http.ResponseWriter, r *http.Request) { web.Stuff("/ Stuff", util.GetServiceByHost(r.Host, util.ServiceGit), util.GetServiceByHost(r.Host, util.ServiceFiles), w) } func (h *Handlers) Mindflow(w http.ResponseWriter, r *http.Request) { posts := []mindflow.Post{ {Category: "Kek", Date: time.Now(), Title: "LMAO", Body: "Testing!"}, } web.Mindflow("/ Mindflow", posts, r, w) } func (h *Handlers) About(w http.ResponseWriter, r *http.Request) { var lst servicestat.ServiceList = make(servicestat.ServiceList) reimu, err := servicestat.GatherStatus("http://reimu.arav.home.arpa:14882/processes") if err == nil { for k, v := range reimu { lst[k] = v } } sakuya, err := servicestat.GatherStatus("http://sakuya.arav.home.arpa:14882/processes") if err == nil { for k, v := range sakuya { lst[k] = v } } web.About("/ About", util.GetServiceByHost(r.Host, util.ServiceFiles), lst, w) } func (h *Handlers) Article(w http.ResponseWriter, r *http.Request) { name := r.URL.Path[strings.LastIndex(r.URL.Path, "/")+1:] artcl, err := web.GetArticle(name) if err != nil { http.Error(w, err.Error(), http.StatusNotFound) return } web.Article(artcl.Title, artcl.Description, string(artcl.Body), artcl.Date, r.Host, name, r, w) } func (h *Handlers) RSS(w http.ResponseWriter, r *http.Request) { posts := []mindflow.Post{ {Category: "Kek", Date: time.Now(), Title: "LMAO", Body: "Testing!"}, } web.RSS(r.URL.Scheme+"://"+r.Host, "Arav", posts, r, w) } func (h *Handlers) Robots(w http.ResponseWriter, r *http.Request) { data, _ := web.AssetsGetFile("robots.txt") w.Write(data) } func (h *Handlers) NotFound(w http.ResponseWriter, r *http.Request) { web.NotFound("Not Found", w) }