d9acf27c5b
Added AJAX Pagination for the Topic List and Forum Page. A new log file pair is now created every-time Gosora starts up. Added proper per-theme template overrides. Added EasyJSON to make JSON serialisation faster. Moved a bit of boilerplate into paginator.html Improved paginator.html with a richer template with first, last and symbols instead of text. Phased out direct access to Templates.ExecuteTemplate across the software. Fixed the Live Topic List so it should work again. Added MicroAvatar to WsJSONUser for topic list JSON requests. An instance of the plugin is now passed to plugin handlers rather than having the plugins manipulate the globals directly. Added the pre_render_panel_forum_edit and pre_render_panel_forum_edit_perms hooks to replace pre_render_panel_edit_forum. Renamed the pre_render_panel_edit_user hook to pre_render_panel_user_edit Reduced the amount of noise from fsnotify. Added RawPrepare() to qgen.Accumulator. Added a temporary phrase whitelist to the phrase endpoint. Moved the location of the zone data assignments in the topic list to reduce the chances of security issues in the future. Changed the signature of routes/panel/renderTemplate() requiring some changes across the panel routes. Removed bits of boilerplate in some of the panel routes with renderTemplate() Added a BenchmarkTopicsGuestJSRouteParallelWithRouter benchmark. Removed a fair bit of boilerplate for each page struct by generating a couple of interface casts for each template file instead. Added the profile_comments_row_alt template. Added the topics_quick_topic template to reuse part of the quick topic logic for both the topic list and forum page. Tweaked the CSS for the Online Users Widget. Tweaked the CSS for Widgets in every theme with a sidebar. Refactored the template initialisers to hopefully reduce the amount of boilerplate and make things easier to maintain and follow. Add genIntTmpl in the template initialiser file to reduce the amount of boilerplate needed for the fallback template bindings. Removed the topics_head phrase. Moved the paginator_ phrases into the paginator. namespace and renamed them accordingly. Added the paginator.first_page phrase. Added the paginator.first_page_aria phrase. Added the paginator.last_page phrase. Added the paginator.last_page_aria phrase. Added the panel_forum_delete_are_you_sure phrase. Fixed a data race in LogWarning()
131 lines
5.9 KiB
Go
131 lines
5.9 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/Azareal/Gosora/common"
|
|
"github.com/Azareal/Gosora/extend/guilds/lib"
|
|
)
|
|
|
|
// TODO: Add a better way of splitting up giant plugins like this
|
|
|
|
// TODO: Add a plugin interface instead of having a bunch of argument to AddPlugin?
|
|
func init() {
|
|
common.Plugins.Add(&common.Plugin{UName: "guilds", Name: "Guilds", Author: "Azareal", URL: "https://github.com/Azareal", Init: initGuilds, Deactivate: deactivateGuilds, Install: installGuilds})
|
|
|
|
// TODO: Is it possible to avoid doing this when the plugin isn't activated?
|
|
common.PrebuildTmplList = append(common.PrebuildTmplList, guilds.PrebuildTmplList)
|
|
}
|
|
|
|
func initGuilds(plugin *common.Plugin) (err error) {
|
|
plugin.AddHook("intercept_build_widgets", guilds.Widgets)
|
|
plugin.AddHook("trow_assign", guilds.TrowAssign)
|
|
plugin.AddHook("topic_create_pre_loop", guilds.TopicCreatePreLoop)
|
|
plugin.AddHook("pre_render_forum", guilds.PreRenderViewForum)
|
|
plugin.AddHook("simple_forum_check_pre_perms", guilds.ForumCheck)
|
|
plugin.AddHook("forum_check_pre_perms", guilds.ForumCheck)
|
|
// TODO: Auto-grant this perm to admins upon installation?
|
|
common.RegisterPluginPerm("CreateGuild")
|
|
router.HandleFunc("/guilds/", guilds.RouteGuildList)
|
|
router.HandleFunc("/guild/", guilds.MiddleViewGuild)
|
|
router.HandleFunc("/guild/create/", guilds.RouteCreateGuild)
|
|
router.HandleFunc("/guild/create/submit/", guilds.RouteCreateGuildSubmit)
|
|
router.HandleFunc("/guild/members/", guilds.RouteMemberList)
|
|
|
|
guilds.Gstore, err = guilds.NewSQLGuildStore()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
acc := qgen.NewAcc()
|
|
|
|
guilds.ListStmt = acc.Select("guilds").Columns("guildID, name, desc, active, privacy, joinable, owner, memberCount, createdAt, lastUpdateTime").Prepare()
|
|
|
|
guilds.MemberListStmt = acc.Select("guilds_members").Columns("guildID, uid, rank, posts, joinedAt").Prepare()
|
|
|
|
guilds.MemberListJoinStmt = acc.SimpleLeftJoin("guilds_members", "users", "users.uid, guilds_members.rank, guilds_members.posts, guilds_members.joinedAt, users.name, users.avatar", "guilds_members.uid = users.uid", "guilds_members.guildID = ?", "guilds_members.rank DESC, guilds_members.joinedat ASC", "")
|
|
|
|
guilds.GetMemberStmt = acc.Select("guilds_members").Columns("rank, posts, joinedAt").Where("guildID = ? AND uid = ?").Prepare()
|
|
|
|
guilds.AttachForumStmt = acc.Update("forums").Set("parentID = ?, parentType = 'guild'").Where("fid = ?").Prepare()
|
|
|
|
guilds.UnattachForumStmt = acc.Update("forums").Set("parentID = 0, parentType = ''").Where("fid = ?").Prepare()
|
|
|
|
guilds.AddMemberStmt = acc.Insert("guilds_members").Columns("guildID, uid, rank, posts, joinedAt").Fields("?,?,?,0,UTC_TIMESTAMP()").Prepare()
|
|
|
|
return acc.FirstError()
|
|
}
|
|
|
|
func deactivateGuilds(plugin *common.Plugin) {
|
|
plugin.RemoveHook("intercept_build_widgets", guilds.Widgets)
|
|
plugin.RemoveHook("trow_assign", guilds.TrowAssign)
|
|
plugin.RemoveHook("topic_create_pre_loop", guilds.TopicCreatePreLoop)
|
|
plugin.RemoveHook("pre_render_forum", guilds.PreRenderViewForum)
|
|
plugin.RemoveHook("simple_forum_check_pre_perms", guilds.ForumCheck)
|
|
plugin.RemoveHook("forum_check_pre_perms", guilds.ForumCheck)
|
|
common.DeregisterPluginPerm("CreateGuild")
|
|
_ = router.RemoveFunc("/guilds/")
|
|
_ = router.RemoveFunc("/guild/")
|
|
_ = router.RemoveFunc("/guild/create/")
|
|
_ = router.RemoveFunc("/guild/create/submit/")
|
|
_ = guilds.ListStmt.Close()
|
|
_ = guilds.MemberListStmt.Close()
|
|
_ = guilds.MemberListJoinStmt.Close()
|
|
_ = guilds.GetMemberStmt.Close()
|
|
_ = guilds.AttachForumStmt.Close()
|
|
_ = guilds.UnattachForumStmt.Close()
|
|
_ = guilds.AddMemberStmt.Close()
|
|
}
|
|
|
|
// TODO: Stop accessing the query builder directly and add a feature in Gosora which is more easily reversed, if an error comes up during the installation process
|
|
func installGuilds(plugin *common.Plugin) error {
|
|
guildTableStmt, err := qgen.Builder.CreateTable("guilds", "utf8mb4", "utf8mb4_general_ci",
|
|
[]qgen.DBTableColumn{
|
|
qgen.DBTableColumn{"guildID", "int", 0, false, true, ""},
|
|
qgen.DBTableColumn{"name", "varchar", 100, false, false, ""},
|
|
qgen.DBTableColumn{"desc", "varchar", 200, false, false, ""},
|
|
qgen.DBTableColumn{"active", "boolean", 1, false, false, ""},
|
|
qgen.DBTableColumn{"privacy", "smallint", 0, false, false, ""},
|
|
qgen.DBTableColumn{"joinable", "smallint", 0, false, false, "0"},
|
|
qgen.DBTableColumn{"owner", "int", 0, false, false, ""},
|
|
qgen.DBTableColumn{"memberCount", "int", 0, false, false, ""},
|
|
qgen.DBTableColumn{"mainForum", "int", 0, false, false, "0"}, // The board the user lands on when they click on a group, we'll make it possible for group admins to change what users land on
|
|
//qgen.DBTableColumn{"boards","varchar",255,false,false,""}, // Cap the max number of boards at 8 to avoid overflowing the confines of a 64-bit integer?
|
|
qgen.DBTableColumn{"backdrop", "varchar", 200, false, false, ""}, // File extension for the uploaded file, or an external link
|
|
qgen.DBTableColumn{"createdAt", "createdAt", 0, false, false, ""},
|
|
qgen.DBTableColumn{"lastUpdateTime", "datetime", 0, false, false, ""},
|
|
},
|
|
[]qgen.DBTableKey{
|
|
qgen.DBTableKey{"guildID", "primary"},
|
|
},
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = guildTableStmt.Exec()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
guildMembersTableStmt, err := qgen.Builder.CreateTable("guilds_members", "", "",
|
|
[]qgen.DBTableColumn{
|
|
qgen.DBTableColumn{"guildID", "int", 0, false, false, ""},
|
|
qgen.DBTableColumn{"uid", "int", 0, false, false, ""},
|
|
qgen.DBTableColumn{"rank", "int", 0, false, false, "0"}, /* 0: Member. 1: Mod. 2: Admin. */
|
|
qgen.DBTableColumn{"posts", "int", 0, false, false, "0"}, /* Per-Group post count. Should we do some sort of score system? */
|
|
qgen.DBTableColumn{"joinedAt", "datetime", 0, false, false, ""},
|
|
},
|
|
[]qgen.DBTableKey{},
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = guildMembersTableStmt.Exec()
|
|
return err
|
|
}
|
|
|
|
// TO-DO; Implement an uninstallation system into Gosora. And a better installation system.
|
|
func uninstallGuilds(plugin *common.Plugin) error {
|
|
return nil
|
|
}
|