Noah Petherbridge
a663462e27
Adds initial code for basically functional forums: * Forums landing page shows hard-coded list of Categories along with any forums in the DB that use those categories. * Admin: Create, Edit forums and view forums you own or have admin rights to modify. * Landing page forums list shows the title/description and dynamic count of number of Topics and total number of Posts in each forum. TODO: distinct count of Users who posted in each forum. * Board Index page shows list of Threads (posts) with a Replies count and Views count on each thread. * Thread view is basically an array of Comments. Users can post, edit and delete (their own) comments. Deleting the first comment removes the entire Thread - the thread points to a first Comment to provide its body. * Reply and Quote-Reply options working.
86 lines
3.9 KiB
Go
86 lines
3.9 KiB
Go
// Package router configures web routes.
|
|
package router
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"git.kirsle.net/apps/gosocial/pkg/config"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/account"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/admin"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/api"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/block"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/forum"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/friend"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/inbox"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/index"
|
|
"git.kirsle.net/apps/gosocial/pkg/controller/photo"
|
|
"git.kirsle.net/apps/gosocial/pkg/middleware"
|
|
)
|
|
|
|
func New() http.Handler {
|
|
mux := http.NewServeMux()
|
|
|
|
// Register controller endpoints.
|
|
mux.HandleFunc("/", index.Create())
|
|
mux.HandleFunc("/favicon.ico", index.Favicon())
|
|
mux.HandleFunc("/about", index.About())
|
|
mux.HandleFunc("/faq", index.FAQ())
|
|
mux.HandleFunc("/tos", index.TOS())
|
|
mux.HandleFunc("/privacy", index.Privacy())
|
|
mux.HandleFunc("/contact", index.Contact())
|
|
mux.HandleFunc("/login", account.Login())
|
|
mux.HandleFunc("/logout", account.Logout())
|
|
mux.HandleFunc("/signup", account.Signup())
|
|
mux.HandleFunc("/forgot-password", account.ForgotPassword())
|
|
mux.HandleFunc("/settings/confirm-email", account.ConfirmEmailChange())
|
|
|
|
// Login Required. Pages that non-certified users can access.
|
|
mux.Handle("/me", middleware.LoginRequired(account.Dashboard()))
|
|
mux.Handle("/settings", middleware.LoginRequired(account.Settings()))
|
|
mux.Handle("/account/delete", middleware.LoginRequired(account.Delete()))
|
|
mux.Handle("/u/", middleware.LoginRequired(account.Profile()))
|
|
mux.Handle("/photo/upload", middleware.LoginRequired(photo.Upload()))
|
|
mux.Handle("/photo/u/", middleware.LoginRequired(photo.UserPhotos()))
|
|
mux.Handle("/photo/edit", middleware.LoginRequired(photo.Edit()))
|
|
mux.Handle("/photo/delete", middleware.LoginRequired(photo.Delete()))
|
|
mux.Handle("/photo/certification", middleware.LoginRequired(photo.Certification()))
|
|
mux.Handle("/messages", middleware.LoginRequired(inbox.Inbox()))
|
|
mux.Handle("/messages/read/", middleware.LoginRequired(inbox.Inbox()))
|
|
mux.Handle("/messages/compose", middleware.LoginRequired(inbox.Compose()))
|
|
mux.Handle("/friends", middleware.LoginRequired(friend.Friends()))
|
|
mux.Handle("/friends/add", middleware.LoginRequired(friend.AddFriend()))
|
|
mux.Handle("/users/block", middleware.LoginRequired(block.BlockUser()))
|
|
mux.Handle("/users/blocked", middleware.LoginRequired(block.Blocked()))
|
|
mux.Handle("/admin/unimpersonate", middleware.LoginRequired(admin.Unimpersonate()))
|
|
|
|
// Certification Required. Pages that only full (verified) members can access.
|
|
mux.Handle("/photo/gallery", middleware.CertRequired(photo.SiteGallery()))
|
|
mux.Handle("/members", middleware.CertRequired(account.Search()))
|
|
mux.Handle("/forum", middleware.CertRequired(forum.Landing()))
|
|
mux.Handle("/forum/post", middleware.CertRequired(forum.NewPost()))
|
|
mux.Handle("/forum/thread/", middleware.CertRequired(forum.Thread()))
|
|
mux.Handle("/f/", middleware.CertRequired(forum.Forum()))
|
|
|
|
// Admin endpoints.
|
|
mux.Handle("/admin", middleware.AdminRequired(admin.Dashboard()))
|
|
mux.Handle("/admin/photo/certification", middleware.AdminRequired(photo.AdminCertification()))
|
|
mux.Handle("/admin/feedback", middleware.AdminRequired(admin.Feedback()))
|
|
mux.Handle("/admin/user-action", middleware.AdminRequired(admin.UserActions()))
|
|
mux.Handle("/forum/admin", middleware.AdminRequired(forum.Manage()))
|
|
mux.Handle("/forum/admin/edit", middleware.AdminRequired(forum.AddEdit()))
|
|
|
|
// JSON API endpoints.
|
|
mux.HandleFunc("/v1/version", api.Version())
|
|
mux.HandleFunc("/v1/users/me", api.LoginOK())
|
|
|
|
// Static files.
|
|
mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(config.StaticPath))))
|
|
|
|
// Global middlewares.
|
|
withSession := middleware.Session(mux)
|
|
withCSRF := middleware.CSRF(withSession)
|
|
withRecovery := middleware.Recovery(withCSRF)
|
|
withLogger := middleware.Logging(withRecovery)
|
|
return withLogger
|
|
}
|