9570129bba
* Add "Browse" tab to the forums to view them all. * Text search * Show all, official, community, or "My List" forums. * Add a Follow/Unfollow button into the header bar of forums to add it to "My List" * On the Categories page, a special "My List" category appears at the top if the user follows categories, with their follows in alphabetical order. * On the Categories & Browse pages: forums you follow will have a green bookmark icon by their name. Permissions: * The forum owner is able to Delete comments by others, but not Edit. Notes: * Currently a max limit of 100 follow forums (no pagination yet).
83 lines
2.2 KiB
Go
83 lines
2.2 KiB
Go
package forum
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"regexp"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/config"
|
|
"code.nonshy.com/nonshy/website/pkg/models"
|
|
"code.nonshy.com/nonshy/website/pkg/session"
|
|
"code.nonshy.com/nonshy/website/pkg/templates"
|
|
)
|
|
|
|
// Regular expressions
|
|
var (
|
|
FragmentPattern = `[a-z0-9._-]{1,30}`
|
|
FragmentRegexp = regexp.MustCompile(
|
|
fmt.Sprintf(`^(%s)$`, FragmentPattern),
|
|
)
|
|
)
|
|
|
|
// Landing page for forums.
|
|
func Landing() http.HandlerFunc {
|
|
tmpl := templates.Must("forum/index.html")
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
// 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
|
|
}
|
|
|
|
// Get all the categorized index forums.
|
|
// XXX: we get a large page size to get ALL official forums
|
|
var pager = &models.Pagination{
|
|
Page: 1,
|
|
PerPage: config.PageSizeForums,
|
|
Sort: "title asc",
|
|
}
|
|
pager.ParsePage(r)
|
|
|
|
forums, err := models.PaginateForums(currentUser, config.ForumCategories, nil, false, pager)
|
|
if err != nil {
|
|
session.FlashError(w, r, "Couldn't paginate forums: %s", err)
|
|
templates.Redirect(w, "/")
|
|
return
|
|
}
|
|
|
|
// Bucket the forums into their categories for easy front-end.
|
|
categorized := models.CategorizeForums(forums, config.ForumCategories)
|
|
|
|
// Inject the "My List" Category if the user subscribes to forums.
|
|
myList, err := models.PaginateForums(currentUser, nil, nil, true, pager)
|
|
if err != nil {
|
|
session.FlashError(w, r, "Couldn't get your followed forums: %s", err)
|
|
} else {
|
|
forums = append(forums, myList...)
|
|
categorized = append([]*models.CategorizedForum{
|
|
{
|
|
Category: "My List",
|
|
Forums: myList,
|
|
},
|
|
}, categorized...)
|
|
}
|
|
|
|
// Map statistics for these forums.
|
|
forumMap := models.MapForumStatistics(forums)
|
|
followMap := models.MapForumMemberships(currentUser, forums)
|
|
|
|
var vars = map[string]interface{}{
|
|
"Pager": pager,
|
|
"Categories": categorized,
|
|
"ForumMap": forumMap,
|
|
"FollowMap": followMap,
|
|
}
|
|
if err := tmpl.Execute(w, r, vars); err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
})
|
|
}
|