Files
Gogs/internal/db/user.go

448 lines
12 KiB
Go
Raw Normal View History

2014-04-10 14: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 db
2014-04-10 14:20:58 -04:00
import (
"context"
2014-04-10 14:20:58 -04:00
"fmt"
_ "image/jpeg"
2014-04-10 14:20:58 -04:00
"os"
"strings"
"time"
"github.com/unknwon/com"
log "unknwon.dev/clog/v2"
"xorm.io/xorm"
2014-04-10 14:20:58 -04:00
2018-05-27 08:53:48 +08:00
"github.com/gogs/git-module"
2015-11-27 00:24:24 -05:00
"gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/errutil"
"gogs.io/gogs/internal/repoutil"
"gogs.io/gogs/internal/tool"
"gogs.io/gogs/internal/userutil"
2014-04-10 14:20:58 -04:00
)
// TODO(unknwon): Delete me once refactoring is done.
func (u *User) BeforeInsert() {
u.CreatedUnix = time.Now().Unix()
u.UpdatedUnix = u.CreatedUnix
}
// TODO(unknwon): Refactoring together with methods that do updates.
2015-12-10 12:37:53 -05:00
func (u *User) BeforeUpdate() {
2015-12-10 12:46:05 -05:00
if u.MaxRepoCreation < -1 {
u.MaxRepoCreation = -1
2015-12-10 12:37:53 -05:00
}
u.UpdatedUnix = time.Now().Unix()
2015-12-10 12:37:53 -05:00
}
// TODO(unknwon): Delete me once refactoring is done.
2015-09-01 12:19:52 -04:00
func (u *User) AfterSet(colName string, _ xorm.Cell) {
switch colName {
case "created_unix":
u.Created = time.Unix(u.CreatedUnix, 0).Local()
case "updated_unix":
u.Updated = time.Unix(u.UpdatedUnix, 0).Local()
2015-09-01 12:19:52 -04:00
}
}
// Deprecated: Use OrgsUsers.CountByUser instead.
//
// TODO(unknwon): Delete me once no more call sites in this file.
2015-09-06 08:54:08 -04:00
func (u *User) getOrganizationCount(e Engine) (int64, error) {
2016-07-24 01:08:22 +08:00
return e.Where("uid=?", u.ID).Count(new(OrgUser))
2015-09-06 08:54:08 -04:00
}
2014-04-10 14:20:58 -04:00
// ChangeUserName changes all corresponding setting from old user name to new one.
2014-07-26 00:24:27 -04:00
func ChangeUserName(u *User, newUserName string) (err error) {
if err = isUsernameAllowed(newUserName); err != nil {
return err
}
if Users.IsUsernameUsed(context.TODO(), newUserName) {
return ErrUserAlreadyExist{args: errutil.Args{"name": newUserName}}
2014-07-26 00:24:27 -04:00
}
if err = ChangeUsernameInPullRequests(u.Name, newUserName); err != nil {
return fmt.Errorf("ChangeUsernameInPullRequests: %v", err)
2016-01-27 22:45:03 +01:00
}
// Delete all local copies of repositories and wikis the user owns.
2016-07-24 01:08:22 +08:00
if err = x.Where("owner_id=?", u.ID).Iterate(new(Repository), func(idx int, bean interface{}) error {
repo := bean.(*Repository)
deleteRepoLocalCopy(repo)
// TODO: By the same reasoning, shouldn't we also sync access to the local wiki path?
RemoveAllWithNotice("Delete repository wiki local copy", repo.LocalWikiPath())
return nil
}); err != nil {
return fmt.Errorf("delete repository and wiki local copy: %v", err)
}
// Rename or create user base directory
baseDir := repoutil.UserPath(u.Name)
newBaseDir := repoutil.UserPath(newUserName)
if com.IsExist(baseDir) {
return os.Rename(baseDir, newBaseDir)
}
return os.MkdirAll(newBaseDir, os.ModePerm)
2014-04-10 14:20:58 -04:00
}
func updateUser(e Engine, u *User) error {
// Organization does not need email
if !u.IsOrganization() {
u.Email = strings.ToLower(u.Email)
2016-07-24 01:08:22 +08:00
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{args: errutil.Args{"email": u.Email}}
}
if u.AvatarEmail == "" {
u.AvatarEmail = u.Email
}
u.Avatar = tool.HashEmail(u.AvatarEmail)
2014-11-30 18:29:16 -05:00
}
2014-06-05 22:07:35 -04:00
u.LowerName = strings.ToLower(u.Name)
u.Location = tool.TruncateString(u.Location, 255)
u.Website = tool.TruncateString(u.Website, 255)
u.Description = tool.TruncateString(u.Description, 255)
2014-04-10 14:20:58 -04:00
2018-08-16 20:26:09 +08:00
_, err := e.ID(u.ID).AllCols().Update(u)
2014-04-10 14:20:58 -04:00
return err
}
// UpdateUser updates user's information.
func UpdateUser(u *User) error {
return updateUser(x, u)
}
2015-09-06 08:54:08 -04:00
// deleteBeans deletes all given beans, beans should contain delete conditions.
func deleteBeans(e Engine, beans ...interface{}) (err error) {
for i := range beans {
if _, err = e.Delete(beans[i]); err != nil {
return err
}
}
return nil
}
2014-11-13 05:27:01 -05:00
// FIXME: need some kind of mechanism to record failure. HINT: system notice
2015-09-06 08:54:08 -04:00
func deleteUser(e *xorm.Session, u *User) error {
2015-08-17 17:05:37 +08:00
// Note: A user owns any repository or belongs to any organization
// cannot perform delete operation.
2014-04-10 14:20:58 -04:00
// Check ownership of repository.
2015-09-06 08:54:08 -04:00
count, err := getRepositoryCount(e, u)
2014-04-10 14:20:58 -04:00
if err != nil {
return fmt.Errorf("GetRepositoryCount: %v", err)
2014-04-10 14:20:58 -04:00
} else if count > 0 {
2016-07-24 01:08:22 +08:00
return ErrUserOwnRepos{UID: u.ID}
2014-04-10 14:20:58 -04:00
}
2014-06-27 03:37:01 -04:00
// Check membership of organization.
2015-09-06 08:54:08 -04:00
count, err = u.getOrganizationCount(e)
2014-06-27 03:37:01 -04:00
if err != nil {
return fmt.Errorf("GetOrganizationCount: %v", err)
2014-06-27 03:37:01 -04:00
} else if count > 0 {
2016-07-24 01:08:22 +08:00
return ErrUserHasOrgs{UID: u.ID}
2014-06-27 03:37:01 -04:00
}
2015-08-17 17:05:37 +08:00
// ***** START: Watch *****
watches := make([]*Watch, 0, 10)
2016-07-24 01:08:22 +08:00
if err = e.Find(&watches, &Watch{UserID: u.ID}); err != nil {
return fmt.Errorf("get all watches: %v", err)
2014-04-10 14:20:58 -04:00
}
for i := range watches {
2015-09-06 08:54:08 -04:00
if _, err = e.Exec("UPDATE `repository` SET num_watches=num_watches-1 WHERE id=?", watches[i].RepoID); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("decrease repository watch number[%d]: %v", watches[i].RepoID, err)
}
2014-04-11 21:47:39 -04:00
}
2015-08-17 17:05:37 +08:00
// ***** END: Watch *****
2015-08-17 17:05:37 +08:00
// ***** START: Star *****
stars := make([]*Star, 0, 10)
2016-07-24 01:08:22 +08:00
if err = e.Find(&stars, &Star{UID: u.ID}); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("get all stars: %v", err)
}
for i := range stars {
2015-09-06 08:54:08 -04:00
if _, err = e.Exec("UPDATE `repository` SET num_stars=num_stars-1 WHERE id=?", stars[i].RepoID); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("decrease repository star number[%d]: %v", stars[i].RepoID, err)
}
}
// ***** END: Star *****
2015-08-17 17:05:37 +08:00
// ***** START: Follow *****
followers := make([]*Follow, 0, 10)
2016-07-24 01:08:22 +08:00
if err = e.Find(&followers, &Follow{UserID: u.ID}); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("get all followers: %v", err)
}
for i := range followers {
2015-09-06 08:54:08 -04:00
if _, err = e.Exec("UPDATE `user` SET num_followers=num_followers-1 WHERE id=?", followers[i].UserID); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("decrease user follower number[%d]: %v", followers[i].UserID, err)
}
2014-04-10 14:20:58 -04:00
}
2015-08-17 17:05:37 +08:00
// ***** END: Follow *****
2015-09-06 08:54:08 -04:00
if err = deleteBeans(e,
&AccessToken{UserID: u.ID},
2016-07-24 01:08:22 +08:00
&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{UserID: u.ID},
); err != nil {
2015-11-30 20:45:55 -05:00
return fmt.Errorf("deleteBeans: %v", err)
2014-04-10 14:20:58 -04:00
}
2015-08-17 17:05:37 +08:00
// ***** START: PublicKey *****
2014-05-06 16:28:52 -04:00
keys := make([]*PublicKey, 0, 10)
2016-07-24 01:08:22 +08:00
if err = e.Find(&keys, &PublicKey{OwnerID: u.ID}); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("get all public keys: %v", err)
2014-04-10 14:20:58 -04: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 14:20:58 -04:00
}
2015-08-17 17:05:37 +08:00
// ***** END: PublicKey *****
2014-04-10 14:20:58 -04:00
// Clear assignee.
2016-07-24 01:08:22 +08:00
if _, err = e.Exec("UPDATE `issue` SET assignee_id=0 WHERE assignee_id=?", u.ID); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("clear assignee: %v", err)
}
if _, err = e.ID(u.ID).Delete(new(User)); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("Delete: %v", err)
}
2015-08-17 17:05:37 +08:00
// FIXME: system notice
// Note: There are something just cannot be roll back,
// so just keep error logs of those operations.
_ = os.RemoveAll(repoutil.UserPath(u.Name))
_ = os.Remove(userutil.CustomAvatarPath(u.ID))
2014-04-10 14:20:58 -04:00
2015-08-17 17:05:37 +08:00
return nil
2014-06-21 00:51:41 -04:00
}
2015-09-06 08:54:08 -04: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 sess.Close()
2015-09-06 08:54:08 -04:00
if err = sess.Begin(); err != nil {
return err
}
if err = deleteUser(sess, u); err != nil {
2015-09-13 13:26:20 -04:00
// Note: don't wrapper error here.
return err
2015-09-06 08:54:08 -04:00
}
if err = sess.Commit(); err != nil {
return err
}
return RewriteAuthorizedKeys()
2015-09-06 08:54:08 -04:00
}
// DeleteInactivateUsers deletes all inactivate users and email addresses.
2015-08-17 17:05:37 +08:00
func DeleteInactivateUsers() (err error) {
users := make([]*User, 0, 10)
if err = x.Where("is_active = ?", false).Find(&users); err != nil {
2015-08-17 17:05:37 +08:00
return fmt.Errorf("get all inactive users: %v", err)
}
// FIXME: should only update authorized_keys file once after all deletions.
2015-08-17 17:05:37 +08: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
}
}
2015-08-17 17:05:37 +08:00
_, err = x.Where("is_activated = ?", false).Delete(new(EmailAddress))
2014-04-10 14:20:58 -04:00
return err
}
2015-11-04 21:57:10 -05:00
func GetUserByKeyID(keyID int64) (*User, error) {
2014-04-10 14:20:58 -04:00
user := new(User)
has, err := x.SQL("SELECT a.* FROM `user` AS a, public_key AS b WHERE a.id = b.owner_id AND b.id=?", keyID).Get(user)
2014-04-10 14:20:58 -04:00
if err != nil {
return nil, err
} else if !has {
return nil, errors.UserNotKeyOwner{KeyID: keyID}
2014-04-10 14:20:58 -04:00
}
return user, nil
}
2015-08-08 22:43:14 +08:00
func getUserByID(e Engine, id int64) (*User, error) {
2014-06-05 22:07:35 -04:00
u := new(User)
2018-08-16 20:26:09 +08:00
has, err := e.ID(id).Get(u)
2014-04-10 14:20:58 -04:00
if err != nil {
return nil, err
2014-06-05 22:07:35 -04:00
} else if !has {
return nil, ErrUserNotExist{args: map[string]interface{}{"userID": id}}
2014-04-10 14:20:58 -04:00
}
2014-06-05 22:07:35 -04:00
return u, nil
2014-04-10 14:20:58 -04:00
}
// GetAssigneeByID returns the user with read access of repository by given ID.
func GetAssigneeByID(repo *Repository, userID int64) (*User, error) {
ctx := context.TODO()
if !Perms.Authorize(ctx, userID, repo.ID, AccessModeRead,
AccessModeOptions{
OwnerID: repo.OwnerID,
Private: repo.IsPrivate,
},
) {
return nil, ErrUserNotExist{args: map[string]interface{}{"userID": userID}}
}
return Users.GetByID(ctx, userID)
}
// GetUserEmailsByNames returns a list of e-mails corresponds to names.
2014-04-10 14:20:58 -04:00
func GetUserEmailsByNames(names []string) []string {
mails := make([]string, 0, len(names))
for _, name := range names {
u, err := Users.GetByUsername(context.TODO(), name)
2014-04-10 14:20:58 -04:00
if err != nil {
continue
}
2017-01-30 11:35:12 -02:00
if u.IsMailable() {
mails = append(mails, u.Email)
}
2014-04-10 14:20:58 -04:00
}
return mails
}
2014-12-06 20:22:48 -05:00
// UserCommit represents a commit with validation of user.
2014-09-23 15:30:04 -04:00
type UserCommit struct {
2014-11-21 10:58:08 -05:00
User *User
*git.Commit
2014-09-23 15:30:04 -04:00
}
// ValidateCommitWithEmail checks if author's e-mail of commit is corresponding to a user.
func ValidateCommitWithEmail(c *git.Commit) *User {
u, err := Users.GetByEmail(context.TODO(), c.Author.Email)
2014-11-21 10:58:08 -05:00
if err != nil {
return nil
2014-09-26 08:55:13 -04:00
}
2014-11-21 10:58:08 -05:00
return u
2014-09-26 08:55:13 -04:00
}
// ValidateCommitsWithEmails checks if authors' e-mails of commits are corresponding to users.
git: migrate to github.com/gogs/git-module@v1.0.0 (#5958) * WIP * Finish `internal/db/git_diff.go` * FInish internal/db/mirror.go * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo.go * Finish internal/db/repo_branch.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Save my work * Add license header * Compile! * Merge master * Finish internal/cmd/hook.go * Finish internal/conf/static.go * Finish internal/context/repo.go * Finish internal/db/action.go * Finish internal/db/git_diff.go * Fix submodule URL inferring * Finish internal/db/mirror.go * Updat to beta.4 * css: update fonts * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo_branch.go * Finish internal/db/wiki.go * gitutil: enhance infer submodule UR * Finish internal/route/api/v1/repo/commits.go * mirror: only collect branch commits after sync * mirror: fix tag support * Finish internal/db/repo.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Finish internal/gitutil/pull_request.go * Make it compile * Finish internal/route/repo/setting.go * Finish internal/route/repo/branch.go * Finish internal/route/api/v1/repo/file.go * Finish internal/route/repo/download.go * Finish internal/route/repo/editor.go * Use helper * Finish internal/route/repo/issue.go * Finish internal/route/repo/pull.go * Finish internal/route/repo/release.go * Finish internal/route/repo/repo.go * Finish internal/route/repo/wiki.go * Finish internal/route/repo/commit.go * Finish internal/route/repo/view.go * Finish internal/gitutil/tag.go * go.sum
2020-03-08 19:09:31 +08:00
func ValidateCommitsWithEmails(oldCommits []*git.Commit) []*UserCommit {
emails := make(map[string]*User)
newCommits := make([]*UserCommit, len(oldCommits))
for i := range oldCommits {
var u *User
if v, ok := emails[oldCommits[i].Author.Email]; !ok {
u, _ = Users.GetByEmail(context.TODO(), oldCommits[i].Author.Email)
git: migrate to github.com/gogs/git-module@v1.0.0 (#5958) * WIP * Finish `internal/db/git_diff.go` * FInish internal/db/mirror.go * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo.go * Finish internal/db/repo_branch.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Save my work * Add license header * Compile! * Merge master * Finish internal/cmd/hook.go * Finish internal/conf/static.go * Finish internal/context/repo.go * Finish internal/db/action.go * Finish internal/db/git_diff.go * Fix submodule URL inferring * Finish internal/db/mirror.go * Updat to beta.4 * css: update fonts * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo_branch.go * Finish internal/db/wiki.go * gitutil: enhance infer submodule UR * Finish internal/route/api/v1/repo/commits.go * mirror: only collect branch commits after sync * mirror: fix tag support * Finish internal/db/repo.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Finish internal/gitutil/pull_request.go * Make it compile * Finish internal/route/repo/setting.go * Finish internal/route/repo/branch.go * Finish internal/route/api/v1/repo/file.go * Finish internal/route/repo/download.go * Finish internal/route/repo/editor.go * Use helper * Finish internal/route/repo/issue.go * Finish internal/route/repo/pull.go * Finish internal/route/repo/release.go * Finish internal/route/repo/repo.go * Finish internal/route/repo/wiki.go * Finish internal/route/repo/commit.go * Finish internal/route/repo/view.go * Finish internal/gitutil/tag.go * go.sum
2020-03-08 19:09:31 +08:00
emails[oldCommits[i].Author.Email] = u
2014-09-23 23:18:14 -04:00
} else {
2014-11-21 10:58:08 -05:00
u = v
2014-09-23 15:30:04 -04:00
}
git: migrate to github.com/gogs/git-module@v1.0.0 (#5958) * WIP * Finish `internal/db/git_diff.go` * FInish internal/db/mirror.go * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo.go * Finish internal/db/repo_branch.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Save my work * Add license header * Compile! * Merge master * Finish internal/cmd/hook.go * Finish internal/conf/static.go * Finish internal/context/repo.go * Finish internal/db/action.go * Finish internal/db/git_diff.go * Fix submodule URL inferring * Finish internal/db/mirror.go * Updat to beta.4 * css: update fonts * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo_branch.go * Finish internal/db/wiki.go * gitutil: enhance infer submodule UR * Finish internal/route/api/v1/repo/commits.go * mirror: only collect branch commits after sync * mirror: fix tag support * Finish internal/db/repo.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Finish internal/gitutil/pull_request.go * Make it compile * Finish internal/route/repo/setting.go * Finish internal/route/repo/branch.go * Finish internal/route/api/v1/repo/file.go * Finish internal/route/repo/download.go * Finish internal/route/repo/editor.go * Use helper * Finish internal/route/repo/issue.go * Finish internal/route/repo/pull.go * Finish internal/route/repo/release.go * Finish internal/route/repo/repo.go * Finish internal/route/repo/wiki.go * Finish internal/route/repo/commit.go * Finish internal/route/repo/view.go * Finish internal/gitutil/tag.go * go.sum
2020-03-08 19:09:31 +08:00
newCommits[i] = &UserCommit{
2014-11-21 10:58:08 -05:00
User: u,
git: migrate to github.com/gogs/git-module@v1.0.0 (#5958) * WIP * Finish `internal/db/git_diff.go` * FInish internal/db/mirror.go * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo.go * Finish internal/db/repo_branch.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Save my work * Add license header * Compile! * Merge master * Finish internal/cmd/hook.go * Finish internal/conf/static.go * Finish internal/context/repo.go * Finish internal/db/action.go * Finish internal/db/git_diff.go * Fix submodule URL inferring * Finish internal/db/mirror.go * Updat to beta.4 * css: update fonts * Finish internal/db/pull.go * Finish internal/db/release.go * Finish internal/db/repo_branch.go * Finish internal/db/wiki.go * gitutil: enhance infer submodule UR * Finish internal/route/api/v1/repo/commits.go * mirror: only collect branch commits after sync * mirror: fix tag support * Finish internal/db/repo.go * Finish internal/db/repo_editor.go * Finish internal/db/update.go * Finish internal/gitutil/pull_request.go * Make it compile * Finish internal/route/repo/setting.go * Finish internal/route/repo/branch.go * Finish internal/route/api/v1/repo/file.go * Finish internal/route/repo/download.go * Finish internal/route/repo/editor.go * Use helper * Finish internal/route/repo/issue.go * Finish internal/route/repo/pull.go * Finish internal/route/repo/release.go * Finish internal/route/repo/repo.go * Finish internal/route/repo/wiki.go * Finish internal/route/repo/commit.go * Finish internal/route/repo/view.go * Finish internal/gitutil/tag.go * go.sum
2020-03-08 19:09:31 +08:00
Commit: oldCommits[i],
}
2014-09-23 15:30:04 -04:00
}
return newCommits
}
type SearchUserOptions struct {
Keyword string
Type UserType
OrderBy string
Page int
2016-07-24 00:23:54 +08:00
PageSize int // Can be smaller than or equal to setting.UI.ExplorePagingNum
}
// 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 opts.Keyword == "" {
return users, 0, nil
}
opts.Keyword = strings.ToLower(opts.Keyword)
if opts.PageSize <= 0 || opts.PageSize > conf.UI.ExplorePagingNum {
opts.PageSize = conf.UI.ExplorePagingNum
}
if opts.Page <= 0 {
opts.Page = 1
}
searchQuery := "%" + opts.Keyword + "%"
users = make([]*User, 0, opts.PageSize)
// Append conditions
sess := x.Where("LOWER(lower_name) LIKE ?", searchQuery).
Or("LOWER(full_name) LIKE ?", searchQuery).
And("type = ?", opts.Type)
countSess := *sess
count, err := countSess.Count(new(User))
if err != nil {
return nil, 0, fmt.Errorf("Count: %v", err)
2014-04-30 23:48:01 -04:00
}
2016-03-11 16:11:33 -05:00
if len(opts.OrderBy) > 0 {
sess.OrderBy(opts.OrderBy)
}
return users, count, sess.Limit(opts.PageSize, (opts.Page-1)*opts.PageSize).Find(&users)
2014-04-30 23:48:01 -04:00
}
// GetRepositoryAccesses finds all repositories with their access mode where a user has access but does not own.
func (u *User) GetRepositoryAccesses() (map[*Repository]AccessMode, error) {
accesses := make([]*Access, 0, 10)
if err := x.Find(&accesses, &Access{UserID: u.ID}); err != nil {
return nil, err
}
repos := make(map[*Repository]AccessMode, len(accesses))
for _, access := range accesses {
repo, err := GetRepositoryByID(access.RepoID)
if err != nil {
if IsErrRepoNotExist(err) {
log.Error("Failed to get repository by ID: %v", err)
continue
}
return nil, err
}
if repo.OwnerID == u.ID {
continue
}
repos[repo] = access.Mode
}
return repos, nil
}
// GetAccessibleRepositories finds repositories which the user has access but does not own.
// If limit is smaller than 1 means returns all found results.
func (user *User) GetAccessibleRepositories(limit int) (repos []*Repository, _ error) {
sess := x.Where("owner_id !=? ", user.ID).Desc("updated_unix")
if limit > 0 {
sess.Limit(limit)
repos = make([]*Repository, 0, limit)
} else {
repos = make([]*Repository, 0, 10)
}
return repos, sess.Join("INNER", "access", "access.user_id = ? AND access.repo_id = repository.id", user.ID).Find(&repos)
}