Noah Petherbridge
bb08ec56ce
Finish implementing the basic forum features: * Pinned threads (admin or board owner only) * Edit Thread settings when you edit the top-most comment. * NoReply threads remove all the reply buttons. * Explicit forums and threads are filtered out unless opted-in (admins always see them). * Count the unique members who participated in each forum. * Get the most recently updated thread to show on forum list page. * Contact/Report page: handle receiving a comment ID to report on. Implement Likes & Notifications * Like buttons added to Photos and Profile Pages. Implemented via simple vanilla JS (likes.js) to make ajax requests to back-end to like/unlike. * Notifications: for your photo or profile being liked. If you unlike, the existing notifications about the like are revoked. * The notifications appear as an alert number in the nav bar and are read on the User Dashboard. Click to mark a notification as "read" or click the "mark all as read" button. Update DeleteUser to scrub likes, notifications, threads, and comments.
88 lines
4.1 KiB
Go
88 lines
4.1 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())
|
|
mux.Handle("/v1/likes", middleware.LoginRequired(api.Likes()))
|
|
mux.Handle("/v1/notifications/read", middleware.LoginRequired(api.ReadNotification()))
|
|
|
|
// 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
|
|
}
|