28d1e284ab
* The "Newest" tab of the forum is updated with new filter options. * Which forums: All, Official, Community, My List * Show: By threads, All posts * The option for "Which forums" is saved in the user's preferences and set as their default on future visits, similar to the Site Gallery "Whose photos" option. * So users can subscribe to their favorite forums and always get their latest posts easily while filtering out the rest. * Forum Moderators * Add the ability to add and remove moderators for your forum. * Users are notified when they are added as a moderator. * Moderators can opt themselves out by unfollowing the forum. * ForumMembership: add unique constraint on user_id,forum_id.
96 lines
2.5 KiB
Go
96 lines
2.5 KiB
Go
package forum
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/config"
|
|
"code.nonshy.com/nonshy/website/pkg/log"
|
|
"code.nonshy.com/nonshy/website/pkg/models"
|
|
"code.nonshy.com/nonshy/website/pkg/session"
|
|
"code.nonshy.com/nonshy/website/pkg/templates"
|
|
)
|
|
|
|
// Newest posts across all of the (official) forums.
|
|
func Newest() http.HandlerFunc {
|
|
tmpl := templates.Must("forum/newest.html")
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
// Query parameters.
|
|
var (
|
|
allComments = r.FormValue("all") == "true"
|
|
whichForums = r.FormValue("which")
|
|
categories = []string{}
|
|
subscribed bool
|
|
)
|
|
|
|
// Get the current user.
|
|
currentUser, err := session.CurrentUser(r)
|
|
if err != nil {
|
|
session.FlashError(w, r, "Couldn't get current user: %s", err)
|
|
templates.Redirect(w, "/")
|
|
return
|
|
}
|
|
|
|
// Recall the user's default "Which forum:" answer if not selected.
|
|
if whichForums == "" {
|
|
whichForums = currentUser.GetProfileField("forum_newest_default")
|
|
if whichForums == "" {
|
|
whichForums = "official"
|
|
}
|
|
}
|
|
|
|
// Narrow down to which set of forums?
|
|
switch whichForums {
|
|
case "official":
|
|
categories = config.ForumCategories
|
|
case "community":
|
|
categories = []string{""}
|
|
case "followed":
|
|
subscribed = true
|
|
default:
|
|
whichForums = "all"
|
|
}
|
|
|
|
// Store their "Which forums" filter to be their new default view.
|
|
currentUser.SetProfileField("forum_newest_default", whichForums)
|
|
|
|
// Get all the categorized index forums.
|
|
var pager = &models.Pagination{
|
|
Page: 1,
|
|
PerPage: config.PageSizeThreadList,
|
|
}
|
|
pager.ParsePage(r)
|
|
|
|
posts, err := models.PaginateRecentPosts(currentUser, categories, subscribed, allComments, pager)
|
|
if err != nil {
|
|
session.FlashError(w, r, "Couldn't paginate forums: %s", err)
|
|
templates.Redirect(w, "/")
|
|
return
|
|
}
|
|
|
|
// Get any photo attachments for these comments.
|
|
var comments = []*models.Comment{}
|
|
for _, post := range posts {
|
|
comments = append(comments, post.Comment, &post.Thread.Comment)
|
|
}
|
|
photos, err := models.MapCommentPhotos(comments)
|
|
if err != nil {
|
|
log.Error("Couldn't MapCommentPhotos: %s", err)
|
|
}
|
|
|
|
var vars = map[string]interface{}{
|
|
"CurrentForumTab": "newest",
|
|
"Pager": pager,
|
|
"RecentPosts": posts,
|
|
"PhotoMap": photos,
|
|
|
|
// Filter options.
|
|
"WhichForums": whichForums,
|
|
"AllComments": allComments,
|
|
}
|
|
if err := tmpl.Execute(w, r, vars); err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
})
|
|
}
|