2017-06-13 07:12:58 +00:00
|
|
|
/* WIP Under Construction */
|
2018-10-27 03:21:02 +00:00
|
|
|
package qgen // import "github.com/Azareal/Gosora/query_gen"
|
2017-06-13 07:12:58 +00:00
|
|
|
|
2017-10-16 07:32:58 +00:00
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"errors"
|
2018-04-23 08:38:25 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2020-04-20 23:39:35 +00:00
|
|
|
"sync"
|
2017-10-16 07:32:58 +00:00
|
|
|
)
|
2017-06-13 07:12:58 +00:00
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
var Registry []Adapter
|
2017-10-16 07:32:58 +00:00
|
|
|
var ErrNoAdapter = errors.New("This adapter doesn't exist")
|
2020-04-20 23:39:35 +00:00
|
|
|
var queryStrPool = sync.Pool{}
|
2017-06-13 07:12:58 +00:00
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBTableColumn struct {
|
|
|
|
Name string
|
|
|
|
Type string
|
|
|
|
Size int
|
|
|
|
Null bool
|
|
|
|
AutoIncrement bool
|
|
|
|
Default string
|
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-12 05:25:04 +00:00
|
|
|
type DBTableKey struct {
|
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
|
|
|
Columns string
|
2017-10-14 07:39:22 +00:00
|
|
|
Type string
|
2019-05-06 04:04:00 +00:00
|
|
|
|
|
|
|
// Foreign keys only
|
2019-12-31 21:57:54 +00:00
|
|
|
FTable string
|
2019-05-06 04:04:00 +00:00
|
|
|
Cascade bool
|
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-12 05:25:04 +00:00
|
|
|
type DBSelect struct {
|
2017-10-14 07:39:22 +00:00
|
|
|
Table string
|
2017-06-19 08:06:54 +00:00
|
|
|
Columns string
|
2017-10-14 07:39:22 +00:00
|
|
|
Where string
|
2017-06-19 08:06:54 +00:00
|
|
|
Orderby string
|
2017-10-14 07:39:22 +00:00
|
|
|
Limit string
|
2017-06-19 08:06:54 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBJoin struct {
|
2017-10-14 07:39:22 +00:00
|
|
|
Table1 string
|
|
|
|
Table2 string
|
2017-06-19 08:06:54 +00:00
|
|
|
Columns string
|
|
|
|
Joiners string
|
2017-10-14 07:39:22 +00:00
|
|
|
Where string
|
2017-06-19 08:06:54 +00:00
|
|
|
Orderby string
|
2017-10-14 07:39:22 +00:00
|
|
|
Limit string
|
2017-06-19 08:06:54 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBInsert struct {
|
2017-10-14 07:39:22 +00:00
|
|
|
Table string
|
2017-06-19 08:06:54 +00:00
|
|
|
Columns string
|
2017-10-14 07:39:22 +00:00
|
|
|
Fields string
|
2017-06-19 08:06:54 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBColumn struct {
|
2017-06-13 07:12:58 +00:00
|
|
|
Table string
|
2017-10-14 07:39:22 +00:00
|
|
|
Left string // Could be a function or a column, so I'm naming this Left
|
2017-06-13 07:12:58 +00:00
|
|
|
Alias string // aka AS Blah, if it's present
|
2019-12-31 21:57:54 +00:00
|
|
|
//Type string // function or column
|
|
|
|
Type int
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2020-01-01 01:26:15 +00:00
|
|
|
const (
|
|
|
|
IdenFunc = iota
|
|
|
|
IdenColumn
|
|
|
|
IdenString
|
|
|
|
IdenLiteral
|
|
|
|
)
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBField struct {
|
2017-06-13 07:12:58 +00:00
|
|
|
Name string
|
2020-01-01 01:26:15 +00:00
|
|
|
//Type string
|
|
|
|
Type int
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBWhere struct {
|
|
|
|
Expr []DBToken // Simple expressions, the innards of functions are opaque for now.
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBJoiner struct {
|
2017-10-14 07:39:22 +00:00
|
|
|
LeftTable string
|
|
|
|
LeftColumn string
|
|
|
|
RightTable string
|
2017-06-13 07:12:58 +00:00
|
|
|
RightColumn string
|
2017-10-14 07:39:22 +00:00
|
|
|
Operator string
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBOrder struct {
|
2017-06-13 07:12:58 +00:00
|
|
|
Column string
|
2017-10-14 07:39:22 +00:00
|
|
|
Order string
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 21:57:54 +00:00
|
|
|
const (
|
|
|
|
TokenFunc = iota
|
|
|
|
TokenOp
|
|
|
|
TokenColumn
|
|
|
|
TokenNumber
|
|
|
|
TokenString
|
|
|
|
TokenSub
|
|
|
|
TokenOr
|
|
|
|
TokenNot
|
|
|
|
TokenLike
|
|
|
|
)
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBToken struct {
|
2017-06-13 07:12:58 +00:00
|
|
|
Contents string
|
2019-12-31 21:57:54 +00:00
|
|
|
//Type string // function, op, column, number, string, sub, not, like
|
|
|
|
Type int
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBSetter struct {
|
2017-06-13 07:12:58 +00:00
|
|
|
Column string
|
2017-11-12 05:25:04 +00:00
|
|
|
Expr []DBToken // Simple expressions, the innards of functions are opaque for now.
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBLimit struct {
|
2017-10-14 07:39:22 +00:00
|
|
|
Offset string // ? or int
|
2017-06-15 11:40:35 +00:00
|
|
|
MaxCount string // ? or int
|
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
type DBStmt struct {
|
2017-07-12 11:05:18 +00:00
|
|
|
Contents string
|
2017-10-14 07:39:22 +00:00
|
|
|
Type string // create-table, insert, update, delete
|
2017-07-12 11:05:18 +00:00
|
|
|
}
|
|
|
|
|
2020-07-14 21:50:29 +00:00
|
|
|
// TODO: Add the TableExists and ColumnExists methods
|
2017-11-12 05:25:04 +00:00
|
|
|
type Adapter interface {
|
2017-06-13 07:12:58 +00:00
|
|
|
GetName() string
|
2018-03-31 05:25:27 +00:00
|
|
|
BuildConn(config map[string]string) (*sql.DB, error)
|
|
|
|
DbVersion() string
|
|
|
|
|
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
|
|
|
DropTable(name, table string) (string, error)
|
2020-03-09 03:51:44 +00:00
|
|
|
CreateTable(name, table, charset, collation string, cols []DBTableColumn, keys []DBTableKey) (string, error)
|
2018-05-27 09:36:35 +00:00
|
|
|
// TODO: Some way to add indices and keys
|
|
|
|
// TODO: Test this
|
2020-03-09 03:51:44 +00:00
|
|
|
AddColumn(name, table string, col DBTableColumn, key *DBTableKey) (string, error)
|
2020-03-24 02:07:30 +00:00
|
|
|
DropColumn(name, table, colName string) (string, error)
|
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
|
|
|
RenameColumn(name, table, oldName, newName string) (string, error)
|
|
|
|
ChangeColumn(name, table, colName string, col DBTableColumn) (string, error)
|
|
|
|
SetDefaultColumn(name, table, colName, colType, defaultStr string) (string, error)
|
|
|
|
AddIndex(name, table, iname, colname string) (string, error)
|
2020-03-09 03:51:44 +00:00
|
|
|
AddKey(name, table, col string, key DBTableKey) (string, error)
|
|
|
|
RemoveIndex(name, table, col string) (string, error)
|
2020-03-24 02:07:30 +00:00
|
|
|
AddForeignKey(name, table, col, ftable, fcol string, cascade bool) (out string, e error)
|
2020-03-09 03:51:44 +00:00
|
|
|
SimpleInsert(name, table, cols, fields string) (string, error)
|
|
|
|
SimpleBulkInsert(name, table, cols string, fieldSet []string) (string, error)
|
2019-06-05 04:57:10 +00:00
|
|
|
SimpleUpdate(b *updatePrebuilder) (string, error)
|
|
|
|
SimpleUpdateSelect(b *updatePrebuilder) (string, error) // ! Experimental
|
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
|
|
|
SimpleDelete(name, table, where string) (string, error)
|
|
|
|
Purge(name, table string) (string, error)
|
2020-03-09 03:51:44 +00:00
|
|
|
SimpleSelect(name, table, cols, where, orderby, limit string) (string, error)
|
2019-06-05 04:57:10 +00:00
|
|
|
ComplexDelete(b *deletePrebuilder) (string, error)
|
2020-03-09 03:51:44 +00:00
|
|
|
SimpleLeftJoin(name, table1, table2, cols, joiners, where, orderby, limit string) (string, error)
|
2017-10-14 07:39:22 +00:00
|
|
|
SimpleInnerJoin(string, string, string, string, string, string, string, string) (string, error)
|
2017-11-12 05:25:04 +00:00
|
|
|
SimpleInsertSelect(string, DBInsert, DBSelect) (string, error)
|
|
|
|
SimpleInsertLeftJoin(string, DBInsert, DBJoin) (string, error)
|
|
|
|
SimpleInsertInnerJoin(string, DBInsert, DBJoin) (string, error)
|
2017-10-14 07:39:22 +00:00
|
|
|
SimpleCount(string, string, string, string) (string, error)
|
2017-11-12 05:25:04 +00:00
|
|
|
|
2018-01-03 07:46:18 +00:00
|
|
|
ComplexSelect(*selectPrebuilder) (string, error)
|
|
|
|
|
2017-11-13 00:31:46 +00:00
|
|
|
Builder() *prebuilder
|
2017-06-13 07:12:58 +00:00
|
|
|
Write() error
|
|
|
|
}
|
|
|
|
|
2017-11-12 05:25:04 +00:00
|
|
|
func GetAdapter(name string) (adap Adapter, err error) {
|
|
|
|
for _, adapter := range Registry {
|
2017-06-13 07:12:58 +00:00
|
|
|
if adapter.GetName() == name {
|
|
|
|
return adapter, nil
|
|
|
|
}
|
|
|
|
}
|
2017-10-16 07:32:58 +00:00
|
|
|
return adap, ErrNoAdapter
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryPlugin interface {
|
|
|
|
Hook(name string, args ...interface{}) error
|
|
|
|
Write() error
|
|
|
|
}
|
|
|
|
|
|
|
|
type MySQLUpsertCallback struct {
|
|
|
|
stmt *sql.Stmt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (double *MySQLUpsertCallback) Exec(args ...interface{}) (res sql.Result, err error) {
|
|
|
|
if len(args) < 2 {
|
|
|
|
return res, errors.New("Need two or more arguments")
|
|
|
|
}
|
|
|
|
args = args[:len(args)-1]
|
|
|
|
return double.stmt.Exec(append(args, args...)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func PrepareMySQLUpsertCallback(db *sql.DB, query string) (*MySQLUpsertCallback, error) {
|
|
|
|
stmt, err := db.Prepare(query)
|
|
|
|
return &MySQLUpsertCallback{stmt}, err
|
2017-06-13 07:12:58 +00:00
|
|
|
}
|
2018-04-23 08:38:25 +00:00
|
|
|
|
|
|
|
type LitStr string
|
|
|
|
|
|
|
|
// TODO: Test 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 InterfaceMapToInsertStrings(data map[string]interface{}, order string) (cols, values string) {
|
|
|
|
done := make(map[string]bool)
|
|
|
|
addValue := func(value interface{}) {
|
2018-04-23 08:38:25 +00:00
|
|
|
switch value := value.(type) {
|
|
|
|
case string:
|
|
|
|
values += "'" + strings.Replace(value, "'", "\\'", -1) + "',"
|
|
|
|
case int:
|
|
|
|
values += strconv.Itoa(value) + ","
|
|
|
|
case LitStr:
|
|
|
|
values += string(value) + ","
|
|
|
|
case bool:
|
|
|
|
if value {
|
|
|
|
values += "1,"
|
|
|
|
} else {
|
|
|
|
values += "0,"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the ordered items
|
|
|
|
for _, col := range strings.Split(order, ",") {
|
|
|
|
col = strings.TrimSpace(col)
|
|
|
|
value, ok := data[col]
|
|
|
|
if ok {
|
|
|
|
cols += col + ","
|
|
|
|
addValue(value)
|
|
|
|
done[col] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go over any unordered items and add them at the end
|
|
|
|
if len(data) > len(done) {
|
|
|
|
for col, value := range data {
|
|
|
|
_, ok := done[col]
|
|
|
|
if ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
cols += col + ","
|
|
|
|
addValue(value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cols != "" {
|
|
|
|
cols = cols[:len(cols)-1]
|
|
|
|
values = values[:len(values)-1]
|
|
|
|
}
|
|
|
|
return cols, values
|
|
|
|
}
|