2017-09-13 15:09:13 +00:00
/ *
*
* Gosora User File
* Copyright Azareal 2017 - 2018
*
* /
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 (
2017-10-21 00:27:47 +00:00
"database/sql"
"errors"
2017-09-03 04:50:31 +00:00
"strconv"
2017-11-02 13:35:19 +00:00
"strings"
2017-09-03 04:50:31 +00:00
"time"
2017-06-28 12:05:26 +00:00
2017-11-11 04:06:16 +00:00
"../query_gen/lib"
2017-06-05 11:57:27 +00:00
"golang.org/x/crypto/bcrypt"
)
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
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
2017-11-10 03:33:11 +00:00
var GuestUser = User { ID : 0 , Link : "#" , Group : 6 , Perms : GuestPerms }
2017-07-12 11:05:18 +00:00
2017-09-03 04:50:31 +00:00
//func(real_password string, password string, salt string) (err error)
var CheckPassword = BcryptCheckPassword
//func(password string) (hashed_password string, salt string, err error)
var GeneratePassword = BcryptGeneratePassword
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 {
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
2018-01-08 08:53:51 +00:00
//AuthToken string
Loggedin bool
Avatar string
Message string
URLPrefix string // Move this to another table? Create a user lite?
URLName string
Tag string
Level int
Score int
LastIP string // ! This part of the UserCache data might fall out of date
TempGroup int
2016-12-02 07:38:54 +00:00
}
2017-11-11 04:06:16 +00:00
type UserStmts struct {
activate * sql . Stmt
changeGroup * sql . Stmt
delete * sql . Stmt
setAvatar * sql . Stmt
setUsername * sql . Stmt
updateGroup * sql . Stmt
incrementTopics * sql . Stmt
updateLevel * sql . Stmt
incrementScore * sql . Stmt
incrementPosts * sql . Stmt
incrementBigposts * sql . Stmt
incrementMegaposts * sql . Stmt
updateLastIP * sql . Stmt
setPassword * sql . Stmt
}
var userStmts UserStmts
func init ( ) {
2017-11-12 03:29:05 +00:00
DbInits . Add ( func ( acc * qgen . Accumulator ) error {
2017-11-11 04:06:16 +00:00
userStmts = UserStmts {
activate : acc . SimpleUpdate ( "users" , "active = 1" , "uid = ?" ) ,
changeGroup : acc . SimpleUpdate ( "users" , "group = ?" , "uid = ?" ) ,
delete : acc . SimpleDelete ( "users" , "uid = ?" ) ,
setAvatar : acc . SimpleUpdate ( "users" , "avatar = ?" , "uid = ?" ) ,
setUsername : acc . SimpleUpdate ( "users" , "name = ?" , "uid = ?" ) ,
updateGroup : acc . SimpleUpdate ( "users" , "group = ?" , "uid = ?" ) ,
incrementTopics : acc . SimpleUpdate ( "users" , "topics = topics + ?" , "uid = ?" ) ,
updateLevel : acc . SimpleUpdate ( "users" , "level = ?" , "uid = ?" ) ,
incrementScore : acc . SimpleUpdate ( "users" , "score = score + ?" , "uid = ?" ) ,
incrementPosts : acc . SimpleUpdate ( "users" , "posts = posts + ?" , "uid = ?" ) ,
incrementBigposts : acc . SimpleUpdate ( "users" , "posts = posts + ?, bigposts = bigposts + ?" , "uid = ?" ) ,
incrementMegaposts : acc . SimpleUpdate ( "users" , "posts = posts + ?, bigposts = bigposts + ?, megaposts = megaposts + ?" , "uid = ?" ) ,
updateLastIP : acc . SimpleUpdate ( "users" , "last_ip = ?" , "uid = ?" ) ,
setPassword : acc . SimpleUpdate ( "users" , "password = ?, salt = ?" , "uid = ?" ) ,
}
return acc . FirstError ( )
} )
2017-01-03 07:47:31 +00:00
}
2017-11-02 13:35:19 +00:00
func ( user * User ) Init ( ) {
if user . Avatar != "" {
if user . Avatar [ 0 ] == '.' {
user . Avatar = "/uploads/avatar_" + strconv . Itoa ( user . ID ) + user . Avatar
}
} else {
2017-11-11 04:06:16 +00:00
user . Avatar = strings . Replace ( Config . Noavatar , "{id}" , strconv . Itoa ( user . ID ) , 1 )
}
user . Link = BuildProfileURL ( NameToSlug ( user . Name ) , user . ID )
2017-11-23 05:37:08 +00:00
user . Tag = Groups . DirtyGet ( user . Group ) . Tag
2017-11-11 04:06:16 +00:00
user . InitPerms ( )
}
2017-11-23 05:37:08 +00:00
// TODO: Refactor this idiom into something shorter, maybe with a NullUserCache when one isn't set?
2017-11-11 04:06:16 +00:00
func ( user * User ) CacheRemove ( ) {
2017-11-23 05:37:08 +00:00
ucache := Users . GetCache ( )
if ucache != nil {
ucache . Remove ( user . ID )
2017-11-02 13:35:19 +00:00
}
}
2017-08-27 09:33:45 +00:00
func ( user * User ) Ban ( duration time . Duration , issuedBy int ) error {
2017-11-11 04:06:16 +00:00
return user . ScheduleGroupUpdate ( BanGroup , issuedBy , duration )
2017-08-27 09:33:45 +00:00
}
func ( user * User ) Unban ( ) error {
2017-10-21 00:27:47 +00:00
return user . RevertGroupUpdate ( )
}
func ( user * User ) deleteScheduleGroupTx ( tx * sql . Tx ) error {
deleteScheduleGroupStmt , err := qgen . Builder . SimpleDeleteTx ( tx , "users_groups_scheduler" , "uid = ?" )
if err != nil {
return err
}
_ , err = deleteScheduleGroupStmt . Exec ( user . ID )
return err
}
func ( user * User ) setTempGroupTx ( tx * sql . Tx , tempGroup int ) error {
setTempGroupStmt , err := qgen . Builder . SimpleUpdateTx ( tx , "users" , "temp_group = ?" , "uid = ?" )
if err != nil {
return err
2017-08-27 09:33:45 +00:00
}
2017-10-21 00:27:47 +00:00
_ , err = setTempGroupStmt . Exec ( tempGroup , user . ID )
2017-09-22 02:21:17 +00:00
return err
2017-08-27 09:33:45 +00:00
}
// Make this more stateless?
func ( user * User ) ScheduleGroupUpdate ( gid int , issuedBy int , duration time . Duration ) error {
var temporary bool
if duration . Nanoseconds ( ) != 0 {
temporary = true
}
revertAt := time . Now ( ) . Add ( duration )
2017-10-21 00:27:47 +00:00
2017-11-11 04:06:16 +00:00
tx , err := qgen . Builder . Begin ( )
2017-10-21 00:27:47 +00:00
if err != nil {
return err
}
defer tx . Rollback ( )
err = user . deleteScheduleGroupTx ( tx )
if err != nil {
return err
}
createScheduleGroupTx , err := qgen . Builder . SimpleInsertTx ( tx , "users_groups_scheduler" , "uid, set_group, issued_by, issued_at, revert_at, temporary" , "?,?,?,UTC_TIMESTAMP(),?,?" )
2017-08-27 09:33:45 +00:00
if err != nil {
return err
}
2017-10-21 00:27:47 +00:00
_ , err = createScheduleGroupTx . Exec ( user . ID , gid , issuedBy , revertAt , temporary )
if err != nil {
return err
}
err = user . setTempGroupTx ( tx , gid )
if err != nil {
return err
}
err = tx . Commit ( )
2017-11-11 04:06:16 +00:00
user . CacheRemove ( )
2017-09-22 02:21:17 +00:00
return err
2017-08-27 09:33:45 +00:00
}
func ( user * User ) RevertGroupUpdate ( ) error {
2017-11-11 04:06:16 +00:00
tx , err := qgen . Builder . Begin ( )
2017-10-21 00:27:47 +00:00
if err != nil {
return err
}
defer tx . Rollback ( )
err = user . deleteScheduleGroupTx ( tx )
2017-08-27 09:33:45 +00:00
if err != nil {
return err
}
2017-10-21 00:27:47 +00:00
err = user . setTempGroupTx ( tx , 0 )
if err != nil {
return err
}
err = tx . Commit ( )
2017-11-11 04:06:16 +00:00
user . CacheRemove ( )
2017-09-22 02:21:17 +00:00
return err
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?
2017-09-22 02:21:17 +00:00
func ( user * User ) Activate ( ) ( err error ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . activate . Exec ( user . ID )
2016-12-02 07:38:54 +00:00
if err != nil {
return err
}
2017-11-11 04:06:16 +00:00
_ , err = userStmts . changeGroup . Exec ( Config . DefaultGroup , user . ID )
user . CacheRemove ( )
2017-09-22 02:21:17 +00:00
return err
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?
func ( user * User ) Delete ( ) error {
2017-11-11 04:06:16 +00:00
_ , err := userStmts . delete . Exec ( user . ID )
2017-10-16 07:32:58 +00:00
if err != nil {
return err
}
2017-11-11 04:06:16 +00:00
user . CacheRemove ( )
2017-10-16 07:32:58 +00:00
return err
}
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 ( user * User ) ChangeName ( username string ) ( err error ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . setUsername . Exec ( username , user . ID )
user . CacheRemove ( )
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
return err
}
func ( user * User ) ChangeAvatar ( avatar string ) ( err error ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . setAvatar . Exec ( avatar , user . ID )
user . CacheRemove ( )
2017-10-21 00:27:47 +00:00
return err
}
func ( user * User ) ChangeGroup ( group int ) ( err error ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . updateGroup . Exec ( group , user . ID )
user . CacheRemove ( )
return err
}
// ! Only updates the database not the *User for safety reasons
func ( user * User ) UpdateIP ( host string ) error {
_ , err := userStmts . updateLastIP . Exec ( host , user . ID )
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
return err
}
2017-11-11 04:06:16 +00:00
func ( user * User ) IncreasePostStats ( wcount int , topic bool ) ( err error ) {
2017-01-12 02:55:08 +00:00
var mod int
2017-09-03 04:50:31 +00:00
baseScore := 1
2017-01-12 02:55:08 +00:00
if topic {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementTopics . Exec ( 1 , user . ID )
2017-01-12 02:55:08 +00:00
if err != nil {
return err
}
2017-09-03 04:50:31 +00:00
baseScore = 2
2017-01-12 02:55:08 +00:00
}
2017-06-06 14:41:06 +00:00
2017-11-11 04:06:16 +00:00
settings := SettingBox . Load ( ) . ( SettingMap )
2017-06-10 07:58:15 +00:00
if wcount >= settings [ "megapost_min_words" ] . ( int ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementMegaposts . Exec ( 1 , 1 , 1 , user . ID )
2017-01-12 02:55:08 +00:00
mod = 4
2017-06-10 07:58:15 +00:00
} else if wcount >= settings [ "bigpost_min_words" ] . ( int ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementBigposts . Exec ( 1 , 1 , user . ID )
2017-01-12 02:55:08 +00:00
mod = 1
} else {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementPosts . Exec ( 1 , user . ID )
2017-11-05 01:04:57 +00:00
}
if err != nil {
return err
2017-01-12 02:55:08 +00:00
}
2017-11-05 01:04:57 +00:00
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementScore . Exec ( baseScore + mod , user . ID )
2017-01-12 02:55:08 +00:00
if err != nil {
return err
}
2017-08-13 11:22:34 +00:00
//log.Print(user.Score + base_score + mod)
//log.Print(getLevel(user.Score + base_score + mod))
2017-09-10 16:57:22 +00:00
// TODO: Use a transaction to prevent level desyncs?
2017-11-11 04:06:16 +00:00
_ , err = userStmts . updateLevel . Exec ( GetLevel ( user . Score + baseScore + mod ) , user . ID )
2017-01-12 02:55:08 +00:00
return err
}
2017-11-11 04:06:16 +00:00
func ( user * User ) DecreasePostStats ( wcount int , topic bool ) ( err error ) {
2017-01-12 02:55:08 +00:00
var mod int
2017-09-03 04:50:31 +00:00
baseScore := - 1
2017-01-12 02:55:08 +00:00
if topic {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementTopics . Exec ( - 1 , user . ID )
2017-01-12 02:55:08 +00:00
if err != nil {
return err
}
2017-09-03 04:50:31 +00:00
baseScore = - 2
2017-01-12 02:55:08 +00:00
}
2017-06-06 14:41:06 +00:00
2017-11-11 04:06:16 +00:00
settings := SettingBox . Load ( ) . ( SettingMap )
2017-06-12 09:03:14 +00:00
if wcount >= settings [ "megapost_min_words" ] . ( int ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementMegaposts . Exec ( - 1 , - 1 , - 1 , user . ID )
2017-01-12 02:55:08 +00:00
mod = 4
2017-06-12 09:03:14 +00:00
} else if wcount >= settings [ "bigpost_min_words" ] . ( int ) {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementBigposts . Exec ( - 1 , - 1 , user . ID )
2017-01-12 02:55:08 +00:00
mod = 1
} else {
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementPosts . Exec ( - 1 , user . ID )
2017-11-05 01:04:57 +00:00
}
if err != nil {
return err
2017-01-12 02:55:08 +00:00
}
2017-11-05 01:04:57 +00:00
2017-11-11 04:06:16 +00:00
_ , err = userStmts . incrementScore . Exec ( baseScore - mod , user . ID )
2017-01-12 02:55:08 +00:00
if err != nil {
return err
}
2017-09-10 16:57:22 +00:00
// TODO: Use a transaction to prevent level desyncs?
2017-11-11 04:06:16 +00:00
_ , err = userStmts . updateLevel . Exec ( GetLevel ( user . Score - baseScore - mod ) , user . ID )
2017-01-12 02:55:08 +00:00
return err
}
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
2017-09-28 22:16:34 +00:00
func ( user * User ) Copy ( ) User {
return * user
}
2017-09-25 00:48:35 +00:00
// TODO: Write unit tests for this
2017-11-11 04:06:16 +00:00
func ( user * User ) InitPerms ( ) {
2017-09-15 22:20:01 +00:00
if user . TempGroup != 0 {
user . Group = user . TempGroup
}
2017-11-23 05:37:08 +00:00
group := Groups . DirtyGet ( user . Group )
2017-09-03 04:50:31 +00:00
if user . IsSuperAdmin {
2017-08-06 15:22:18 +00:00
user . Perms = AllPerms
user . PluginPerms = AllPluginPerms
} else {
2017-09-15 22:20:01 +00:00
user . Perms = group . Perms
user . PluginPerms = group . PluginPerms
2017-08-27 09:33:45 +00:00
}
2017-09-15 22:20:01 +00:00
user . IsAdmin = user . IsSuperAdmin || group . IsAdmin
user . IsSuperMod = user . IsAdmin || group . IsMod
2017-09-03 04:50:31 +00:00
user . IsMod = user . IsSuperMod
2017-09-15 22:20:01 +00:00
user . IsBanned = group . IsBanned
2017-09-03 04:50:31 +00:00
if user . IsBanned && user . IsSuperMod {
user . IsBanned = false
2017-02-15 10:49:30 +00:00
}
2017-02-28 09:27:28 +00:00
}
2017-09-22 02:21:17 +00:00
func BcryptCheckPassword ( realPassword string , password string , salt string ) ( err error ) {
return bcrypt . CompareHashAndPassword ( [ ] byte ( realPassword ) , [ ] byte ( password + salt ) )
}
// Investigate. Do we need the extra salt?
func BcryptGeneratePassword ( password string ) ( hashedPassword string , salt string , err error ) {
2017-11-11 04:06:16 +00:00
salt , err = GenerateSafeString ( SaltLength )
2017-09-22 02:21:17 +00:00
if err != nil {
return "" , "" , err
}
password = password + salt
hashedPassword , err = BcryptGeneratePasswordNoSalt ( password )
if err != nil {
return "" , "" , err
}
return hashedPassword , salt , nil
}
func BcryptGeneratePasswordNoSalt ( password string ) ( hash string , err error ) {
hashedPassword , err := bcrypt . GenerateFromPassword ( [ ] byte ( password ) , bcrypt . DefaultCost )
if err != nil {
return "" , err
}
return string ( hashedPassword ) , nil
}
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 {
hashedPassword , salt , err := GeneratePassword ( password )
if err != nil {
return err
}
2017-11-11 04:06:16 +00:00
_ , err = userStmts . setPassword . Exec ( hashedPassword , salt , uid )
2017-09-22 02:21:17 +00:00
return err
}
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 ) {
if topic {
score = 2
} else {
score = 1
}
2017-11-11 04:06:16 +00:00
settings := SettingBox . Load ( ) . ( SettingMap )
2017-09-22 02:21:17 +00:00
if wcount >= settings [ "megapost_min_words" ] . ( int ) {
score += 4
} else if wcount >= settings [ "bigpost_min_words" ] . ( int ) {
score ++
}
return score
}
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 {
2017-09-28 22:16:34 +00:00
return & User { ID : 0 , Name : "" }
}
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 {
2017-06-28 12:05:26 +00:00
if slug == "" {
return "/user/" + strconv . Itoa ( uid )
}
return "/user/" + slug + "." + strconv . Itoa ( uid )
2017-02-28 09:27:28 +00:00
}