2017-11-10 03:33:11 +00:00
|
|
|
package common
|
2017-03-27 07:09:28 +00:00
|
|
|
|
2017-09-25 00:48:35 +00:00
|
|
|
import (
|
2022-02-21 03:53:13 +00:00
|
|
|
//"log"
|
|
|
|
"database/sql"
|
|
|
|
"errors"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2022-02-21 03:32:53 +00:00
|
|
|
|
2022-02-21 03:53:13 +00:00
|
|
|
qgen "git.tuxpa.in/a/gosora/query_gen"
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
2017-09-25 00:48:35 +00:00
|
|
|
)
|
2016-12-03 13:45:08 +00:00
|
|
|
|
2017-11-11 04:06:16 +00:00
|
|
|
// TODO: Do we really need this?
|
2017-09-03 04:50:31 +00:00
|
|
|
type ForumAdmin struct {
|
2022-02-21 03:32:53 +00:00
|
|
|
ID int
|
|
|
|
Name string
|
|
|
|
Desc string
|
|
|
|
Active bool
|
|
|
|
Preset string
|
|
|
|
TopicCount int
|
|
|
|
PresetLang string
|
2017-02-04 15:49:24 +00:00
|
|
|
}
|
|
|
|
|
2017-09-03 04:50:31 +00:00
|
|
|
type Forum struct {
|
2022-02-21 03:32:53 +00:00
|
|
|
ID int
|
|
|
|
Link string
|
|
|
|
Name string
|
|
|
|
Desc string
|
|
|
|
Tmpl string
|
|
|
|
Active bool
|
|
|
|
Order int
|
|
|
|
Preset string
|
|
|
|
ParentID int
|
|
|
|
ParentType string
|
|
|
|
TopicCount int
|
|
|
|
|
|
|
|
LastTopic *Topic
|
|
|
|
LastTopicID int
|
|
|
|
LastReplyer *User
|
|
|
|
LastReplyerID int
|
|
|
|
LastTopicTime string // So that we can re-calculate the relative time on the spot in /forums/
|
|
|
|
LastPage int
|
2016-12-03 13:45:08 +00:00
|
|
|
}
|
2016-12-04 10:44:28 +00:00
|
|
|
|
2017-09-28 22:16:34 +00:00
|
|
|
// ? - What is this for?
|
2017-09-03 04:50:31 +00:00
|
|
|
type ForumSimple struct {
|
2022-02-21 03:32:53 +00:00
|
|
|
ID int
|
|
|
|
Name string
|
|
|
|
Active bool
|
|
|
|
Preset string
|
2017-01-01 15:45:43 +00:00
|
|
|
}
|
2017-01-26 13:37:50 +00:00
|
|
|
|
2017-11-11 04:06:16 +00:00
|
|
|
type ForumStmts struct {
|
2022-02-21 03:32:53 +00:00
|
|
|
update *sql.Stmt
|
|
|
|
setPreset *sql.Stmt
|
2017-11-11 04:06:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var forumStmts ForumStmts
|
|
|
|
|
|
|
|
func init() {
|
2022-02-21 03:32:53 +00:00
|
|
|
DbInits.Add(func(acc *qgen.Accumulator) error {
|
|
|
|
forumStmts = ForumStmts{
|
|
|
|
update: acc.Update("forums").Set("name=?,desc=?,active=?,preset=?").Where("fid=?").Prepare(),
|
|
|
|
setPreset: acc.Update("forums").Set("preset=?").Where("fid=?").Prepare(),
|
|
|
|
}
|
|
|
|
return acc.FirstError()
|
|
|
|
})
|
2017-11-11 04:06:16 +00:00
|
|
|
}
|
|
|
|
|
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
|
|
|
// Copy gives you a non-pointer concurrency safe copy of the forum
|
2019-08-31 22:34:43 +00:00
|
|
|
func (f *Forum) Copy() (fcopy Forum) {
|
2022-02-21 03:32:53 +00:00
|
|
|
fcopy = *f
|
|
|
|
return fcopy
|
2017-09-28 22:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Write tests for this
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
func (f *Forum) Update(name, desc string, active bool, preset string) error {
|
2022-02-21 03:32:53 +00:00
|
|
|
if name == "" {
|
|
|
|
name = f.Name
|
|
|
|
}
|
|
|
|
// TODO: Do a line sanitise? Does it matter?
|
|
|
|
preset = strings.TrimSpace(preset)
|
|
|
|
_, err := forumStmts.update.Exec(name, desc, active, preset, f.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if f.Preset != preset && preset != "custom" && preset != "" {
|
|
|
|
err = PermmapToQuery(PresetToPermmap(preset), f.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ = Forums.Reload(f.ID)
|
|
|
|
return nil
|
2017-09-25 00:48:35 +00:00
|
|
|
}
|
|
|
|
|
2019-08-31 22:34:43 +00:00
|
|
|
func (f *Forum) SetPreset(preset string, gid int) error {
|
2022-02-21 03:32:53 +00:00
|
|
|
fp, changed := GroupForumPresetToForumPerms(preset)
|
|
|
|
if changed {
|
|
|
|
return f.SetPerms(fp, preset, gid)
|
|
|
|
}
|
|
|
|
return nil
|
2017-11-13 05:22:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Refactor this
|
2019-08-31 22:34:43 +00:00
|
|
|
func (f *Forum) SetPerms(fperms *ForumPerms, preset string, gid int) (err error) {
|
2022-02-21 03:32:53 +00:00
|
|
|
err = ReplaceForumPermsForGroup(gid, map[int]string{f.ID: preset}, map[int]*ForumPerms{f.ID: fperms})
|
|
|
|
if err != nil {
|
|
|
|
LogError(err)
|
|
|
|
return errors.New("Unable to update the permissions")
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Add this and replaceForumPermsForGroup into a transaction?
|
|
|
|
_, err = forumStmts.setPreset.Exec("", f.ID)
|
|
|
|
if err != nil {
|
|
|
|
LogError(err)
|
|
|
|
return errors.New("Unable to update the forum")
|
|
|
|
}
|
|
|
|
err = Forums.Reload(f.ID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("Unable to reload forum")
|
|
|
|
}
|
|
|
|
err = FPStore.Reload(f.ID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("Unable to reload the forum permissions")
|
|
|
|
}
|
|
|
|
return nil
|
2017-11-13 05:22:37 +00:00
|
|
|
}
|
|
|
|
|
2017-09-23 19:57:13 +00:00
|
|
|
// TODO: Replace this sorting mechanism with something a lot more efficient
|
|
|
|
// ? - Use sort.Slice instead?
|
|
|
|
type SortForum []*Forum
|
|
|
|
|
|
|
|
func (sf SortForum) Len() int {
|
2022-02-21 03:32:53 +00:00
|
|
|
return len(sf)
|
2017-09-23 19:57:13 +00:00
|
|
|
}
|
|
|
|
func (sf SortForum) Swap(i, j int) {
|
2022-02-21 03:32:53 +00:00
|
|
|
sf[i], sf[j] = sf[j], sf[i]
|
2017-09-23 19:57:13 +00:00
|
|
|
}
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
|
2019-04-27 06:32:26 +00:00
|
|
|
/*func (sf SortForum) Less(i,j int) bool {
|
2022-02-21 03:32:53 +00:00
|
|
|
l := sf.less(i,j)
|
|
|
|
if l {
|
|
|
|
log.Printf("%s is less than %s. order: %d. id: %d.",sf[i].Name, sf[j].Name, sf[i].Order, sf[i].ID)
|
|
|
|
} else {
|
|
|
|
log.Printf("%s is not less than %s. order: %d. id: %d.",sf[i].Name, sf[j].Name, sf[i].Order, sf[i].ID)
|
|
|
|
}
|
|
|
|
return l
|
2019-04-27 06:32:26 +00:00
|
|
|
}*/
|
2017-09-23 19:57:13 +00:00
|
|
|
func (sf SortForum) Less(i, j int) bool {
|
2022-02-21 03:32:53 +00:00
|
|
|
if sf[i].Order < sf[j].Order {
|
|
|
|
return true
|
|
|
|
} else if sf[i].Order == sf[j].Order {
|
|
|
|
return sf[i].ID < sf[j].ID
|
|
|
|
}
|
|
|
|
return false
|
2017-09-23 19:57:13 +00:00
|
|
|
}
|
|
|
|
|
2017-09-28 22:16:34 +00:00
|
|
|
// ! Don't use this outside of tests and possibly template_init.go
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
func BlankForum(fid int, link, name, desc string, active bool, preset string, parentID int, parentType string, topicCount int) *Forum {
|
2022-02-21 03:32:53 +00:00
|
|
|
return &Forum{ID: fid, Link: link, Name: name, Desc: desc, Active: active, Preset: preset, ParentID: parentID, ParentType: parentType, TopicCount: topicCount}
|
2017-09-28 22:16:34 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 04:06:16 +00:00
|
|
|
func BuildForumURL(slug string, fid int) string {
|
2022-02-21 03:32:53 +00:00
|
|
|
if slug == "" || !Config.BuildSlugs {
|
|
|
|
return "/forum/" + strconv.Itoa(fid)
|
|
|
|
}
|
|
|
|
return "/forum/" + slug + "." + strconv.Itoa(fid)
|
2017-03-15 08:34:14 +00:00
|
|
|
}
|
Added the Social Groups plugin. This is still under construction.
Made a few improvements to the ForumStore, including bringing it's API closer in line with the other datastores, adding stubs for future subforum functionality, and improving efficiency in a few places.
The auth interface now handles all the authentication stuff.
Renamed the debug config variable to debug_mode.
Added the PluginPerms API.
Internal Errors will now dump the stack trace in the console.
Added support for installable plugins.
Refactored the routing logic so that the router now handles the common PreRoute logic(exc. /static/)
Added the CreateTable method to the query generator. It might need some tweaking to better support other database systems.
Added the same CreateTable method to the query builder.
Began work on PostgreSQL support.
Added the string-string hook type
Added the pre_render hook type.
Added the ParentID and ParentType fields to forums.
Added the get_forum_url_prefix function.
Added a more generic build_slug function.
Added the get_topic_url_prefix function.
Added the override_perms and override_forum_perms functions for bulk setting and unsetting permissions.
Added more ExtData fields in a few structs and removed them on the Perms struct as the PluginPerms API supersedes them there.
Plugins can now see the router instance.
The plugin initialisation handlers can now throw errors.
Plugins are now initialised after all the forum's subsystems are.
Refactored the unit test logic. For instance, we now use the proper .Log method rather than fmt.Println in many cases.
Sorry, we'll have to break Github's generated file detection, as the build instructions aren't working, unless I put them at the top, and they're far, far more important than getting Github to recognise the generated code as generated code.
Fixed an issue with mysql.go's _init_database() overwriting the dbpassword variable. Not a huge issue, but it is a "gotcha" for those not expecting a ':' at the start.
Fixed an issue with forum creation where the forum permissions didn't get cached.
Fixed a bug in plugin_bbcode where negative numbers in rand would crash Gosora.
Made the outputs of plugin_markdown and plugin_bbcode more compliant with the tests.
Revamped the phrase system to make it easier for us to add language pack related features in the future.
Added the WidgetMenu widget type.
Revamped the theme again. I'm experimenting to see which approach I like most.
- Excuse the little W3C rage. Some things about CSS drive me crazy :p
Tests:
Added 22 bbcode_full_parse tests.
Added 19 bbcode_regex_parse tests.
Added 27 markdown_parse tests.
Added four UserStore tests. More to come when the test database functionality is added.
Added 18 name_to_slug tests.
Hooks:
Added the pre_render hook.
Added the pre_render_forum_list hook.
Added the pre_render_view_forum hook.
Added the pre_render_topic_list hook.
Added the pre_render_view_topic hook.
Added the pre_render_profile hook.
Added the pre_render_custom_page hook.
Added the pre_render_overview hook.
Added the pre_render_create_topic hook.
Added the pre_render_account_own_edit_critical hook.
Added the pre_render_account_own_edit_avatar hook.
Added the pre_render_account_own_edit_username hook.
Added the pre_render_account_own_edit_email hook.
Added the pre_render_login hook.
Added the pre_render_register hook.
Added the pre_render_ban hook.
Added the pre_render_panel_dashboard hook.
Added the pre_render_panel_forums hook.
Added the pre_render_panel_delete_forum hook.
Added the pre_render_panel_edit_forum hook.
Added the pre_render_panel_settings hook.
Added the pre_render_panel_setting hook.
Added the pre_render_panel_plugins hook.
Added the pre_render_panel_users hook.
Added the pre_render_panel_edit_user hook.
Added the pre_render_panel_groups hook.
Added the pre_render_panel_edit_group hook.
Added the pre_render_panel_edit_group_perms hook.
Added the pre_render_panel_themes hook.
Added the pre_render_panel_mod_log hook.
Added the pre_render_error hook.
Added the pre_render_security_error hook.
Added the create_group_preappend hook.
Added the intercept_build_widgets hook.
Added the simple_forum_check_pre_perms hook.
Added the forum_check_pre_perms hook.
2017-07-09 12:06:04 +00:00
|
|
|
|
2017-11-11 04:06:16 +00:00
|
|
|
func GetForumURLPrefix() string {
|
2022-02-21 03:32:53 +00:00
|
|
|
return "/forum/"
|
Added the Social Groups plugin. This is still under construction.
Made a few improvements to the ForumStore, including bringing it's API closer in line with the other datastores, adding stubs for future subforum functionality, and improving efficiency in a few places.
The auth interface now handles all the authentication stuff.
Renamed the debug config variable to debug_mode.
Added the PluginPerms API.
Internal Errors will now dump the stack trace in the console.
Added support for installable plugins.
Refactored the routing logic so that the router now handles the common PreRoute logic(exc. /static/)
Added the CreateTable method to the query generator. It might need some tweaking to better support other database systems.
Added the same CreateTable method to the query builder.
Began work on PostgreSQL support.
Added the string-string hook type
Added the pre_render hook type.
Added the ParentID and ParentType fields to forums.
Added the get_forum_url_prefix function.
Added a more generic build_slug function.
Added the get_topic_url_prefix function.
Added the override_perms and override_forum_perms functions for bulk setting and unsetting permissions.
Added more ExtData fields in a few structs and removed them on the Perms struct as the PluginPerms API supersedes them there.
Plugins can now see the router instance.
The plugin initialisation handlers can now throw errors.
Plugins are now initialised after all the forum's subsystems are.
Refactored the unit test logic. For instance, we now use the proper .Log method rather than fmt.Println in many cases.
Sorry, we'll have to break Github's generated file detection, as the build instructions aren't working, unless I put them at the top, and they're far, far more important than getting Github to recognise the generated code as generated code.
Fixed an issue with mysql.go's _init_database() overwriting the dbpassword variable. Not a huge issue, but it is a "gotcha" for those not expecting a ':' at the start.
Fixed an issue with forum creation where the forum permissions didn't get cached.
Fixed a bug in plugin_bbcode where negative numbers in rand would crash Gosora.
Made the outputs of plugin_markdown and plugin_bbcode more compliant with the tests.
Revamped the phrase system to make it easier for us to add language pack related features in the future.
Added the WidgetMenu widget type.
Revamped the theme again. I'm experimenting to see which approach I like most.
- Excuse the little W3C rage. Some things about CSS drive me crazy :p
Tests:
Added 22 bbcode_full_parse tests.
Added 19 bbcode_regex_parse tests.
Added 27 markdown_parse tests.
Added four UserStore tests. More to come when the test database functionality is added.
Added 18 name_to_slug tests.
Hooks:
Added the pre_render hook.
Added the pre_render_forum_list hook.
Added the pre_render_view_forum hook.
Added the pre_render_topic_list hook.
Added the pre_render_view_topic hook.
Added the pre_render_profile hook.
Added the pre_render_custom_page hook.
Added the pre_render_overview hook.
Added the pre_render_create_topic hook.
Added the pre_render_account_own_edit_critical hook.
Added the pre_render_account_own_edit_avatar hook.
Added the pre_render_account_own_edit_username hook.
Added the pre_render_account_own_edit_email hook.
Added the pre_render_login hook.
Added the pre_render_register hook.
Added the pre_render_ban hook.
Added the pre_render_panel_dashboard hook.
Added the pre_render_panel_forums hook.
Added the pre_render_panel_delete_forum hook.
Added the pre_render_panel_edit_forum hook.
Added the pre_render_panel_settings hook.
Added the pre_render_panel_setting hook.
Added the pre_render_panel_plugins hook.
Added the pre_render_panel_users hook.
Added the pre_render_panel_edit_user hook.
Added the pre_render_panel_groups hook.
Added the pre_render_panel_edit_group hook.
Added the pre_render_panel_edit_group_perms hook.
Added the pre_render_panel_themes hook.
Added the pre_render_panel_mod_log hook.
Added the pre_render_error hook.
Added the pre_render_security_error hook.
Added the create_group_preappend hook.
Added the intercept_build_widgets hook.
Added the simple_forum_check_pre_perms hook.
Added the forum_check_pre_perms hook.
2017-07-09 12:06:04 +00:00
|
|
|
}
|