2017-09-13 15:09:13 +00:00
/ *
*
2022-02-21 03:32:53 +00:00
* Gosora User File
* Copyright Azareal 2017 - 2020
2017-09-13 15:09:13 +00:00
*
* /
2017-11-10 03:33:11 +00:00
package common
2017-05-11 13:04:43 +00:00
2017-06-05 11:57:27 +00:00
import (
2022-02-21 03:53:13 +00:00
"database/sql"
"errors"
"strconv"
"strings"
"time"
2020-02-07 12:27:33 +00:00
2022-02-21 03:53:13 +00:00
//"log"
2017-06-28 12:05:26 +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-06-05 11:57:27 +00:00
)
2016-12-02 07:38:54 +00:00
2017-10-16 07:32:58 +00:00
// TODO: Replace any literals with this
2017-11-10 03:33:11 +00:00
var BanGroup = 4
2017-10-16 07:32:58 +00:00
2018-05-27 09:36:35 +00:00
// TODO: Use something else as the guest avatar, maybe a question mark of some sort?
2017-11-11 04:06:16 +00:00
// GuestUser is an instance of user which holds guest data to avoid having to initialise a guest every time
2020-02-09 10:00:08 +00:00
var GuestUser = User { ID : 0 , Name : "Guest" , Link : "#" , Group : 6 , Perms : GuestPerms , CreatedAt : StartTime } // BuildAvatar is done in site.go to make sure it's done after init
2017-10-21 00:27:47 +00:00
var ErrNoTempGroup = errors . New ( "We couldn't find a temporary group for this user" )
2017-09-03 04:50:31 +00:00
type User struct {
2022-02-21 03:32:53 +00:00
ID int
Link string
Name string
Email string
Group int
Active bool
IsMod bool
IsSuperMod bool
IsAdmin bool
IsSuperAdmin bool
IsBanned bool
Perms Perms
PluginPerms map [ string ] bool
Session string
//AuthToken string
Loggedin bool
RawAvatar string
Avatar string
MicroAvatar string
Message string
// TODO: Implement something like this for profiles?
//URLPrefix string // Move this to another table? Create a user lite?
//URLName string
Tag string
Level int
Score int
Posts int
Liked int
CreatedAt time . Time
LastIP string // ! This part of the UserCache data might fall out of date
LastAgent int // ! Temporary hack for http push, don't use
TempGroup int
ParseSettings * ParseSettings
Privacy UserPrivacy
2020-07-14 21:50:29 +00:00
}
type UserPrivacy struct {
2022-02-21 03:32:53 +00:00
ShowComments int // 0 = default, 1 = public, 2 = registered, 3 = friends, 4 = self, 5 = disabled / unused
AllowMessage int // 0 = default, 1 = registered, 2 = friends, 3 = mods, 4 = disabled / unused
NoPresence bool // false = default, true = true
2016-12-02 07:38:54 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) WebSockets ( ) * WsJSONUser {
2022-02-21 03:32:53 +00:00
groupID := u . Group
if u . TempGroup != 0 {
groupID = u . TempGroup
}
// TODO: Do we want to leak the user's permissions? Users will probably be able to see their status from the group tags, but still
return & WsJSONUser { u . ID , u . Link , u . Name , groupID , u . IsMod , u . Avatar , u . MicroAvatar , u . Level , u . Score , u . Liked }
2018-06-24 13:49:29 +00:00
}
// Use struct tags to avoid having to define this? It really depends on the circumstances, sometimes we want the whole thing, sometimes... not.
type WsJSONUser struct {
2022-02-21 03:32:53 +00:00
ID int
Link string
Name string
Group int // Be sure to mask with TempGroup
IsMod bool
Avatar string
MicroAvatar string
Level int
Score int
Liked int
2018-06-24 13:49:29 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) Me ( ) * MeUser {
2022-02-21 03:32:53 +00:00
groupID := u . Group
if u . TempGroup != 0 {
groupID = u . TempGroup
}
return & MeUser { u . ID , u . Link , u . Name , groupID , u . Active , u . IsMod , u . IsSuperMod , u . IsAdmin , u . IsBanned , u . Session , u . Avatar , u . MicroAvatar , u . Tag , u . Level , u . Score , u . Liked }
2018-08-11 15:53:42 +00:00
}
// For when users need to see their own data, I've omitted some redundancies and less useful items, so we don't wind up sending them on every request
type MeUser struct {
2022-02-21 03:32:53 +00:00
ID int
Link string
Name string
Group int
Active bool
IsMod bool
IsSuperMod bool
IsAdmin bool
IsBanned bool
// TODO: Implement these as copies (might already be the case for Perms, but we'll want to look at it's definition anyway)
//Perms Perms
//PluginPerms map[string]bool
S string // Session
Avatar string
MicroAvatar string
Tag string
Level int
Score int
Liked int
2018-08-11 15:53:42 +00:00
}
2017-11-11 04:06:16 +00:00
type UserStmts struct {
2022-02-21 03:32:53 +00:00
activate * sql . Stmt
changeGroup * sql . Stmt
delete * sql . Stmt
setAvatar * sql . Stmt
setName * sql . Stmt
update * sql . Stmt
// TODO: Split these into a sub-struct
incScore * sql . Stmt
incPosts * sql . Stmt
incBigposts * sql . Stmt
incMegaposts * sql . Stmt
incPostStats * sql . Stmt
incBigpostStats * sql . Stmt
incMegapostStats * sql . Stmt
incLiked * sql . Stmt
incTopics * sql . Stmt
updateLevel * sql . Stmt
resetStats * sql . Stmt
setStats * sql . Stmt
decLiked * sql . Stmt
updateLastIP * sql . Stmt
updatePrivacy * sql . Stmt
setPassword * sql . Stmt
scheduleAvatarResize * sql . Stmt
deletePosts * sql . Stmt
deleteProfilePosts * sql . Stmt
deleteReplyPosts * sql . Stmt
getLikedRepliesOfTopic * sql . Stmt
getAttachmentsOfTopic * sql . Stmt
getAttachmentsOfTopic2 * sql . Stmt
getRepliesOfTopic * sql . Stmt
2017-11-11 04:06:16 +00:00
}
var userStmts UserStmts
func init ( ) {
2022-02-21 03:32:53 +00:00
DbInits . Add ( func ( acc * qgen . Accumulator ) error {
u , w := "users" , "uid=?"
set := func ( s string ) * sql . Stmt {
return acc . Update ( u ) . Set ( s ) . Where ( w ) . Prepare ( )
}
userStmts = UserStmts {
activate : set ( "active=1" ) ,
changeGroup : set ( "group=?" ) , // TODO: Implement user_count for users_groups here
delete : acc . Delete ( u ) . Where ( w ) . Prepare ( ) ,
setAvatar : set ( "avatar=?" ) ,
setName : set ( "name=?" ) ,
update : set ( "name=?,email=?,group=?" ) , // TODO: Implement user_count for users_groups on things which use this
// Stat Statements
// TODO: Do +0 to avoid having as many statements?
incScore : set ( "score=score+?" ) ,
incPosts : set ( "posts=posts+?" ) ,
incBigposts : set ( "posts=posts+?,bigposts=bigposts+?" ) ,
incMegaposts : set ( "posts=posts+?,bigposts=bigposts+?,megaposts=megaposts+?" ) ,
incPostStats : set ( "posts=posts+?,score=score+?,level=?" ) ,
incBigpostStats : set ( "posts=posts+?,bigposts=bigposts+?,score=score+?,level=?" ) ,
incMegapostStats : set ( "posts=posts+?,bigposts=bigposts+?,megaposts=megaposts+?,score=score+?,level=?" ) ,
incTopics : set ( "topics=topics+?" ) ,
updateLevel : set ( "level=?" ) ,
resetStats : set ( "score=0,posts=0,bigposts=0,megaposts=0,topics=0,level=0" ) ,
setStats : set ( "score=?,posts=?,bigposts=?,megaposts=?,topics=?,level=?" ) ,
incLiked : set ( "liked=liked+?,lastLiked=UTC_TIMESTAMP()" ) ,
decLiked : set ( "liked=liked-?" ) ,
//recalcLastLiked: acc...
updateLastIP : set ( "last_ip=?" ) ,
updatePrivacy : set ( "profile_comments=?,enable_embeds=?" ) ,
setPassword : set ( "password=?,salt=?" ) ,
scheduleAvatarResize : acc . Insert ( "users_avatar_queue" ) . Columns ( "uid" ) . Fields ( "?" ) . Prepare ( ) ,
// Delete All Posts Statements
deletePosts : acc . Select ( "topics" ) . Columns ( "tid,parentID,postCount,poll" ) . Where ( "createdBy=?" ) . Prepare ( ) ,
deleteProfilePosts : acc . Select ( "users_replies" ) . Columns ( "rid,uid" ) . Where ( "createdBy=?" ) . Prepare ( ) ,
deleteReplyPosts : acc . Select ( "replies" ) . Columns ( "rid,tid" ) . Where ( "createdBy=?" ) . Prepare ( ) ,
getLikedRepliesOfTopic : acc . Select ( "replies" ) . Columns ( "rid" ) . Where ( "tid=? AND likeCount>0" ) . Prepare ( ) ,
getAttachmentsOfTopic : acc . Select ( "attachments" ) . Columns ( "attachID" ) . Where ( "originID=? AND originTable='topics'" ) . Prepare ( ) ,
getAttachmentsOfTopic2 : acc . Select ( "attachments" ) . Columns ( "attachID" ) . Where ( "extra=? AND originTable='replies'" ) . Prepare ( ) ,
getRepliesOfTopic : acc . Select ( "replies" ) . Columns ( "words" ) . Where ( "createdBy!=? AND tid=?" ) . Prepare ( ) ,
}
return acc . FirstError ( )
} )
2017-01-03 07:47:31 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) Init ( ) {
2022-02-21 03:32:53 +00:00
// TODO: Let admins configure the minimum default?
if u . Privacy . ShowComments < 1 {
u . Privacy . ShowComments = 1
}
u . Avatar , u . MicroAvatar = BuildAvatar ( u . ID , u . RawAvatar )
u . Link = BuildProfileURL ( NameToSlug ( u . Name ) , u . ID )
u . Tag = Groups . DirtyGet ( u . Group ) . Tag
u . InitPerms ( )
2017-11-11 04:06:16 +00:00
}
2017-11-23 05:37:08 +00:00
// TODO: Refactor this idiom into something shorter, maybe with a NullUserCache when one isn't set?
2019-08-31 22:59:00 +00:00
func ( u * User ) CacheRemove ( ) {
2022-02-21 03:32:53 +00:00
if uc := Users . GetCache ( ) ; uc != nil {
uc . Remove ( u . ID )
}
TopicListThaw . Thaw ( )
2017-11-02 13:35:19 +00:00
}
2020-11-09 06:12:08 +00:00
func ( u * User ) Ban ( dur time . Duration , issuedBy int ) error {
2022-02-21 03:32:53 +00:00
return u . ScheduleGroupUpdate ( BanGroup , issuedBy , dur )
2017-08-27 09:33:45 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) Unban ( ) error {
2022-02-21 03:32:53 +00:00
return u . RevertGroupUpdate ( )
2017-10-21 00:27:47 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) deleteScheduleGroupTx ( tx * sql . Tx ) error {
2022-02-21 03:32:53 +00:00
deleteScheduleGroupStmt , e := qgen . Builder . SimpleDeleteTx ( tx , "users_groups_scheduler" , "uid=?" )
if e != nil {
return e
}
_ , e = deleteScheduleGroupStmt . Exec ( u . ID )
return e
2017-10-21 00:27:47 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) setTempGroupTx ( tx * sql . Tx , tempGroup int ) error {
2022-02-21 03:32:53 +00:00
setTempGroupStmt , e := qgen . Builder . SimpleUpdateTx ( tx , "users" , "temp_group=?" , "uid=?" )
if e != nil {
return e
}
_ , e = setTempGroupStmt . Exec ( tempGroup , u . ID )
return e
2017-08-27 09:33:45 +00:00
}
// Make this more stateless?
2020-11-09 06:12:08 +00:00
func ( u * User ) ScheduleGroupUpdate ( gid , issuedBy int , dur time . Duration ) error {
2022-02-21 03:32:53 +00:00
var temp bool
if dur . Nanoseconds ( ) != 0 {
temp = true
}
revertAt := time . Now ( ) . Add ( dur )
tx , e := qgen . Builder . Begin ( )
if e != nil {
return e
}
defer tx . Rollback ( )
e = u . deleteScheduleGroupTx ( tx )
if e != nil {
return e
}
createScheduleGroupTx , e := qgen . Builder . SimpleInsertTx ( tx , "users_groups_scheduler" , "uid,set_group,issued_by,issued_at,revert_at,temporary" , "?,?,?,UTC_TIMESTAMP(),?,?" )
if e != nil {
return e
}
_ , e = createScheduleGroupTx . Exec ( u . ID , gid , issuedBy , revertAt , temp )
if e != nil {
return e
}
e = u . setTempGroupTx ( tx , gid )
if e != nil {
return e
}
e = tx . Commit ( )
u . CacheRemove ( )
return e
2017-08-27 09:33:45 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) RevertGroupUpdate ( ) error {
2022-02-21 03:32:53 +00:00
tx , e := qgen . Builder . Begin ( )
if e != nil {
return e
}
defer tx . Rollback ( )
2017-10-21 00:27:47 +00:00
2022-02-21 03:32:53 +00:00
e = u . deleteScheduleGroupTx ( tx )
if e != nil {
return e
}
2017-10-21 00:27:47 +00:00
2022-02-21 03:32:53 +00:00
e = u . setTempGroupTx ( tx , 0 )
if e != nil {
return e
}
e = tx . Commit ( )
2017-10-21 00:27:47 +00:00
2022-02-21 03:32:53 +00:00
u . CacheRemove ( )
return e
2017-07-12 11:05:18 +00:00
}
2017-06-06 14:41:06 +00:00
2017-09-22 02:21:17 +00:00
// TODO: Use a transaction here
2017-09-25 00:48:35 +00:00
// ? - Add a Deactivate method? Not really needed, if someone's been bad you could do a ban, I guess it might be useful, if someone says that email x isn't actually owned by the user in question?
2020-11-09 06:12:08 +00:00
func ( u * User ) Activate ( ) ( e error ) {
2022-02-21 03:32:53 +00:00
_ , e = userStmts . activate . Exec ( u . ID )
if e != nil {
return e
}
_ , e = userStmts . changeGroup . Exec ( Config . DefaultGroup , u . ID )
u . CacheRemove ( )
return e
2017-02-10 13:39:13 +00:00
}
2017-10-16 07:32:58 +00:00
// TODO: Write tests for this
// TODO: Delete this user's content too?
// TODO: Expose this to the admin?
2019-08-31 22:59:00 +00:00
func ( u * User ) Delete ( ) error {
2022-02-21 03:32:53 +00:00
_ , e := userStmts . delete . Exec ( u . ID )
u . CacheRemove ( )
return e
2017-10-16 07:32:58 +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
// TODO: dismiss-event
2020-01-14 05:07:00 +00:00
func ( u * User ) DeletePosts ( ) error {
2022-02-21 03:32:53 +00:00
rows , err := userStmts . deletePosts . Query ( u . ID )
if err != nil {
return err
}
defer rows . Close ( )
defer TopicListThaw . Thaw ( )
defer u . CacheRemove ( )
updatedForums := make ( map [ int ] int ) // forum[count]
tc := Topics . GetCache ( )
umap := make ( map [ int ] struct { } )
for rows . Next ( ) {
var tid , parentID , postCount , poll int
err := rows . Scan ( & tid , & parentID , & postCount , & poll )
if err != nil {
return err
}
// TODO: Clear reply cache too
_ , err = topicStmts . delete . Exec ( tid )
if tc != nil {
tc . Remove ( tid )
}
if err != nil {
return err
}
updatedForums [ parentID ] = updatedForums [ parentID ] + 1
_ , err = topicStmts . deleteLikesForTopic . Exec ( tid )
if err != nil {
return err
}
err = handleTopicAttachments ( tid )
if err != nil {
return err
}
if postCount > 1 {
err = handleLikedTopicReplies ( tid )
if err != nil {
return err
}
err = handleTopicReplies ( umap , u . ID , tid )
if err != nil {
return err
}
_ , err = topicStmts . deleteReplies . Exec ( tid )
if err != nil {
return err
}
}
err = Subscriptions . DeleteResource ( tid , "topic" )
if err != nil {
return err
}
_ , err = topicStmts . deleteActivity . Exec ( tid )
if err != nil {
return err
}
if poll > 0 {
err = ( & Poll { ID : poll } ) . Delete ( )
if err != nil {
return err
}
}
}
if err = rows . Err ( ) ; err != nil {
return err
}
err = u . ResetPostStats ( )
if err != nil {
return err
}
for uid , _ := range umap {
err = ( & User { ID : uid } ) . RecalcPostStats ( )
if err != nil {
return err
}
}
for fid , count := range updatedForums {
err := Forums . RemoveTopics ( fid , count )
if err != nil && err != ErrNoRows {
return err
}
}
rows , err = userStmts . deleteProfilePosts . Query ( u . ID )
if err != nil {
return err
}
defer rows . Close ( )
for rows . Next ( ) {
var rid , uid int
err := rows . Scan ( & rid , & uid )
if err != nil {
return err
}
_ , err = profileReplyStmts . delete . Exec ( rid )
if err != nil {
return err
}
// TODO: Optimise this
// TODO: dismiss-event
err = Activity . DeleteByParamsExtra ( "reply" , uid , "user" , strconv . Itoa ( rid ) )
if err != nil {
return err
}
}
if err = rows . Err ( ) ; err != nil {
return err
}
rows , err = userStmts . deleteReplyPosts . Query ( u . ID )
if err != nil {
return err
}
defer rows . Close ( )
rc := Rstore . GetCache ( )
for rows . Next ( ) {
var rid , tid int
err := rows . Scan ( & rid , & tid )
if err != nil {
return err
}
_ , err = replyStmts . delete . Exec ( rid )
if err != nil {
return err
}
// TODO: Move this bit to *Topic
_ , err = replyStmts . removeRepliesFromTopic . Exec ( 1 , tid )
if err != nil {
return err
}
_ , err = replyStmts . updateTopicReplies . Exec ( tid )
if err != nil {
return err
}
_ , err = replyStmts . updateTopicReplies2 . Exec ( tid )
if tc != nil {
tc . Remove ( tid )
}
_ = rc . Remove ( rid )
if err != nil {
return err
}
_ , err = replyStmts . deleteLikesForReply . Exec ( rid )
if err != nil {
return err
}
err = Activity . DeleteByParamsExtra ( "reply" , tid , "topic" , strconv . Itoa ( rid ) )
if err != nil {
return err
}
_ , err = replyStmts . deleteActivitySubs . Exec ( rid )
if err != nil {
return err
}
_ , err = replyStmts . deleteActivity . Exec ( rid )
if err != nil {
return err
}
// TODO: Restructure alerts so we can delete the "x replied to topic" ones too.
}
return rows . Err ( )
2020-01-14 05:07:00 +00:00
}
2020-11-09 06:12:08 +00:00
func ( u * User ) bindStmt ( stmt * sql . Stmt , params ... interface { } ) ( e error ) {
2022-02-21 03:32:53 +00:00
params = append ( params , u . ID )
_ , e = stmt . Exec ( params ... )
u . CacheRemove ( )
return e
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
}
2020-11-09 06:12:08 +00:00
func ( u * User ) ChangeName ( name string ) error {
2022-02-21 03:32:53 +00:00
return u . bindStmt ( userStmts . setName , name )
2018-05-11 05:41:51 +00:00
}
2020-11-09 06:12:08 +00:00
func ( u * User ) ChangeAvatar ( avatar string ) error {
2022-02-21 03:32:53 +00:00
return u . bindStmt ( userStmts . setAvatar , avatar )
2017-10-21 00:27:47 +00:00
}
2018-07-28 12:52:23 +00:00
// TODO: Abstract this with an interface so we can scale this with an actual dedicated queue in a real cluster
2021-05-02 08:47:19 +00:00
func ( u * User ) ScheduleAvatarResize ( ) ( e error ) {
2022-02-21 03:32:53 +00:00
_ , e = userStmts . scheduleAvatarResize . Exec ( u . ID )
if e != nil {
// TODO: Do a more generic check so that we're not as tied to MySQL
me , ok := e . ( * mysql . MySQLError )
if ! ok {
return e
}
// If it's just telling us that the item already exists in the database, then we can ignore it, as it doesn't matter if it's this call or another which schedules the item in the queue
if me . Number != 1062 {
return e
}
}
return nil
2018-07-28 12:52:23 +00:00
}
2020-11-09 06:12:08 +00:00
func ( u * User ) ChangeGroup ( group int ) error {
2022-02-21 03:32:53 +00:00
return u . bindStmt ( userStmts . changeGroup , group )
2017-11-11 04:06:16 +00:00
}
2019-12-31 21:57:54 +00:00
func ( u * User ) GetIP ( ) string {
2022-02-21 03:32:53 +00:00
spl := strings . Split ( u . LastIP , "-" )
return spl [ len ( spl ) - 1 ]
2019-12-31 21:57:54 +00:00
}
2017-11-11 04:06:16 +00:00
// ! Only updates the database not the *User for safety reasons
2019-12-31 21:57:54 +00:00
func ( u * User ) UpdateIP ( ip string ) error {
2022-02-21 03:32:53 +00:00
_ , e := userStmts . updateLastIP . Exec ( ip , u . ID )
if uc := Users . GetCache ( ) ; uc != nil {
uc . Remove ( u . ID )
}
return e
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
}
2020-07-14 21:50:29 +00:00
//var ErrMalformedInteger = errors.New("malformed integer")
var ErrProfileCommentsOutOfBounds = errors . New ( "profile_comments must be an integer between -1 and 4" )
var ErrEnableEmbedsOutOfBounds = errors . New ( "enable_embeds must be -1, 0 or 1" )
/ * func ( u * User ) UpdatePrivacyS ( sProfileComments , sEnableEmbeds string ) error {
2022-02-21 03:32:53 +00:00
return u . UpdatePrivacy ( profileComments , enableEmbeds )
2020-07-14 21:50:29 +00:00
} * /
func ( u * User ) UpdatePrivacy ( profileComments , enableEmbeds int ) error {
2022-02-21 03:32:53 +00:00
if profileComments < - 1 || profileComments > 4 {
return ErrProfileCommentsOutOfBounds
}
if enableEmbeds < - 1 || enableEmbeds > 1 {
return ErrEnableEmbedsOutOfBounds
}
_ , e := userStmts . updatePrivacy . Exec ( profileComments , enableEmbeds , u . ID )
if uc := Users . GetCache ( ) ; uc != nil {
uc . Remove ( u . ID )
}
return e
2019-12-08 03:40:56 +00:00
}
func ( u * User ) Update ( name , email string , group int ) ( err error ) {
2022-02-21 03:32:53 +00:00
return u . bindStmt ( userStmts . update , name , email , group )
2018-06-17 07:28:18 +00:00
}
2019-08-31 22:59:00 +00:00
func ( u * User ) IncreasePostStats ( wcount int , topic bool ) ( err error ) {
2022-02-21 03:32:53 +00:00
baseScore := 1
if topic {
_ , err = userStmts . incTopics . Exec ( 1 , u . ID )
if err != nil {
return err
}
baseScore = 2
}
settings := SettingBox . Load ( ) . ( SettingMap )
var mod , level int
if wcount >= settings [ "megapost_min_words" ] . ( int ) {
mod = 4
level = GetLevel ( u . Score + baseScore + mod )
_ , err = userStmts . incMegapostStats . Exec ( 1 , 1 , 1 , baseScore + mod , level , u . ID )
} else if wcount >= settings [ "bigpost_min_words" ] . ( int ) {
mod = 1
level = GetLevel ( u . Score + baseScore + mod )
_ , err = userStmts . incBigpostStats . Exec ( 1 , 1 , baseScore + mod , level , u . ID )
} else {
level = GetLevel ( u . Score + baseScore + mod )
_ , err = userStmts . incPostStats . Exec ( 1 , baseScore + mod , level , u . ID )
}
if err != nil {
return err
}
err = GroupPromotions . PromoteIfEligible ( u , level , u . Posts + 1 , u . CreatedAt )
u . CacheRemove ( )
return err
2017-01-12 02:55:08 +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
func ( u * User ) countf ( stmt * sql . Stmt ) ( count int ) {
2022-02-21 03:32:53 +00:00
e := stmt . QueryRow ( ) . Scan ( & count )
if e != nil {
LogError ( e )
}
return count
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 ( u * User ) RecalcPostStats ( ) error {
2022-02-21 03:32:53 +00:00
var score int
tcount := Topics . CountUser ( u . ID )
rcount := Rstore . CountUser ( u . ID )
//log.Print("tcount:", tcount)
//log.Print("rcount:", rcount)
score += tcount * 2
score += rcount
var tmega , tbig , rmega , rbig int
if tcount > 0 {
tmega = Topics . CountMegaUser ( u . ID )
score += tmega * 3
tbig := Topics . CountBigUser ( u . ID )
score += tbig
}
if rcount > 0 {
rmega = Rstore . CountMegaUser ( u . ID )
score += rmega * 3
rbig = Rstore . CountBigUser ( u . ID )
score += rbig
}
_ , err := userStmts . setStats . Exec ( score , tcount + rcount , tbig + rbig , tmega + rmega , tcount , GetLevel ( score ) , u . ID )
u . CacheRemove ( )
return err
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-08-31 22:59:00 +00:00
func ( u * User ) DecreasePostStats ( wcount int , topic bool ) ( err error ) {
2022-02-21 03:32:53 +00:00
baseScore := - 1
if topic {
_ , err = userStmts . incTopics . Exec ( - 1 , u . ID )
if err != nil {
return err
}
baseScore = - 2
}
// TODO: Use a transaction to prevent level desyncs?
var mod int
settings := SettingBox . Load ( ) . ( SettingMap )
if wcount >= settings [ "megapost_min_words" ] . ( int ) {
mod = 4
_ , err = userStmts . incMegapostStats . Exec ( - 1 , - 1 , - 1 , baseScore - mod , GetLevel ( u . Score - baseScore - mod ) , u . ID )
} else if wcount >= settings [ "bigpost_min_words" ] . ( int ) {
mod = 1
_ , err = userStmts . incBigpostStats . Exec ( - 1 , - 1 , baseScore - mod , GetLevel ( u . Score - baseScore - mod ) , u . ID )
} else {
_ , err = userStmts . incPostStats . Exec ( - 1 , baseScore - mod , GetLevel ( u . Score - baseScore - mod ) , u . ID )
}
u . CacheRemove ( )
return err
2020-01-14 05:07:00 +00:00
}
2017-11-05 01:04:57 +00:00
2020-11-09 06:12:08 +00:00
func ( u * User ) ResetPostStats ( ) error {
2022-02-21 03:32:53 +00:00
_ , err := userStmts . resetStats . Exec ( u . ID )
u . CacheRemove ( )
return err
2017-01-12 02:55:08 +00:00
}
2017-02-15 10:49:30 +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 user
2019-08-31 22:59:00 +00:00
func ( u * User ) Copy ( ) User {
2022-02-21 03:32:53 +00:00
return * u
2017-09-28 22:16:34 +00:00
}
2017-09-25 00:48:35 +00:00
// TODO: Write unit tests for this
2019-08-31 22:59:00 +00:00
func ( u * User ) InitPerms ( ) {
2022-02-21 03:32:53 +00:00
if u . TempGroup != 0 {
u . Group = u . TempGroup
}
group := Groups . DirtyGet ( u . Group )
if u . IsSuperAdmin {
u . Perms = AllPerms
u . PluginPerms = AllPluginPerms
} else {
u . Perms = group . Perms
u . PluginPerms = group . PluginPerms
}
/ * if len ( group . CanSee ) == 0 {
panic ( "should not be zero" )
} * /
u . IsAdmin = u . IsSuperAdmin || group . IsAdmin
u . IsSuperMod = u . IsAdmin || group . IsMod
u . IsMod = u . IsSuperMod
u . IsBanned = group . IsBanned
if u . IsBanned && u . IsSuperMod {
u . IsBanned = false
}
2017-02-28 09:27:28 +00:00
}
2021-05-02 08:47:19 +00:00
// TODO: Write unit tests for this
func InitPerms2 ( group int , superAdmin bool , tempGroup int ) ( perms * Perms , admin , superMod , banned bool ) {
2022-02-21 03:32:53 +00:00
if tempGroup != 0 {
group = tempGroup
}
g := Groups . DirtyGet ( group )
if superAdmin {
perms = & AllPerms
} else {
perms = & g . Perms
}
admin = superAdmin || g . IsAdmin
superMod = admin || g . IsMod
banned = g . IsBanned
if banned && superMod {
banned = false
}
return perms , admin , superMod , banned
2021-05-02 08:47:19 +00:00
}
2020-07-15 06:59:47 +00:00
// TODO: Write tests
// TODO: Implement and use this
// TODO: Implement friends
func PrivacyAllowMessage ( pu , u * User ) ( canMsg bool ) {
2022-02-21 03:32:53 +00:00
switch pu . Privacy . AllowMessage {
case 4 : // Unused
canMsg = false
case 3 : // mods
canMsg = u . IsSuperMod
//case 2: // friends
case 1 : // registered
canMsg = true
default : // 0
canMsg = true
}
return canMsg
2020-07-15 06:59:47 +00:00
}
// TODO: Implement friend system
func PrivacyCommentsShow ( pu , u * User ) ( showComments bool ) {
2022-02-21 03:32:53 +00:00
switch pu . Privacy . ShowComments {
case 5 : // Unused
showComments = false
case 4 : // Self
showComments = u . ID == pu . ID
case 3 : // friends
showComments = u . ID == pu . ID
case 2 : // registered
showComments = u . Loggedin
case 1 : // public
showComments = true
default : // 0
showComments = true
}
return showComments
2020-07-15 06:59:47 +00:00
}
2018-12-31 09:03:49 +00:00
var guestAvatar GuestAvatar
type GuestAvatar struct {
2022-02-21 03:32:53 +00:00
Normal string
Micro string
2018-12-31 09:03:49 +00:00
}
2019-12-08 03:40:56 +00:00
func buildNoavatar ( uid , width int ) string {
2022-02-21 03:32:53 +00:00
if ! Config . DisableNoavatarRange {
// TODO: Find a faster algorithm
l := func ( max int ) {
for uid > max {
uid -= max
}
}
l ( 50000 )
l ( 5000 )
l ( 500 )
l ( 50 )
l ( 10 )
}
if ! Config . DisableDefaultNoavatar && uid < 11 {
/ * if uid < 6 {
if width == 200 {
return noavatarCache200Avif [ uid ]
} else if width == 48 {
return noavatarCache48Avif [ uid ]
}
return StaticFiles . Prefix + "n" + strconv . Itoa ( uid ) + "-" + strconv . Itoa ( width ) + ".avif?i=0"
} else * / if width == 200 {
return noavatarCache200 [ uid ]
} else if width == 48 {
return noavatarCache48 [ uid ]
}
return StaticFiles . Prefix + "n" + strconv . Itoa ( uid ) + "-" + strconv . Itoa ( width ) + ".png?i=0"
}
// ? - Add a prefix setting to make this faster?
return strings . Replace ( strings . Replace ( Config . Noavatar , "{id}" , strconv . Itoa ( uid ) , 1 ) , "{width}" , strconv . Itoa ( width ) , 1 )
2018-07-28 12:52:23 +00:00
}
2020-07-31 12:45:20 +00:00
// ? - Make this part of *User?
2018-07-28 12:52:23 +00:00
// TODO: Write tests for this
2020-02-07 12:27:33 +00:00
func BuildAvatar ( uid int , avatar string ) ( normalAvatar , microAvatar string ) {
2022-02-21 03:32:53 +00:00
if avatar == "" {
if uid == 0 {
return guestAvatar . Normal , guestAvatar . Micro
}
return buildNoavatar ( uid , 200 ) , buildNoavatar ( uid , 48 )
}
if avatar [ 0 ] == '.' {
if avatar [ 1 ] == '.' {
normalAvatar = Config . AvatarResBase + "avatar_" + strconv . Itoa ( uid ) + "_tmp" + avatar [ 1 : ]
return normalAvatar , normalAvatar
}
normalAvatar = Config . AvatarResBase + "avatar_" + strconv . Itoa ( uid ) + avatar
return normalAvatar , normalAvatar
}
return avatar , avatar
2018-02-03 05:47:14 +00:00
}
2017-11-11 04:06:16 +00:00
// TODO: Move this to *User
2017-09-22 02:21:17 +00:00
func SetPassword ( uid int , password string ) error {
2022-02-21 03:32:53 +00:00
hashedPassword , salt , err := GeneratePassword ( password )
if err != nil {
return err
}
_ , err = userStmts . setPassword . Exec ( hashedPassword , salt , uid )
return err
2017-09-22 02:21:17 +00:00
}
2017-09-25 00:48:35 +00:00
// TODO: Write units tests for this
2017-09-22 02:21:17 +00:00
func wordsToScore ( wcount int , topic bool ) ( score int ) {
2022-02-21 03:32:53 +00:00
if topic {
score = 2
} else {
score = 1
}
settings := SettingBox . Load ( ) . ( SettingMap )
if wcount >= settings [ "megapost_min_words" ] . ( int ) {
score += 4
} else if wcount >= settings [ "bigpost_min_words" ] . ( int ) {
score ++
}
return score
2017-09-22 02:21:17 +00:00
}
2017-09-28 22:16:34 +00:00
// For use in tests and to help generate dummy users for forums which don't have last posters
2017-11-11 04:06:16 +00:00
func BlankUser ( ) * User {
2022-02-21 03:32:53 +00:00
return new ( User )
2017-09-28 22:16:34 +00:00
}
2017-09-25 00:48:35 +00:00
// TODO: Write unit tests for this
2017-11-11 04:06:16 +00:00
func BuildProfileURL ( slug string , uid int ) string {
2022-02-21 03:32:53 +00:00
if slug == "" || ! Config . BuildSlugs {
return "/user/" + strconv . Itoa ( uid )
}
return "/user/" + slug + "." + strconv . Itoa ( uid )
2017-02-28 09:27:28 +00:00
}
2020-07-14 21:50:29 +00:00
func BuildProfileURLSb ( sb * strings . Builder , slug string , uid int ) {
2022-02-21 03:32:53 +00:00
if slug == "" || ! Config . BuildSlugs {
sb . Grow ( 6 + 1 )
sb . WriteString ( "/user/" )
sb . WriteString ( strconv . Itoa ( uid ) )
return
}
sb . Grow ( 7 + 1 + len ( slug ) )
sb . WriteString ( "/user/" )
sb . WriteString ( slug )
sb . WriteRune ( '.' )
sb . WriteString ( strconv . Itoa ( uid ) )
2020-07-14 21:50:29 +00:00
}