2017-09-15 22:20:01 +00:00
|
|
|
/* Under Heavy Construction */
|
2017-09-13 15:09:13 +00:00
|
|
|
package main
|
|
|
|
|
2017-09-15 22:20:01 +00:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"log"
|
|
|
|
"sync"
|
2017-10-21 00:27:47 +00:00
|
|
|
|
|
|
|
"./query_gen/lib"
|
2017-09-15 22:20:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var groupCreateMutex sync.Mutex
|
|
|
|
var groupUpdateMutex sync.Mutex
|
|
|
|
var gstore GroupStore
|
|
|
|
|
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
|
|
|
// ? - We could fallback onto the database when an item can't be found in the cache?
|
2017-09-15 22:20:01 +00:00
|
|
|
type GroupStore interface {
|
|
|
|
LoadGroups() error
|
|
|
|
DirtyGet(id int) *Group
|
|
|
|
Get(id int) (*Group, error)
|
|
|
|
GetCopy(id int) (Group, error)
|
|
|
|
Exists(id int) bool
|
2017-10-21 00:27:47 +00:00
|
|
|
Create(name string, tag string, isAdmin bool, isMod bool, isBanned bool) (int, error)
|
2017-09-15 22:20:01 +00:00
|
|
|
GetAll() ([]*Group, error)
|
|
|
|
GetRange(lower int, higher int) ([]*Group, error)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
type GroupCache interface {
|
|
|
|
Length() int
|
|
|
|
}
|
|
|
|
|
2017-09-15 22:20:01 +00:00
|
|
|
type MemoryGroupStore struct {
|
|
|
|
groups []*Group // TODO: Use a sync.Map instead of a slice
|
|
|
|
groupCapCount int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMemoryGroupStore() *MemoryGroupStore {
|
|
|
|
return &MemoryGroupStore{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mgs *MemoryGroupStore) LoadGroups() error {
|
|
|
|
mgs.groups = []*Group{&Group{ID: 0, Name: "Unknown"}}
|
|
|
|
|
2017-09-18 17:03:52 +00:00
|
|
|
rows, err := getGroupsStmt.Query()
|
2017-09-15 22:20:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
|
|
|
i := 1
|
|
|
|
for ; rows.Next(); i++ {
|
|
|
|
group := Group{ID: 0}
|
|
|
|
err := rows.Scan(&group.ID, &group.Name, &group.PermissionsText, &group.PluginPermsText, &group.IsMod, &group.IsAdmin, &group.IsBanned, &group.Tag)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal(group.PermissionsText, &group.Perms)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if dev.DebugMode {
|
|
|
|
log.Print(group.Name + ": ")
|
|
|
|
log.Printf("%+v\n", group.Perms)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal(group.PluginPermsText, &group.PluginPerms)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if dev.DebugMode {
|
|
|
|
log.Print(group.Name + ": ")
|
|
|
|
log.Printf("%+v\n", group.PluginPerms)
|
|
|
|
}
|
|
|
|
//group.Perms.ExtData = make(map[string]bool)
|
2017-10-21 00:27:47 +00:00
|
|
|
// TODO: Can we optimise the bit where this cascades down to the user now?
|
|
|
|
if group.IsAdmin || group.IsMod {
|
|
|
|
group.IsBanned = false
|
|
|
|
}
|
2017-09-15 22:20:01 +00:00
|
|
|
mgs.groups = append(mgs.groups, &group)
|
|
|
|
}
|
|
|
|
err = rows.Err()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mgs.groupCapCount = i
|
|
|
|
|
|
|
|
if dev.DebugMode {
|
|
|
|
log.Print("Binding the Not Loggedin Group")
|
|
|
|
}
|
|
|
|
GuestPerms = mgs.groups[6].Perms
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mgs *MemoryGroupStore) DirtyGet(gid int) *Group {
|
|
|
|
if !mgs.Exists(gid) {
|
|
|
|
return &blankGroup
|
|
|
|
}
|
|
|
|
return mgs.groups[gid]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mgs *MemoryGroupStore) Get(gid int) (*Group, error) {
|
|
|
|
if !mgs.Exists(gid) {
|
|
|
|
return nil, ErrNoRows
|
|
|
|
}
|
|
|
|
return mgs.groups[gid], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mgs *MemoryGroupStore) GetCopy(gid int) (Group, error) {
|
|
|
|
if !mgs.Exists(gid) {
|
|
|
|
return blankGroup, ErrNoRows
|
|
|
|
}
|
|
|
|
return *mgs.groups[gid], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mgs *MemoryGroupStore) Exists(gid int) bool {
|
2017-10-21 00:27:47 +00:00
|
|
|
return (gid <= mgs.groupCapCount) && (gid >= 0) && mgs.groups[gid].Name != ""
|
2017-09-15 22:20:01 +00:00
|
|
|
}
|
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
// ? Allow two groups with the same name?
|
|
|
|
func (mgs *MemoryGroupStore) Create(name string, tag string, isAdmin bool, isMod bool, isBanned bool) (int, error) {
|
2017-09-15 22:20:01 +00:00
|
|
|
groupCreateMutex.Lock()
|
|
|
|
defer groupCreateMutex.Unlock()
|
|
|
|
|
|
|
|
var permstr = "{}"
|
2017-10-21 00:27:47 +00:00
|
|
|
tx, err := db.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer tx.Rollback()
|
|
|
|
|
|
|
|
insertTx, err := qgen.Builder.SimpleInsertTx(tx, "users_groups", "name, tag, is_admin, is_mod, is_banned, permissions", "?,?,?,?,?,?")
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
res, err := insertTx.Exec(name, tag, isAdmin, isMod, isBanned, permstr)
|
2017-09-15 22:20:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
gid64, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
var gid = int(gid64)
|
|
|
|
|
|
|
|
var perms = BlankPerms
|
|
|
|
var blankForums []ForumPerms
|
|
|
|
var blankIntList []int
|
|
|
|
var pluginPerms = make(map[string]bool)
|
|
|
|
var pluginPermsBytes = []byte("{}")
|
|
|
|
if vhooks["create_group_preappend"] != nil {
|
|
|
|
runVhook("create_group_preappend", &pluginPerms, &pluginPermsBytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the forum permissions based on the presets...
|
|
|
|
fdata, err := fstore.GetAll()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
var presetSet = make(map[int]string)
|
|
|
|
var permSet = make(map[int]ForumPerms)
|
2017-09-15 22:20:01 +00:00
|
|
|
permUpdateMutex.Lock()
|
|
|
|
defer permUpdateMutex.Unlock()
|
|
|
|
for _, forum := range fdata {
|
|
|
|
var thePreset string
|
|
|
|
if isAdmin {
|
|
|
|
thePreset = "admins"
|
|
|
|
} else if isMod {
|
|
|
|
thePreset = "staff"
|
|
|
|
} else if isBanned {
|
|
|
|
thePreset = "banned"
|
|
|
|
} else {
|
|
|
|
thePreset = "members"
|
|
|
|
}
|
|
|
|
|
|
|
|
permmap := presetToPermmap(forum.Preset)
|
2017-10-21 00:27:47 +00:00
|
|
|
permItem := permmap[thePreset]
|
|
|
|
permItem.Overrides = true
|
|
|
|
|
|
|
|
permSet[forum.ID] = permItem
|
|
|
|
presetSet[forum.ID] = forum.Preset
|
|
|
|
}
|
|
|
|
|
|
|
|
err = replaceForumPermsForGroupTx(tx, gid, presetSet, permSet)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = tx.Commit()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Can we optimise the bit where this cascades down to the user now?
|
|
|
|
if isAdmin || isMod {
|
|
|
|
isBanned = false
|
|
|
|
}
|
|
|
|
|
|
|
|
mgs.groups = append(mgs.groups, &Group{gid, name, isMod, isAdmin, isBanned, tag, perms, []byte(permstr), pluginPerms, pluginPermsBytes, blankForums, blankIntList})
|
|
|
|
mgs.groupCapCount++
|
2017-09-15 22:20:01 +00:00
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
for _, forum := range fdata {
|
2017-09-15 22:20:01 +00:00
|
|
|
err = rebuildForumPermissions(forum.ID)
|
|
|
|
if err != nil {
|
|
|
|
return gid, err
|
|
|
|
}
|
|
|
|
}
|
2017-10-21 00:27:47 +00:00
|
|
|
|
2017-09-15 22:20:01 +00:00
|
|
|
return gid, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ! NOT CONCURRENT
|
|
|
|
func (mgs *MemoryGroupStore) GetAll() ([]*Group, error) {
|
|
|
|
return mgs.groups, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ? - It's currently faster to use GetAll(), but we'll be dropping the guarantee that the slices are ordered soon
|
|
|
|
// ? - Set the lower and higher numbers to 0 to remove the bounds
|
|
|
|
// ? - Currently uses slicing for efficiency, so it might behave a little weirdly
|
|
|
|
func (mgs *MemoryGroupStore) GetRange(lower int, higher int) (groups []*Group, err error) {
|
|
|
|
if lower == 0 && higher == 0 {
|
|
|
|
return mgs.GetAll()
|
|
|
|
} else if lower == 0 {
|
|
|
|
if higher < 0 {
|
|
|
|
return nil, errors.New("higher may not be lower than 0")
|
|
|
|
}
|
|
|
|
if higher > len(mgs.groups) {
|
|
|
|
higher = len(mgs.groups)
|
|
|
|
}
|
|
|
|
groups = mgs.groups[:higher]
|
|
|
|
} else if higher == 0 {
|
|
|
|
if lower < 0 {
|
|
|
|
return nil, errors.New("lower may not be lower than 0")
|
|
|
|
}
|
|
|
|
groups = mgs.groups[lower:]
|
|
|
|
}
|
|
|
|
return groups, nil
|
|
|
|
}
|
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
|
|
|
|
|
|
|
func (mgs *MemoryGroupStore) Length() int {
|
|
|
|
return len(mgs.groups)
|
|
|
|
}
|