2014-04-10 22:20:58 +04:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package models
import (
2014-11-21 18:58:08 +03:00
"bytes"
2014-09-23 23:30:04 +04:00
"container/list"
2017-02-25 17:58:57 +03:00
"crypto/md5"
2014-04-10 22:20:58 +04:00
"crypto/sha256"
2016-12-03 08:49:17 +03:00
"crypto/subtle"
2014-04-10 22:20:58 +04:00
"encoding/hex"
"errors"
"fmt"
2014-11-21 18:58:08 +03:00
"image"
2016-11-28 19:47:46 +03:00
// Needed for jpeg support
2015-08-09 06:46:10 +03:00
_ "image/jpeg"
2015-11-14 00:43:43 +03:00
"image/png"
2014-04-10 22:20:58 +04:00
"os"
"path/filepath"
"strings"
"time"
2016-07-23 13:58:18 +03:00
"unicode/utf8"
2014-04-10 22:20:58 +04:00
2014-07-26 08:24:27 +04:00
"github.com/Unknwon/com"
2017-02-25 16:42:20 +03:00
"github.com/go-xorm/builder"
2015-09-01 19:19:52 +03:00
"github.com/go-xorm/xorm"
2014-11-21 18:58:08 +03:00
"github.com/nfnt/resize"
2016-12-15 04:24:27 +03:00
"golang.org/x/crypto/pbkdf2"
2014-04-10 22:20:58 +04:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/git"
2016-11-11 12:39:44 +03:00
api "code.gitea.io/sdk/gitea"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/avatar"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/markdown"
"code.gitea.io/gitea/modules/setting"
2014-04-10 22:20:58 +04:00
)
2016-11-28 19:47:46 +03:00
// UserType defines the user type
2014-06-25 08:44:48 +04:00
type UserType int
2014-04-10 22:20:58 +04:00
const (
2016-11-28 19:47:46 +03:00
// UserTypeIndividual defines an individual user
2016-11-07 19:53:22 +03:00
UserTypeIndividual UserType = iota // Historic reason to make it starts at 0.
2016-11-28 19:47:46 +03:00
// UserTypeOrganization defines an organization
2016-11-07 19:53:22 +03:00
UserTypeOrganization
2014-04-10 22:20:58 +04:00
)
var (
2016-11-28 19:47:46 +03:00
// ErrUserNotKeyOwner user does not own this key error
ErrUserNotKeyOwner = errors . New ( "User does not own this public key" )
// ErrEmailNotExist e-mail does not exist error
ErrEmailNotExist = errors . New ( "E-mail does not exist" )
// ErrEmailNotActivated e-mail address has not been activated error
ErrEmailNotActivated = errors . New ( "E-mail address has not been activated" )
// ErrUserNameIllegal user name contains illegal characters error
ErrUserNameIllegal = errors . New ( "User name contains illegal characters" )
// ErrLoginSourceNotActived login source is not actived error
2014-05-11 10:12:45 +04:00
ErrLoginSourceNotActived = errors . New ( "Login source is not actived" )
2016-11-28 19:47:46 +03:00
// ErrUnsupportedLoginType login source is unknown error
ErrUnsupportedLoginType = errors . New ( "Login source is unknown" )
2014-04-10 22:20:58 +04:00
)
// User represents the object of individual and member of organization.
type User struct {
2016-07-23 20:08:22 +03:00
ID int64 ` xorm:"pk autoincr" `
2014-12-17 11:26:19 +03:00
LowerName string ` xorm:"UNIQUE NOT NULL" `
Name string ` xorm:"UNIQUE NOT NULL" `
FullName string
2015-12-21 15:24:11 +03:00
// Email is the primary email address (to be used for communication)
2017-01-08 06:12:03 +03:00
Email string ` xorm:"NOT NULL" `
KeepEmailPrivate bool
Passwd string ` xorm:"NOT NULL" `
LoginType LoginType
LoginSource int64 ` xorm:"NOT NULL DEFAULT 0" `
LoginName string
Type UserType
OwnedOrgs [ ] * User ` xorm:"-" `
Orgs [ ] * User ` xorm:"-" `
Repos [ ] * Repository ` xorm:"-" `
Location string
Website string
Rands string ` xorm:"VARCHAR(10)" `
Salt string ` xorm:"VARCHAR(10)" `
2016-03-10 03:53:30 +03:00
2016-11-10 18:16:32 +03:00
Created time . Time ` xorm:"-" `
2017-01-06 18:14:33 +03:00
CreatedUnix int64 ` xorm:"INDEX" `
2016-11-10 18:16:32 +03:00
Updated time . Time ` xorm:"-" `
2017-01-06 18:14:33 +03:00
UpdatedUnix int64 ` xorm:"INDEX" `
2016-11-09 13:53:45 +03:00
LastLogin time . Time ` xorm:"-" `
2017-01-06 18:14:33 +03:00
LastLoginUnix int64 ` xorm:"INDEX" `
2014-11-21 18:58:08 +03:00
2015-10-25 11:26:26 +03:00
// Remember visibility choice for convenience, true for private
2015-08-28 11:44:04 +03:00
LastRepoVisibility bool
2016-11-27 14:59:12 +03:00
// Maximum repository creation limit, -1 means use global default
2015-12-10 20:48:45 +03:00
MaxRepoCreation int ` xorm:"NOT NULL DEFAULT -1" `
2015-08-28 11:44:04 +03:00
2015-12-21 15:24:11 +03:00
// Permissions
2017-01-06 18:14:33 +03:00
IsActive bool ` xorm:"INDEX" ` // Activate primary email
2016-12-31 05:33:30 +03:00
IsAdmin bool
AllowGitHook bool
AllowImportLocal bool // Allow migrate repository by local path
AllowCreateOrganization bool ` xorm:"DEFAULT true" `
ProhibitLogin bool
2014-11-21 18:58:08 +03:00
2015-12-21 15:24:11 +03:00
// Avatar
2014-11-21 18:58:08 +03:00
Avatar string ` xorm:"VARCHAR(2048) NOT NULL" `
AvatarEmail string ` xorm:"NOT NULL" `
UseCustomAvatar bool
2015-12-21 15:24:11 +03:00
// Counters
NumFollowers int
2015-12-22 03:09:28 +03:00
NumFollowing int ` xorm:"NOT NULL DEFAULT 0" `
2015-12-21 15:24:11 +03:00
NumStars int
NumRepos int
2014-06-25 08:44:48 +04:00
2015-12-21 15:24:11 +03:00
// For organization
2014-06-27 11:37:01 +04:00
Description string
NumTeams int
NumMembers int
2014-06-28 23:43:25 +04:00
Teams [ ] * Team ` xorm:"-" `
Members [ ] * User ` xorm:"-" `
2016-11-13 05:54:04 +03:00
// Preferences
DiffViewStyle string ` xorm:"NOT NULL DEFAULT ''" `
2014-04-10 22:20:58 +04:00
}
2016-11-28 19:47:46 +03:00
// BeforeInsert is invoked from XORM before inserting an object of this type.
2016-03-10 03:53:30 +03:00
func ( u * User ) BeforeInsert ( ) {
2016-07-23 15:24:44 +03:00
u . CreatedUnix = time . Now ( ) . Unix ( )
2016-03-10 03:53:30 +03:00
u . UpdatedUnix = u . CreatedUnix
}
2016-11-28 19:47:46 +03:00
// BeforeUpdate is invoked from XORM before updating this object.
2015-12-10 20:37:53 +03:00
func ( u * User ) BeforeUpdate ( ) {
2015-12-10 20:46:05 +03:00
if u . MaxRepoCreation < - 1 {
u . MaxRepoCreation = - 1
2015-12-10 20:37:53 +03:00
}
2016-07-23 15:24:44 +03:00
u . UpdatedUnix = time . Now ( ) . Unix ( )
2015-12-10 20:37:53 +03:00
}
2016-11-28 19:47:46 +03:00
// SetLastLogin set time to last login
2016-11-09 13:53:45 +03:00
func ( u * User ) SetLastLogin ( ) {
u . LastLoginUnix = time . Now ( ) . Unix ( )
}
2016-11-28 19:47:46 +03:00
// UpdateDiffViewStyle updates the users diff view style
2016-11-13 05:54:04 +03:00
func ( u * User ) UpdateDiffViewStyle ( style string ) error {
u . DiffViewStyle = style
return UpdateUser ( u )
}
2016-11-28 19:47:46 +03:00
// AfterSet is invoked from XORM after setting the value of a field of this object.
2015-09-01 19:19:52 +03:00
func ( u * User ) AfterSet ( colName string , _ xorm . Cell ) {
switch colName {
case "full_name" :
2017-04-13 05:52:24 +03:00
u . FullName = markdown . Sanitize ( u . FullName )
2016-03-10 03:53:30 +03:00
case "created_unix" :
u . Created = time . Unix ( u . CreatedUnix , 0 ) . Local ( )
case "updated_unix" :
u . Updated = time . Unix ( u . UpdatedUnix , 0 ) . Local ( )
2016-11-09 13:53:45 +03:00
case "last_login_unix" :
u . LastLogin = time . Unix ( u . LastLoginUnix , 0 ) . Local ( )
2015-09-01 19:19:52 +03:00
}
}
2017-01-08 06:12:03 +03:00
// getEmail returns an noreply email, if the user has set to keep his
// email address private, otherwise the primary email address.
func ( u * User ) getEmail ( ) string {
if u . KeepEmailPrivate {
return fmt . Sprintf ( "%s@%s" , u . LowerName , setting . Service . NoReplyAddress )
}
return u . Email
}
2016-11-28 19:47:46 +03:00
// APIFormat converts a User to api.User
2016-08-14 13:32:24 +03:00
func ( u * User ) APIFormat ( ) * api . User {
return & api . User {
ID : u . ID ,
UserName : u . Name ,
FullName : u . FullName ,
2017-01-08 06:12:03 +03:00
Email : u . getEmail ( ) ,
2016-11-29 11:25:47 +03:00
AvatarURL : u . AvatarLink ( ) ,
2016-08-14 13:32:24 +03:00
}
}
2016-11-28 19:47:46 +03:00
// IsLocal returns true if user login type is LoginPlain.
2015-12-11 03:02:57 +03:00
func ( u * User ) IsLocal ( ) bool {
2016-11-07 19:30:04 +03:00
return u . LoginType <= LoginPlain
2015-12-11 03:02:57 +03:00
}
2017-02-22 10:14:37 +03:00
// IsOAuth2 returns true if user login type is LoginOAuth2.
func ( u * User ) IsOAuth2 ( ) bool {
return u . LoginType == LoginOAuth2
}
2015-11-16 18:14:12 +03:00
// HasForkedRepo checks if user has already forked a repository with given ID.
func ( u * User ) HasForkedRepo ( repoID int64 ) bool {
2016-07-23 20:08:22 +03:00
_ , has := HasForkedRepo ( u . ID , repoID )
2015-11-16 18:14:12 +03:00
return has
}
2016-11-28 19:47:46 +03:00
// RepoCreationNum returns the number of repositories created by the user
2015-12-10 20:37:53 +03:00
func ( u * User ) RepoCreationNum ( ) int {
2015-12-10 20:46:05 +03:00
if u . MaxRepoCreation <= - 1 {
2015-12-10 20:37:53 +03:00
return setting . Repository . MaxCreationLimit
}
return u . MaxRepoCreation
}
2016-11-28 19:47:46 +03:00
// CanCreateRepo returns if user login can create a repository
2015-12-10 20:37:53 +03:00
func ( u * User ) CanCreateRepo ( ) bool {
2015-12-10 20:46:05 +03:00
if u . MaxRepoCreation <= - 1 {
2015-12-11 23:11:13 +03:00
if setting . Repository . MaxCreationLimit <= - 1 {
2015-12-11 00:27:47 +03:00
return true
}
2015-12-10 20:37:53 +03:00
return u . NumRepos < setting . Repository . MaxCreationLimit
}
return u . NumRepos < u . MaxRepoCreation
}
2016-12-31 05:33:30 +03:00
// CanCreateOrganization returns true if user can create organisation.
func ( u * User ) CanCreateOrganization ( ) bool {
2017-02-14 15:16:00 +03:00
return u . IsAdmin || ( u . AllowCreateOrganization && ! setting . Admin . DisableRegularOrgCreation )
2016-12-31 05:33:30 +03:00
}
2015-11-04 02:40:52 +03:00
// CanEditGitHook returns true if user can edit Git hooks.
func ( u * User ) CanEditGitHook ( ) bool {
return u . IsAdmin || u . AllowGitHook
}
// CanImportLocal returns true if user can migrate repository by local path.
func ( u * User ) CanImportLocal ( ) bool {
2017-01-23 04:19:50 +03:00
if ! setting . ImportLocalPaths {
return false
}
2015-11-04 02:40:52 +03:00
return u . IsAdmin || u . AllowImportLocal
}
2014-07-26 08:24:27 +04:00
// DashboardLink returns the user dashboard page link.
func ( u * User ) DashboardLink ( ) string {
if u . IsOrganization ( ) {
2016-11-27 13:14:25 +03:00
return setting . AppSubURL + "/org/" + u . Name + "/dashboard/"
2014-07-26 08:24:27 +04:00
}
2016-11-27 13:14:25 +03:00
return setting . AppSubURL + "/"
2014-07-26 08:24:27 +04:00
}
2015-08-26 16:45:51 +03:00
// HomeLink returns the user or organization home page link.
2014-06-25 08:44:48 +04:00
func ( u * User ) HomeLink ( ) string {
2016-11-27 13:14:25 +03:00
return setting . AppSubURL + "/" + u . Name
2014-04-10 22:20:58 +04:00
}
2015-09-17 08:54:12 +03:00
2017-02-11 15:57:33 +03:00
// HTMLURL returns the user or organization's full link.
func ( u * User ) HTMLURL ( ) string {
return setting . AppURL + u . Name
}
2015-09-17 08:54:12 +03:00
// GenerateEmailActivateCode generates an activate code based on user information and given e-mail.
func ( u * User ) GenerateEmailActivateCode ( email string ) string {
code := base . CreateTimeLimitCode (
2016-07-23 20:08:22 +03:00
com . ToStr ( u . ID ) + email + u . LowerName + u . Passwd + u . Rands ,
2015-09-17 08:54:12 +03:00
setting . Service . ActiveCodeLives , nil )
// Add tail hex username
code += hex . EncodeToString ( [ ] byte ( u . LowerName ) )
return code
}
// GenerateActivateCode generates an activate code based on user information.
func ( u * User ) GenerateActivateCode ( ) string {
return u . GenerateEmailActivateCode ( u . Email )
}
2014-04-10 22:20:58 +04:00
2015-09-06 17:08:14 +03:00
// CustomAvatarPath returns user custom avatar file path.
func ( u * User ) CustomAvatarPath ( ) string {
2017-02-25 17:58:57 +03:00
return filepath . Join ( setting . AvatarUploadPath , u . Avatar )
2015-09-06 17:08:14 +03:00
}
// GenerateRandomAvatar generates a random avatar for user.
func ( u * User ) GenerateRandomAvatar ( ) error {
2017-03-08 18:05:15 +03:00
return u . generateRandomAvatar ( x )
}
func ( u * User ) generateRandomAvatar ( e Engine ) error {
2015-09-06 17:08:14 +03:00
seed := u . Email
if len ( seed ) == 0 {
seed = u . Name
}
img , err := avatar . RandomImage ( [ ] byte ( seed ) )
if err != nil {
return fmt . Errorf ( "RandomImage: %v" , err )
}
2017-03-06 11:15:40 +03:00
// NOTICE for random avatar, it still uses id as avatar name, but custom avatar use md5
// since random image is not a user's photo, there is no security for enumable
u . Avatar = fmt . Sprintf ( "%d" , u . ID )
2016-02-02 18:22:27 +03:00
if err = os . MkdirAll ( filepath . Dir ( u . CustomAvatarPath ( ) ) , os . ModePerm ) ; err != nil {
2015-09-06 17:08:14 +03:00
return fmt . Errorf ( "MkdirAll: %v" , err )
}
fw , err := os . Create ( u . CustomAvatarPath ( ) )
if err != nil {
return fmt . Errorf ( "Create: %v" , err )
}
defer fw . Close ( )
2017-03-08 18:05:15 +03:00
if _ , err := e . Id ( u . ID ) . Cols ( "avatar" ) . Update ( u ) ; err != nil {
return err
}
2016-07-21 10:31:14 +03:00
if err = png . Encode ( fw , img ) ; err != nil {
2015-09-06 17:08:14 +03:00
return fmt . Errorf ( "Encode: %v" , err )
}
2016-07-23 20:08:22 +03:00
log . Info ( "New random avatar created: %d" , u . ID )
2015-09-06 17:08:14 +03:00
return nil
}
2016-08-07 20:13:05 +03:00
// RelAvatarLink returns relative avatar link to the site domain,
// which includes app sub-url as prefix. However, it is possible
// to return full URL if user enables Gravatar-like service.
2015-08-28 18:36:13 +03:00
func ( u * User ) RelAvatarLink ( ) string {
2016-11-28 19:47:46 +03:00
defaultImgURL := setting . AppSubURL + "/img/avatar_default.png"
2016-07-23 20:08:22 +03:00
if u . ID == - 1 {
2016-11-28 19:47:46 +03:00
return defaultImgURL
2015-08-14 21:48:05 +03:00
}
2014-11-21 18:58:08 +03:00
switch {
case u . UseCustomAvatar :
2017-02-27 03:42:22 +03:00
if ! com . IsFile ( u . CustomAvatarPath ( ) ) {
2016-11-28 19:47:46 +03:00
return defaultImgURL
2015-08-09 06:46:10 +03:00
}
2017-02-25 17:58:57 +03:00
return setting . AppSubURL + "/avatars/" + u . Avatar
2015-03-13 03:32:38 +03:00
case setting . DisableGravatar , setting . OfflineMode :
2017-02-27 03:42:22 +03:00
if ! com . IsFile ( u . CustomAvatarPath ( ) ) {
2015-09-06 17:08:14 +03:00
if err := u . GenerateRandomAvatar ( ) ; err != nil {
log . Error ( 3 , "GenerateRandomAvatar: %v" , err )
2015-08-09 06:46:10 +03:00
}
}
2017-02-25 17:58:57 +03:00
return setting . AppSubURL + "/avatars/" + u . Avatar
2014-04-10 22:20:58 +04:00
}
2016-08-07 20:27:38 +03:00
return base . AvatarLink ( u . AvatarEmail )
2014-04-10 22:20:58 +04:00
}
2016-08-05 22:12:54 +03:00
// AvatarLink returns user avatar absolute link.
2015-08-28 18:36:13 +03:00
func ( u * User ) AvatarLink ( ) string {
link := u . RelAvatarLink ( )
2015-09-02 12:16:30 +03:00
if link [ 0 ] == '/' && link [ 1 ] != '/' {
2016-11-27 13:14:25 +03:00
return setting . AppURL + strings . TrimPrefix ( link , setting . AppSubURL ) [ 1 : ]
2015-08-28 18:36:13 +03:00
}
return link
}
2016-11-28 19:47:46 +03:00
// GetFollowers returns range of user's followers.
2015-12-21 15:24:11 +03:00
func ( u * User ) GetFollowers ( page int ) ( [ ] * User , error ) {
users := make ( [ ] * User , 0 , ItemsPerPage )
2016-11-10 18:16:32 +03:00
sess := x .
Limit ( ItemsPerPage , ( page - 1 ) * ItemsPerPage ) .
Where ( "follow.follow_id=?" , u . ID )
2015-12-21 15:24:11 +03:00
if setting . UsePostgreSQL {
sess = sess . Join ( "LEFT" , "follow" , ` "user".id=follow.user_id ` )
} else {
sess = sess . Join ( "LEFT" , "follow" , "user.id=follow.user_id" )
}
return users , sess . Find ( & users )
}
2016-11-28 19:47:46 +03:00
// IsFollowing returns true if user is following followID.
2015-12-21 15:24:11 +03:00
func ( u * User ) IsFollowing ( followID int64 ) bool {
2016-07-23 20:08:22 +03:00
return IsFollowing ( u . ID , followID )
2015-12-21 15:24:11 +03:00
}
// GetFollowing returns range of user's following.
func ( u * User ) GetFollowing ( page int ) ( [ ] * User , error ) {
users := make ( [ ] * User , 0 , ItemsPerPage )
2016-11-10 18:16:32 +03:00
sess := x .
Limit ( ItemsPerPage , ( page - 1 ) * ItemsPerPage ) .
Where ( "follow.user_id=?" , u . ID )
2015-12-21 15:24:11 +03:00
if setting . UsePostgreSQL {
sess = sess . Join ( "LEFT" , "follow" , ` "user".id=follow.follow_id ` )
} else {
sess = sess . Join ( "LEFT" , "follow" , "user.id=follow.follow_id" )
}
return users , sess . Find ( & users )
}
2014-04-10 22:20:58 +04:00
// NewGitSig generates and returns the signature of given user.
2014-06-25 08:44:48 +04:00
func ( u * User ) NewGitSig ( ) * git . Signature {
2014-04-10 22:20:58 +04:00
return & git . Signature {
2016-08-27 23:37:55 +03:00
Name : u . DisplayName ( ) ,
2017-01-08 06:12:03 +03:00
Email : u . getEmail ( ) ,
2014-04-10 22:20:58 +04:00
When : time . Now ( ) ,
}
}
// EncodePasswd encodes password to safe format.
2014-06-25 08:44:48 +04:00
func ( u * User ) EncodePasswd ( ) {
2016-12-15 04:24:27 +03:00
newPasswd := pbkdf2 . Key ( [ ] byte ( u . Passwd ) , [ ] byte ( u . Salt ) , 10000 , 50 , sha256 . New )
2014-06-25 08:44:48 +04:00
u . Passwd = fmt . Sprintf ( "%x" , newPasswd )
}
2015-04-16 21:40:39 +03:00
// ValidatePassword checks if given password matches the one belongs to the user.
2015-04-16 21:36:32 +03:00
func ( u * User ) ValidatePassword ( passwd string ) bool {
2014-08-02 21:47:33 +04:00
newUser := & User { Passwd : passwd , Salt : u . Salt }
newUser . EncodePasswd ( )
2016-12-03 08:49:17 +03:00
return subtle . ConstantTimeCompare ( [ ] byte ( u . Passwd ) , [ ] byte ( newUser . Passwd ) ) == 1
2014-08-02 21:47:33 +04:00
}
2017-02-22 10:14:37 +03:00
// IsPasswordSet checks if the password is set or left empty
func ( u * User ) IsPasswordSet ( ) bool {
return ! u . ValidatePassword ( "" )
}
2014-11-21 18:58:08 +03:00
// UploadAvatar saves custom avatar for user.
2014-12-07 04:22:48 +03:00
// FIXME: split uploads to different subdirs in case we have massive users.
2014-11-21 18:58:08 +03:00
func ( u * User ) UploadAvatar ( data [ ] byte ) error {
img , _ , err := image . Decode ( bytes . NewReader ( data ) )
if err != nil {
2015-11-14 00:43:43 +03:00
return fmt . Errorf ( "Decode: %v" , err )
2014-11-21 18:58:08 +03:00
}
2015-09-07 01:19:30 +03:00
2016-11-25 11:37:04 +03:00
m := resize . Resize ( avatar . AvatarSize , avatar . AvatarSize , img , resize . NearestNeighbor )
2014-11-21 18:58:08 +03:00
sess := x . NewSession ( )
2015-09-07 01:19:30 +03:00
defer sessionRelease ( sess )
2014-11-21 18:58:08 +03:00
if err = sess . Begin ( ) ; err != nil {
return err
}
2015-11-14 00:43:43 +03:00
u . UseCustomAvatar = true
2017-02-25 17:58:57 +03:00
u . Avatar = fmt . Sprintf ( "%x" , md5 . Sum ( data ) )
2015-11-14 00:43:43 +03:00
if err = updateUser ( sess , u ) ; err != nil {
return fmt . Errorf ( "updateUser: %v" , err )
2014-11-21 18:58:08 +03:00
}
2016-12-01 02:56:15 +03:00
if err := os . MkdirAll ( setting . AvatarUploadPath , os . ModePerm ) ; err != nil {
2017-01-29 23:13:57 +03:00
return fmt . Errorf ( "Failed to create dir %s: %v" , setting . AvatarUploadPath , err )
2016-12-01 02:56:15 +03:00
}
2014-11-22 18:22:53 +03:00
fw , err := os . Create ( u . CustomAvatarPath ( ) )
2014-11-21 18:58:08 +03:00
if err != nil {
2015-11-14 00:43:43 +03:00
return fmt . Errorf ( "Create: %v" , err )
2014-11-21 18:58:08 +03:00
}
defer fw . Close ( )
2015-09-07 01:19:30 +03:00
2015-11-14 00:43:43 +03:00
if err = png . Encode ( fw , m ) ; err != nil {
return fmt . Errorf ( "Encode: %v" , err )
2014-11-21 18:58:08 +03:00
}
return sess . Commit ( )
}
2016-03-06 19:36:30 +03:00
// DeleteAvatar deletes the user's custom avatar.
func ( u * User ) DeleteAvatar ( ) error {
2016-07-23 20:08:22 +03:00
log . Trace ( "DeleteAvatar[%d]: %s" , u . ID , u . CustomAvatarPath ( ) )
2017-03-06 11:15:40 +03:00
if len ( u . Avatar ) > 0 {
if err := os . Remove ( u . CustomAvatarPath ( ) ) ; err != nil {
return fmt . Errorf ( "Failed to remove %s: %v" , u . CustomAvatarPath ( ) , err )
}
2016-12-01 02:56:15 +03:00
}
2016-03-06 19:36:30 +03:00
u . UseCustomAvatar = false
2017-03-06 11:15:40 +03:00
u . Avatar = ""
if _ , err := x . Id ( u . ID ) . Cols ( "avatar, use_custom_avatar" ) . Update ( u ) ; err != nil {
2016-03-06 21:24:42 +03:00
return fmt . Errorf ( "UpdateUser: %v" , err )
2016-03-06 19:36:30 +03:00
}
return nil
}
2015-08-13 21:43:40 +03:00
// IsAdminOfRepo returns true if user has admin or higher access of repository.
func ( u * User ) IsAdminOfRepo ( repo * Repository ) bool {
2017-03-15 03:51:46 +03:00
has , err := HasAccess ( u . ID , repo , AccessModeAdmin )
2016-03-06 04:45:23 +03:00
if err != nil {
log . Error ( 3 , "HasAccess: %v" , err )
2015-08-13 21:43:40 +03:00
}
2016-03-06 04:45:23 +03:00
return has
2015-08-13 21:43:40 +03:00
}
2016-03-06 04:45:23 +03:00
// IsWriterOfRepo returns true if user has write access to given repository.
func ( u * User ) IsWriterOfRepo ( repo * Repository ) bool {
2017-03-15 03:51:46 +03:00
has , err := HasAccess ( u . ID , repo , AccessModeWrite )
2016-03-04 23:43:01 +03:00
if err != nil {
log . Error ( 3 , "HasAccess: %v" , err )
}
return has
}
2014-06-28 08:40:07 +04:00
// IsOrganization returns true if user is actually a organization.
2014-06-25 08:44:48 +04:00
func ( u * User ) IsOrganization ( ) bool {
2016-11-07 19:53:22 +03:00
return u . Type == UserTypeOrganization
2014-06-25 08:44:48 +04:00
}
2014-08-15 14:29:41 +04:00
// IsUserOrgOwner returns true if user is in the owner team of given organization.
2016-11-28 19:47:46 +03:00
func ( u * User ) IsUserOrgOwner ( orgID int64 ) bool {
return IsOrganizationOwner ( orgID , u . ID )
2014-08-15 14:29:41 +04:00
}
2017-01-20 08:16:10 +03:00
// IsPublicMember returns true if user public his/her membership in given organization.
2016-11-28 19:47:46 +03:00
func ( u * User ) IsPublicMember ( orgID int64 ) bool {
return IsPublicMembership ( orgID , u . ID )
2014-08-15 14:29:41 +04:00
}
2015-09-06 15:54:08 +03:00
func ( u * User ) getOrganizationCount ( e Engine ) ( int64 , error ) {
2016-11-10 18:16:32 +03:00
return e .
Where ( "uid=?" , u . ID ) .
Count ( new ( OrgUser ) )
2015-09-06 15:54:08 +03:00
}
2014-06-28 23:43:25 +04:00
// GetOrganizationCount returns count of membership of organization of user.
func ( u * User ) GetOrganizationCount ( ) ( int64 , error ) {
2015-09-06 15:54:08 +03:00
return u . getOrganizationCount ( x )
2014-06-28 23:43:25 +04:00
}
2016-07-24 09:32:46 +03:00
// GetRepositories returns repositories that user owns, including private repositories.
func ( u * User ) GetRepositories ( page , pageSize int ) ( err error ) {
2017-02-04 15:20:20 +03:00
u . Repos , err = GetUserRepositories ( u . ID , true , page , pageSize , "" )
2014-08-24 17:09:05 +04:00
return err
}
2017-02-17 03:58:19 +03:00
// GetRepositoryIDs returns repositories IDs where user owned
func ( u * User ) GetRepositoryIDs ( ) ( [ ] int64 , error ) {
var ids [ ] int64
return ids , x . Table ( "repository" ) . Cols ( "id" ) . Where ( "owner_id = ?" , u . ID ) . Find ( & ids )
}
// GetOrgRepositoryIDs returns repositories IDs where user's team owned
func ( u * User ) GetOrgRepositoryIDs ( ) ( [ ] int64 , error ) {
var ids [ ] int64
return ids , x . Table ( "repository" ) .
Cols ( "repository.id" ) .
Join ( "INNER" , "team_user" , "repository.owner_id = team_user.org_id AND team_user.uid = ?" , u . ID ) .
GroupBy ( "repository.id" ) . Find ( & ids )
}
2017-03-15 03:52:01 +03:00
// GetAccessRepoIDs returns all repositories IDs where user's or user is a team member organizations
2017-02-17 03:58:19 +03:00
func ( u * User ) GetAccessRepoIDs ( ) ( [ ] int64 , error ) {
ids , err := u . GetRepositoryIDs ( )
if err != nil {
return nil , err
}
ids2 , err := u . GetOrgRepositoryIDs ( )
if err != nil {
return nil , err
}
return append ( ids , ids2 ... ) , nil
}
2016-11-28 19:47:46 +03:00
// GetMirrorRepositories returns mirror repositories that user owns, including private repositories.
2016-07-24 09:32:46 +03:00
func ( u * User ) GetMirrorRepositories ( ) ( [ ] * Repository , error ) {
return GetUserMirrorRepositories ( u . ID )
}
2015-09-07 20:58:23 +03:00
// GetOwnedOrganizations returns all organizations that user owns.
func ( u * User ) GetOwnedOrganizations ( ) ( err error ) {
2016-07-23 20:08:22 +03:00
u . OwnedOrgs , err = GetOwnedOrgsByUserID ( u . ID )
2015-09-07 20:58:23 +03:00
return err
}
2014-06-28 08:40:07 +04:00
// GetOrganizations returns all organizations that user belongs to.
2015-12-17 10:28:47 +03:00
func ( u * User ) GetOrganizations ( all bool ) error {
2016-07-23 20:08:22 +03:00
ous , err := GetOrgUsersByUserID ( u . ID , all )
2014-06-25 08:44:48 +04:00
if err != nil {
return err
}
u . Orgs = make ( [ ] * User , len ( ous ) )
for i , ou := range ous {
2015-08-08 17:43:14 +03:00
u . Orgs [ i ] , err = GetUserByID ( ou . OrgID )
2014-06-25 08:44:48 +04:00
if err != nil {
return err
}
}
return nil
2014-04-10 22:20:58 +04:00
}
2015-08-27 08:26:38 +03:00
// DisplayName returns full name if it's not empty,
// returns username otherwise.
func ( u * User ) DisplayName ( ) string {
if len ( u . FullName ) > 0 {
return u . FullName
2014-09-17 17:11:51 +04:00
}
2015-08-27 08:26:38 +03:00
return u . Name
2014-09-17 17:11:51 +04:00
}
2016-11-28 19:47:46 +03:00
// ShortName ellipses username to length
2015-11-19 01:42:20 +03:00
func ( u * User ) ShortName ( length int ) string {
2016-01-11 15:41:43 +03:00
return base . EllipsisString ( u . Name , length )
2015-11-19 01:42:20 +03:00
}
2017-03-15 03:52:01 +03:00
// IsMailable checks if a user is eligible
2017-02-02 15:33:36 +03:00
// to receive emails.
func ( u * User ) IsMailable ( ) bool {
return u . IsActive
}
2014-04-10 22:20:58 +04:00
// IsUserExist checks if given user name exist,
// the user name should be noncased unique.
2015-02-23 02:24:49 +03:00
// If uid is presented, then check will rule out that one,
// it is used when update a user name in settings page.
func IsUserExist ( uid int64 , name string ) ( bool , error ) {
2014-04-10 22:20:58 +04:00
if len ( name ) == 0 {
return false , nil
}
2016-11-10 18:16:32 +03:00
return x .
Where ( "id!=?" , uid ) .
Get ( & User { LowerName : strings . ToLower ( name ) } )
2014-04-10 22:20:58 +04:00
}
2017-03-15 03:52:01 +03:00
// GetUserSalt returns a random user salt token.
2016-12-20 15:32:02 +03:00
func GetUserSalt ( ) ( string , error ) {
2014-04-10 22:20:58 +04:00
return base . GetRandomString ( 10 )
}
2016-08-14 13:32:24 +03:00
// NewGhostUser creates and returns a fake user for someone has deleted his/her account.
func NewGhostUser ( ) * User {
2015-08-14 21:48:05 +03:00
return & User {
2016-07-23 20:08:22 +03:00
ID : - 1 ,
2016-08-14 13:32:24 +03:00
Name : "Ghost" ,
LowerName : "ghost" ,
2015-08-14 21:48:05 +03:00
}
}
2016-07-23 13:58:18 +03:00
var (
2017-03-12 04:39:38 +03:00
reservedUsernames = [ ] string { "assets" , "css" , "explore" , "img" , "js" , "less" , "plugins" , "debug" , "raw" , "install" , "api" , "avatar" , "user" , "org" , "help" , "stars" , "issues" , "pulls" , "commits" , "repo" , "template" , "admin" , "new" , "." , ".." }
2016-11-12 15:26:45 +03:00
reservedUserPatterns = [ ] string { "*.keys" }
2016-07-23 13:58:18 +03:00
)
// isUsableName checks if name is reserved or pattern of name is not allowed
2016-11-12 15:26:45 +03:00
// based on given reserved names and patterns.
2016-07-23 13:58:18 +03:00
// Names are exact match, patterns can be prefix or suffix match with placeholder '*'.
func isUsableName ( names , patterns [ ] string , name string ) error {
name = strings . TrimSpace ( strings . ToLower ( name ) )
if utf8 . RuneCountInString ( name ) == 0 {
return ErrNameEmpty
}
for i := range names {
if name == names [ i ] {
return ErrNameReserved { name }
}
}
for _ , pat := range patterns {
if pat [ 0 ] == '*' && strings . HasSuffix ( name , pat [ 1 : ] ) ||
( pat [ len ( pat ) - 1 ] == '*' && strings . HasPrefix ( name , pat [ : len ( pat ) - 1 ] ) ) {
return ErrNamePatternNotAllowed { pat }
}
}
return nil
}
2016-11-28 19:47:46 +03:00
// IsUsableUsername returns an error when a username is reserved
2016-07-23 13:58:18 +03:00
func IsUsableUsername ( name string ) error {
2016-11-12 15:26:45 +03:00
return isUsableName ( reservedUsernames , reservedUserPatterns , name )
2016-07-23 13:58:18 +03:00
}
2014-06-25 08:44:48 +04:00
// CreateUser creates record of a new user.
2015-03-27 00:11:47 +03:00
func CreateUser ( u * User ) ( err error ) {
2016-07-23 13:58:18 +03:00
if err = IsUsableUsername ( u . Name ) ; err != nil {
2015-03-27 00:11:47 +03:00
return err
2014-06-25 08:44:48 +04:00
}
2015-02-23 02:24:49 +03:00
isExist , err := IsUserExist ( 0 , u . Name )
2014-06-25 08:44:48 +04:00
if err != nil {
2014-07-26 08:24:27 +04:00
return err
2014-06-25 08:44:48 +04:00
} else if isExist {
2015-03-27 00:11:47 +03:00
return ErrUserAlreadyExist { u . Name }
2014-06-25 08:44:48 +04:00
}
2015-11-24 04:43:04 +03:00
u . Email = strings . ToLower ( u . Email )
2017-01-05 03:52:20 +03:00
has , err := x .
Where ( "email=?" , u . Email ) .
Get ( new ( User ) )
if err != nil {
return err
} else if has {
return ErrEmailAlreadyUsed { u . Email }
}
2014-06-25 08:44:48 +04:00
isExist , err = IsEmailUsed ( u . Email )
if err != nil {
2014-07-26 08:24:27 +04:00
return err
2014-06-25 08:44:48 +04:00
} else if isExist {
2015-03-27 00:11:47 +03:00
return ErrEmailAlreadyUsed { u . Email }
2014-06-25 08:44:48 +04:00
}
2017-01-08 06:12:03 +03:00
u . KeepEmailPrivate = setting . Service . DefaultKeepEmailPrivate
2014-06-25 08:44:48 +04:00
u . LowerName = strings . ToLower ( u . Name )
u . AvatarEmail = u . Email
2016-02-15 07:14:55 +03:00
u . Avatar = base . HashEmail ( u . AvatarEmail )
2016-12-20 15:32:02 +03:00
if u . Rands , err = GetUserSalt ( ) ; err != nil {
return err
}
if u . Salt , err = GetUserSalt ( ) ; err != nil {
return err
}
2014-06-25 08:44:48 +04:00
u . EncodePasswd ( )
2016-12-31 05:33:30 +03:00
u . AllowCreateOrganization = true
2015-12-11 23:11:13 +03:00
u . MaxRepoCreation = - 1
2014-06-25 08:44:48 +04:00
sess := x . NewSession ( )
2016-07-16 05:08:04 +03:00
defer sessionRelease ( sess )
2014-06-25 08:44:48 +04:00
if err = sess . Begin ( ) ; err != nil {
2014-07-26 08:24:27 +04:00
return err
2014-06-25 08:44:48 +04:00
}
if _ , err = sess . Insert ( u ) ; err != nil {
2014-07-26 08:24:27 +04:00
return err
} else if err = os . MkdirAll ( UserPath ( u . Name ) , os . ModePerm ) ; err != nil {
return err
2014-06-25 08:44:48 +04:00
}
2014-04-22 20:55:27 +04:00
2015-08-18 23:58:45 +03:00
return sess . Commit ( )
2014-06-25 08:44:48 +04:00
}
2015-08-06 19:00:11 +03:00
func countUsers ( e Engine ) int64 {
2016-11-10 18:16:32 +03:00
count , _ := e .
Where ( "type=0" ) .
Count ( new ( User ) )
2015-08-06 19:00:11 +03:00
return count
}
2014-07-07 12:15:08 +04:00
// CountUsers returns number of users.
func CountUsers ( ) int64 {
2015-08-06 19:00:11 +03:00
return countUsers ( x )
2014-07-07 12:15:08 +04:00
}
2015-09-12 03:42:26 +03:00
// Users returns number of users in given page.
2016-12-24 17:42:26 +03:00
func Users ( opts * SearchUserOptions ) ( [ ] * User , error ) {
if len ( opts . OrderBy ) == 0 {
opts . OrderBy = "name ASC"
}
users := make ( [ ] * User , 0 , opts . PageSize )
sess := x .
Limit ( opts . PageSize , ( opts . Page - 1 ) * opts . PageSize ) .
Where ( "type=0" )
return users , sess .
OrderBy ( opts . OrderBy ) .
2016-11-10 18:16:32 +03:00
Find ( & users )
2014-04-10 22:20:58 +04:00
}
2017-01-05 03:50:34 +03:00
// get user by verify code
2014-04-10 22:20:58 +04:00
func getVerifyUser ( code string ) ( user * User ) {
if len ( code ) <= base . TimeLimitCodeLength {
return nil
}
// use tail hex username query user
hexStr := code [ base . TimeLimitCodeLength : ]
if b , err := hex . DecodeString ( hexStr ) ; err == nil {
if user , err = GetUserByName ( string ( b ) ) ; user != nil {
return user
}
2014-07-26 08:24:27 +04:00
log . Error ( 4 , "user.getVerifyUser: %v" , err )
2014-04-10 22:20:58 +04:00
}
return nil
}
2016-11-28 19:47:46 +03:00
// VerifyUserActiveCode verifies active code when active account
2014-04-10 22:20:58 +04:00
func VerifyUserActiveCode ( code string ) ( user * User ) {
2014-05-26 04:11:25 +04:00
minutes := setting . Service . ActiveCodeLives
2014-04-10 22:20:58 +04:00
if user = getVerifyUser ( code ) ; user != nil {
// time limit code
prefix := code [ : base . TimeLimitCodeLength ]
2016-07-23 20:08:22 +03:00
data := com . ToStr ( user . ID ) + user . Email + user . LowerName + user . Passwd + user . Rands
2014-04-10 22:20:58 +04:00
if base . VerifyTimeLimitCode ( data , minutes , prefix ) {
return user
}
}
return nil
}
2016-11-28 19:47:46 +03:00
// VerifyActiveEmailCode verifies active email code when active account
2014-12-17 18:40:10 +03:00
func VerifyActiveEmailCode ( code , email string ) * EmailAddress {
minutes := setting . Service . ActiveCodeLives
if user := getVerifyUser ( code ) ; user != nil {
// time limit code
prefix := code [ : base . TimeLimitCodeLength ]
2016-07-23 20:08:22 +03:00
data := com . ToStr ( user . ID ) + email + user . LowerName + user . Passwd + user . Rands
2014-12-17 18:40:10 +03:00
if base . VerifyTimeLimitCode ( data , minutes , prefix ) {
emailAddress := & EmailAddress { Email : email }
if has , _ := x . Get ( emailAddress ) ; has {
return emailAddress
}
}
}
return nil
}
2014-04-10 22:20:58 +04:00
// ChangeUserName changes all corresponding setting from old user name to new one.
2014-07-26 08:24:27 +04:00
func ChangeUserName ( u * User , newUserName string ) ( err error ) {
2016-07-23 13:58:18 +03:00
if err = IsUsableUsername ( newUserName ) ; err != nil {
2015-03-27 00:11:47 +03:00
return err
}
isExist , err := IsUserExist ( 0 , newUserName )
if err != nil {
return err
} else if isExist {
return ErrUserAlreadyExist { newUserName }
2014-07-26 08:24:27 +04:00
}
2016-02-05 22:11:53 +03:00
if err = ChangeUsernameInPullRequests ( u . Name , newUserName ) ; err != nil {
2016-01-28 14:07:16 +03:00
return fmt . Errorf ( "ChangeUsernameInPullRequests: %v" , err )
2016-01-28 00:45:03 +03:00
}
2016-02-05 22:11:53 +03:00
// Delete all local copies of repository wiki that user owns.
2016-11-10 18:16:32 +03:00
if err = x .
Where ( "owner_id=?" , u . ID ) .
Iterate ( new ( Repository ) , func ( idx int , bean interface { } ) error {
repo := bean . ( * Repository )
RemoveAllWithNotice ( "Delete repository wiki local copy" , repo . LocalWikiPath ( ) )
return nil
} ) ; err != nil {
2016-02-05 22:11:53 +03:00
return fmt . Errorf ( "Delete repository wiki local copy: %v" , err )
}
2016-01-28 14:07:16 +03:00
return os . Rename ( UserPath ( u . Name ) , UserPath ( newUserName ) )
2014-04-10 22:20:58 +04:00
}
2017-02-25 17:53:57 +03:00
// checkDupEmail checks whether there are the same email with the user
func checkDupEmail ( e Engine , u * User ) error {
u . Email = strings . ToLower ( u . Email )
has , err := e .
Where ( "id!=?" , u . ID ) .
And ( "type=?" , u . Type ) .
And ( "email=?" , u . Email ) .
Get ( new ( User ) )
if err != nil {
return err
} else if has {
return ErrEmailAlreadyUsed { u . Email }
}
return nil
}
2015-08-29 20:13:24 +03:00
func updateUser ( e Engine , u * User ) error {
2016-03-05 08:51:51 +03:00
// Organization does not need email
2017-02-25 17:53:57 +03:00
u . Email = strings . ToLower ( u . Email )
2015-09-06 17:08:14 +03:00
if ! u . IsOrganization ( ) {
if len ( u . AvatarEmail ) == 0 {
u . AvatarEmail = u . Email
}
2016-02-15 07:14:55 +03:00
u . Avatar = base . HashEmail ( u . AvatarEmail )
2014-12-01 02:29:16 +03:00
}
2014-06-06 06:07:35 +04:00
u . LowerName = strings . ToLower ( u . Name )
2016-03-05 08:51:51 +03:00
u . Location = base . TruncateString ( u . Location , 255 )
u . Website = base . TruncateString ( u . Website , 255 )
u . Description = base . TruncateString ( u . Description , 255 )
2014-04-10 22:20:58 +04:00
2017-04-13 05:52:24 +03:00
u . FullName = markdown . Sanitize ( u . FullName )
2016-07-23 20:08:22 +03:00
_ , err := e . Id ( u . ID ) . AllCols ( ) . Update ( u )
2014-04-10 22:20:58 +04:00
return err
}
2015-08-29 20:13:24 +03:00
// UpdateUser updates user's information.
func UpdateUser ( u * User ) error {
return updateUser ( x , u )
2017-02-25 17:53:57 +03:00
}
// UpdateUserSetting updates user's settings.
func UpdateUserSetting ( u * User ) error {
if ! u . IsOrganization ( ) {
if err := checkDupEmail ( x , u ) ; err != nil {
return err
}
}
return updateUser ( x , u )
2015-08-29 20:13:24 +03:00
}
2015-09-06 15:54:08 +03:00
// deleteBeans deletes all given beans, beans should contain delete conditions.
func deleteBeans ( e Engine , beans ... interface { } ) ( err error ) {
2015-03-18 04:51:39 +03:00
for i := range beans {
if _ , err = e . Delete ( beans [ i ] ) ; err != nil {
return err
}
}
return nil
}
2014-11-13 13:27:01 +03:00
// FIXME: need some kind of mechanism to record failure. HINT: system notice
2015-09-06 15:54:08 +03:00
func deleteUser ( e * xorm . Session , u * User ) error {
2015-08-17 12:05:37 +03:00
// Note: A user owns any repository or belongs to any organization
// cannot perform delete operation.
2014-04-10 22:20:58 +04:00
// Check ownership of repository.
2015-09-06 15:54:08 +03:00
count , err := getRepositoryCount ( e , u )
2014-04-10 22:20:58 +04:00
if err != nil {
2015-03-18 04:51:39 +03:00
return fmt . Errorf ( "GetRepositoryCount: %v" , err )
2014-04-10 22:20:58 +04:00
} else if count > 0 {
2016-07-23 20:08:22 +03:00
return ErrUserOwnRepos { UID : u . ID }
2014-04-10 22:20:58 +04:00
}
2014-06-27 11:37:01 +04:00
// Check membership of organization.
2015-09-06 15:54:08 +03:00
count , err = u . getOrganizationCount ( e )
2014-06-27 11:37:01 +04:00
if err != nil {
2015-03-18 04:51:39 +03:00
return fmt . Errorf ( "GetOrganizationCount: %v" , err )
2014-06-27 11:37:01 +04:00
} else if count > 0 {
2016-07-23 20:08:22 +03:00
return ErrUserHasOrgs { UID : u . ID }
2014-06-27 11:37:01 +04:00
}
2015-08-17 12:05:37 +03:00
// ***** START: Watch *****
2015-03-18 04:51:39 +03:00
watches := make ( [ ] * Watch , 0 , 10 )
2016-07-23 20:08:22 +03:00
if err = e . Find ( & watches , & Watch { UserID : u . ID } ) ; err != nil {
2015-03-18 04:51:39 +03:00
return fmt . Errorf ( "get all watches: %v" , err )
2014-04-10 22:20:58 +04:00
}
2015-03-18 04:51:39 +03:00
for i := range watches {
2015-09-06 15:54:08 +03:00
if _ , err = e . Exec ( "UPDATE `repository` SET num_watches=num_watches-1 WHERE id=?" , watches [ i ] . RepoID ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "decrease repository watch number[%d]: %v" , watches [ i ] . RepoID , err )
}
2014-04-12 05:47:39 +04:00
}
2015-08-17 12:05:37 +03:00
// ***** END: Watch *****
2015-03-18 04:51:39 +03:00
2015-08-17 12:05:37 +03:00
// ***** START: Star *****
stars := make ( [ ] * Star , 0 , 10 )
2016-07-23 20:08:22 +03:00
if err = e . Find ( & stars , & Star { UID : u . ID } ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "get all stars: %v" , err )
}
for i := range stars {
2015-09-06 15:54:08 +03:00
if _ , err = e . Exec ( "UPDATE `repository` SET num_stars=num_stars-1 WHERE id=?" , stars [ i ] . RepoID ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "decrease repository star number[%d]: %v" , stars [ i ] . RepoID , err )
}
}
// ***** END: Star *****
2015-03-18 04:51:39 +03:00
2015-08-17 12:05:37 +03:00
// ***** START: Follow *****
followers := make ( [ ] * Follow , 0 , 10 )
2016-07-23 20:08:22 +03:00
if err = e . Find ( & followers , & Follow { UserID : u . ID } ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "get all followers: %v" , err )
}
for i := range followers {
2015-09-06 15:54:08 +03:00
if _ , err = e . Exec ( "UPDATE `user` SET num_followers=num_followers-1 WHERE id=?" , followers [ i ] . UserID ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "decrease user follower number[%d]: %v" , followers [ i ] . UserID , err )
}
2014-04-10 22:20:58 +04:00
}
2015-08-17 12:05:37 +03:00
// ***** END: Follow *****
2015-03-18 04:51:39 +03:00
2015-09-06 15:54:08 +03:00
if err = deleteBeans ( e ,
2016-07-23 20:08:22 +03:00
& AccessToken { UID : u . ID } ,
& Collaboration { UserID : u . ID } ,
& Access { UserID : u . ID } ,
& Watch { UserID : u . ID } ,
& Star { UID : u . ID } ,
& Follow { FollowID : u . ID } ,
& Action { UserID : u . ID } ,
& IssueUser { UID : u . ID } ,
& EmailAddress { UID : u . ID } ,
2017-03-17 17:16:08 +03:00
& UserOpenID { UID : u . ID } ,
2015-03-18 04:51:39 +03:00
) ; err != nil {
2015-12-01 04:45:55 +03:00
return fmt . Errorf ( "deleteBeans: %v" , err )
2014-04-10 22:20:58 +04:00
}
2015-03-18 04:51:39 +03:00
2015-08-17 12:05:37 +03:00
// ***** START: PublicKey *****
2014-05-07 00:28:52 +04:00
keys := make ( [ ] * PublicKey , 0 , 10 )
2016-07-23 20:08:22 +03:00
if err = e . Find ( & keys , & PublicKey { OwnerID : u . ID } ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "get all public keys: %v" , err )
2014-04-10 22:20:58 +04:00
}
2016-07-26 12:26:48 +03:00
keyIDs := make ( [ ] int64 , len ( keys ) )
for i := range keys {
keyIDs [ i ] = keys [ i ] . ID
}
if err = deletePublicKeys ( e , keyIDs ... ) ; err != nil {
return fmt . Errorf ( "deletePublicKeys: %v" , err )
2014-04-10 22:20:58 +04:00
}
2015-08-17 12:05:37 +03:00
// ***** END: PublicKey *****
2014-04-10 22:20:58 +04:00
2015-08-14 21:48:05 +03:00
// Clear assignee.
2016-07-23 20:08:22 +03:00
if _ , err = e . Exec ( "UPDATE `issue` SET assignee_id=0 WHERE assignee_id=?" , u . ID ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "clear assignee: %v" , err )
2015-08-14 21:48:05 +03:00
}
2017-02-22 10:14:37 +03:00
// ***** START: ExternalLoginUser *****
2017-03-20 17:13:52 +03:00
if err = removeAllAccountLinks ( e , u ) ; err != nil {
2017-02-22 10:14:37 +03:00
return fmt . Errorf ( "ExternalLoginUser: %v" , err )
}
// ***** END: ExternalLoginUser *****
2016-07-23 20:08:22 +03:00
if _ , err = e . Id ( u . ID ) . Delete ( new ( User ) ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "Delete: %v" , err )
2015-03-18 04:51:39 +03:00
}
2015-08-17 12:05:37 +03:00
// FIXME: system notice
// Note: There are something just cannot be roll back,
// so just keep error logs of those operations.
2016-12-01 02:56:15 +03:00
path := UserPath ( u . Name )
2015-08-17 12:05:37 +03:00
2016-12-01 02:56:15 +03:00
if err := os . RemoveAll ( path ) ; err != nil {
2017-01-29 23:13:57 +03:00
return fmt . Errorf ( "Failed to RemoveAll %s: %v" , path , err )
2016-12-01 02:56:15 +03:00
}
2017-03-06 11:15:40 +03:00
if len ( u . Avatar ) > 0 {
avatarPath := u . CustomAvatarPath ( )
if com . IsExist ( avatarPath ) {
if err := os . Remove ( avatarPath ) ; err != nil {
return fmt . Errorf ( "Failed to remove %s: %v" , avatarPath , err )
}
2016-12-27 05:02:14 +03:00
}
2016-12-01 02:56:15 +03:00
}
2014-04-10 22:20:58 +04:00
2015-08-17 12:05:37 +03:00
return nil
2014-06-21 08:51:41 +04:00
}
2015-09-06 15:54:08 +03:00
// DeleteUser completely and permanently deletes everything of a user,
// but issues/comments/pulls will be kept and shown as someone has been deleted.
func DeleteUser ( u * User ) ( err error ) {
sess := x . NewSession ( )
defer sessionRelease ( sess )
if err = sess . Begin ( ) ; err != nil {
return err
}
if err = deleteUser ( sess , u ) ; err != nil {
2015-09-13 20:26:20 +03:00
// Note: don't wrapper error here.
return err
2015-09-06 15:54:08 +03:00
}
2016-07-26 12:26:48 +03:00
if err = sess . Commit ( ) ; err != nil {
return err
}
return RewriteAllPublicKeys ( )
2015-09-06 15:54:08 +03:00
}
2014-12-17 11:26:19 +03:00
// DeleteInactivateUsers deletes all inactivate users and email addresses.
2015-08-17 12:05:37 +03:00
func DeleteInactivateUsers ( ) ( err error ) {
users := make ( [ ] * User , 0 , 10 )
2016-11-10 18:16:32 +03:00
if err = x .
Where ( "is_active = ?" , false ) .
Find ( & users ) ; err != nil {
2015-08-17 12:05:37 +03:00
return fmt . Errorf ( "get all inactive users: %v" , err )
}
2016-07-26 12:26:48 +03:00
// FIXME: should only update authorized_keys file once after all deletions.
2015-08-17 12:05:37 +03:00
for _ , u := range users {
if err = DeleteUser ( u ) ; err != nil {
// Ignore users that were set inactive by admin.
if IsErrUserOwnRepos ( err ) || IsErrUserHasOrgs ( err ) {
continue
}
return err
}
2014-12-17 11:26:19 +03:00
}
2015-08-17 12:05:37 +03:00
2016-11-10 18:16:32 +03:00
_ , err = x .
Where ( "is_activated = ?" , false ) .
Delete ( new ( EmailAddress ) )
2014-04-10 22:20:58 +04:00
return err
}
// UserPath returns the path absolute path of user repositories.
func UserPath ( userName string ) string {
2014-05-26 04:11:25 +04:00
return filepath . Join ( setting . RepoRootPath , strings . ToLower ( userName ) )
2014-04-10 22:20:58 +04:00
}
2016-11-12 02:01:09 +03:00
// GetUserByKeyID get user information by user's public key id
2015-11-05 05:57:10 +03:00
func GetUserByKeyID ( keyID int64 ) ( * User , error ) {
2016-11-12 02:01:09 +03:00
var user User
has , err := x . Join ( "INNER" , "public_key" , "`public_key`.owner_id = `user`.id" ) .
2016-11-10 18:16:32 +03:00
Where ( "`public_key`.id=?" , keyID ) .
2016-11-12 11:30:46 +03:00
Get ( & user )
2016-11-12 02:01:09 +03:00
if err != nil {
return nil , err
}
if ! has {
return nil , ErrUserNotExist { 0 , "" , keyID }
}
return & user , nil
2014-04-10 22:20:58 +04:00
}
2015-08-08 17:43:14 +03:00
func getUserByID ( e Engine , id int64 ) ( * User , error ) {
2014-06-06 06:07:35 +04:00
u := new ( User )
2015-02-13 08:58:46 +03:00
has , err := e . Id ( id ) . Get ( u )
2014-04-10 22:20:58 +04:00
if err != nil {
return nil , err
2014-06-06 06:07:35 +04:00
} else if ! has {
2016-11-12 02:01:09 +03:00
return nil , ErrUserNotExist { id , "" , 0 }
2014-04-10 22:20:58 +04:00
}
2014-06-06 06:07:35 +04:00
return u , nil
2014-04-10 22:20:58 +04:00
}
2015-08-08 17:43:14 +03:00
// GetUserByID returns the user object by given ID if exists.
func GetUserByID ( id int64 ) ( * User , error ) {
return getUserByID ( x , id )
2015-02-13 08:58:46 +03:00
}
2015-08-10 16:47:23 +03:00
// GetAssigneeByID returns the user with write access of repository by given ID.
func GetAssigneeByID ( repo * Repository , userID int64 ) ( * User , error ) {
2017-03-15 03:51:46 +03:00
has , err := HasAccess ( userID , repo , AccessModeWrite )
2015-08-10 16:47:23 +03:00
if err != nil {
return nil , err
} else if ! has {
2016-11-12 02:01:09 +03:00
return nil , ErrUserNotExist { userID , "" , 0 }
2015-08-10 16:47:23 +03:00
}
return GetUserByID ( userID )
}
2014-10-25 02:43:17 +04:00
// GetUserByName returns user by given name.
2014-04-10 22:20:58 +04:00
func GetUserByName ( name string ) ( * User , error ) {
if len ( name ) == 0 {
2016-11-12 02:01:09 +03:00
return nil , ErrUserNotExist { 0 , name , 0 }
2014-04-10 22:20:58 +04:00
}
2014-10-25 02:43:17 +04:00
u := & User { LowerName : strings . ToLower ( name ) }
has , err := x . Get ( u )
2014-04-10 22:20:58 +04:00
if err != nil {
return nil , err
} else if ! has {
2016-11-12 02:01:09 +03:00
return nil , ErrUserNotExist { 0 , name , 0 }
2014-04-10 22:20:58 +04:00
}
2014-10-25 02:43:17 +04:00
return u , nil
2014-04-10 22:20:58 +04:00
}
2014-10-12 02:02:48 +04:00
// GetUserEmailsByNames returns a list of e-mails corresponds to names.
2014-04-10 22:20:58 +04:00
func GetUserEmailsByNames ( names [ ] string ) [ ] string {
mails := make ( [ ] string , 0 , len ( names ) )
for _ , name := range names {
u , err := GetUserByName ( name )
if err != nil {
continue
}
2017-02-02 15:33:36 +03:00
if u . IsMailable ( ) {
mails = append ( mails , u . Email )
}
2014-04-10 22:20:58 +04:00
}
return mails
}
2016-11-10 11:10:35 +03:00
// GetUsersByIDs returns all resolved users from a list of Ids.
func GetUsersByIDs ( ids [ ] int64 ) ( [ ] * User , error ) {
ous := make ( [ ] * User , 0 , len ( ids ) )
2017-01-20 05:31:46 +03:00
if len ( ids ) == 0 {
return ous , nil
}
err := x . In ( "id" , ids ) .
2016-11-10 18:16:32 +03:00
Asc ( "name" ) .
Find ( & ous )
2016-11-10 11:10:35 +03:00
return ous , err
}
2016-07-16 05:08:04 +03:00
// GetUserIDsByNames returns a slice of ids corresponds to names.
func GetUserIDsByNames ( names [ ] string ) [ ] int64 {
2014-05-08 00:51:14 +04:00
ids := make ( [ ] int64 , 0 , len ( names ) )
for _ , name := range names {
u , err := GetUserByName ( name )
if err != nil {
continue
}
2016-07-23 20:08:22 +03:00
ids = append ( ids , u . ID )
2014-05-08 00:51:14 +04:00
}
return ids
}
2014-12-07 04:22:48 +03:00
// UserCommit represents a commit with validation of user.
2014-09-23 23:30:04 +04:00
type UserCommit struct {
2014-11-21 18:58:08 +03:00
User * User
2015-12-10 04:46:05 +03:00
* git . Commit
2014-09-23 23:30:04 +04:00
}
2017-01-05 03:50:34 +03:00
// ValidateCommitWithEmail check if author's e-mail of commit is corresponding to a user.
2015-12-10 04:46:05 +03:00
func ValidateCommitWithEmail ( c * git . Commit ) * User {
2014-09-26 16:55:13 +04:00
u , err := GetUserByEmail ( c . Author . Email )
2014-11-21 18:58:08 +03:00
if err != nil {
return nil
2014-09-26 16:55:13 +04:00
}
2014-11-21 18:58:08 +03:00
return u
2014-09-26 16:55:13 +04:00
}
// ValidateCommitsWithEmails checks if authors' e-mails of commits are corresponding to users.
func ValidateCommitsWithEmails ( oldCommits * list . List ) * list . List {
2015-08-05 12:36:22 +03:00
var (
u * User
emails = map [ string ] * User { }
newCommits = list . New ( )
e = oldCommits . Front ( )
)
2014-09-23 23:30:04 +04:00
for e != nil {
2015-12-10 04:46:05 +03:00
c := e . Value . ( * git . Commit )
2014-09-23 23:30:04 +04:00
2014-09-24 07:18:14 +04:00
if v , ok := emails [ c . Author . Email ] ; ! ok {
2014-11-21 18:58:08 +03:00
u , _ = GetUserByEmail ( c . Author . Email )
emails [ c . Author . Email ] = u
2014-09-24 07:18:14 +04:00
} else {
2014-11-21 18:58:08 +03:00
u = v
2014-09-23 23:30:04 +04:00
}
newCommits . PushBack ( UserCommit {
2014-11-21 18:58:08 +03:00
User : u ,
Commit : c ,
2014-09-23 23:30:04 +04:00
} )
e = e . Next ( )
}
return newCommits
}
2014-04-10 22:20:58 +04:00
// GetUserByEmail returns the user object by given e-mail if exists.
func GetUserByEmail ( email string ) ( * User , error ) {
if len ( email ) == 0 {
2016-11-12 02:01:09 +03:00
return nil , ErrUserNotExist { 0 , email , 0 }
2014-04-10 22:20:58 +04:00
}
2015-08-05 12:36:22 +03:00
email = strings . ToLower ( email )
2014-12-17 11:26:19 +03:00
// First try to find the user by primary email
2015-08-05 12:36:22 +03:00
user := & User { Email : email }
2014-06-21 08:51:41 +04:00
has , err := x . Get ( user )
2014-04-10 22:20:58 +04:00
if err != nil {
return nil , err
}
2014-12-17 11:26:19 +03:00
if has {
return user , nil
}
// Otherwise, check in alternative list for activated email addresses
2015-08-05 12:36:22 +03:00
emailAddress := & EmailAddress { Email : email , IsActivated : true }
2014-12-17 11:26:19 +03:00
has , err = x . Get ( emailAddress )
if err != nil {
return nil , err
}
if has {
2015-09-10 18:40:34 +03:00
return GetUserByID ( emailAddress . UID )
2014-12-17 11:26:19 +03:00
}
2016-11-12 02:01:09 +03:00
return nil , ErrUserNotExist { 0 , email , 0 }
2014-04-10 22:20:58 +04:00
}
2017-02-22 10:14:37 +03:00
// GetUser checks if a user already exists
func GetUser ( user * User ) ( bool , error ) {
return x . Get ( user )
}
2016-11-28 19:47:46 +03:00
// SearchUserOptions contains the options for searching
2016-03-11 23:33:12 +03:00
type SearchUserOptions struct {
Keyword string
Type UserType
OrderBy string
Page int
2016-07-23 19:23:54 +03:00
PageSize int // Can be smaller than or equal to setting.UI.ExplorePagingNum
2016-03-11 23:33:12 +03:00
}
// SearchUserByName takes keyword and part of user name to search,
// it returns results in given range and number of total results.
func SearchUserByName ( opts * SearchUserOptions ) ( users [ ] * User , _ int64 , _ error ) {
if len ( opts . Keyword ) == 0 {
return users , 0 , nil
}
opts . Keyword = strings . ToLower ( opts . Keyword )
2016-07-23 19:23:54 +03:00
if opts . PageSize <= 0 || opts . PageSize > setting . UI . ExplorePagingNum {
opts . PageSize = setting . UI . ExplorePagingNum
2016-03-11 23:33:12 +03:00
}
if opts . Page <= 0 {
opts . Page = 1
}
users = make ( [ ] * User , 0 , opts . PageSize )
2017-02-25 16:42:20 +03:00
2016-03-11 23:33:12 +03:00
// Append conditions
2017-02-25 16:42:20 +03:00
cond := builder . And (
builder . Eq { "type" : opts . Type } ,
builder . Or (
builder . Like { "lower_name" , opts . Keyword } ,
builder . Like { "LOWER(full_name)" , opts . Keyword } ,
) ,
)
2016-03-11 23:33:12 +03:00
2017-02-25 16:42:20 +03:00
count , err := x . Where ( cond ) . Count ( new ( User ) )
2016-03-11 23:33:12 +03:00
if err != nil {
return nil , 0 , fmt . Errorf ( "Count: %v" , err )
2014-05-01 07:48:01 +04:00
}
2017-02-25 16:42:20 +03:00
sess := x . Where ( cond ) .
Limit ( opts . PageSize , ( opts . Page - 1 ) * opts . PageSize )
2016-03-12 00:11:33 +03:00
if len ( opts . OrderBy ) > 0 {
sess . OrderBy ( opts . OrderBy )
}
2017-02-25 16:42:20 +03:00
return users , count , sess . Find ( & users )
2014-05-01 07:48:01 +04:00
}
2016-11-15 01:33:58 +03:00
// GetStarredRepos returns the repos starred by a particular user
func GetStarredRepos ( userID int64 , private bool ) ( [ ] * Repository , error ) {
sess := x . Where ( "star.uid=?" , userID ) .
Join ( "LEFT" , "star" , "`repository`.id=`star`.repo_id" )
if ! private {
sess = sess . And ( "is_private=?" , false )
}
repos := make ( [ ] * Repository , 0 , 10 )
err := sess . Find ( & repos )
if err != nil {
return nil , err
}
return repos , nil
}
2016-12-24 04:53:11 +03:00
// GetWatchedRepos returns the repos watched by a particular user
func GetWatchedRepos ( userID int64 , private bool ) ( [ ] * Repository , error ) {
sess := x . Where ( "watch.user_id=?" , userID ) .
Join ( "LEFT" , "watch" , "`repository`.id=`watch`.repo_id" )
if ! private {
sess = sess . And ( "is_private=?" , false )
}
repos := make ( [ ] * Repository , 0 , 10 )
err := sess . Find ( & repos )
if err != nil {
return nil , err
}
return repos , nil
}