2014-04-10 18:20:58 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-01-23 22:30:19 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-04-10 18:20:58 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2019-12-15 09:51:28 +00:00
|
|
|
"context"
|
2014-04-10 18:20:58 +00:00
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2021-11-17 12:34:35 +00:00
|
|
|
_ "image/jpeg" // Needed for jpeg support
|
|
|
|
|
2021-12-10 08:14:24 +00:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-11 07:03:30 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-02-18 16:00:27 +00:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
|
2019-06-23 15:22:43 +00:00
|
|
|
"xorm.io/builder"
|
2014-04-10 18:20:58 +00:00
|
|
|
)
|
|
|
|
|
2021-11-18 17:42:27 +00:00
|
|
|
// GetOrganizationCount returns count of membership of organization of the user.
|
2021-11-24 09:49:20 +00:00
|
|
|
func GetOrganizationCount(ctx context.Context, u *user_model.User) (int64, error) {
|
2021-11-18 17:42:27 +00:00
|
|
|
return db.GetEngine(ctx).
|
2016-11-10 15:16:32 +00:00
|
|
|
Where("uid=?", u.ID).
|
|
|
|
Count(new(OrgUser))
|
2015-09-06 12:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// deleteBeans deletes all given beans, beans should contain delete conditions.
|
2021-09-19 11:49:59 +00:00
|
|
|
func deleteBeans(e db.Engine, beans ...interface{}) (err error) {
|
2015-03-18 01:51:39 +00:00
|
|
|
for i := range beans {
|
|
|
|
if _, err = e.Delete(beans[i]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-18 17:42:27 +00:00
|
|
|
// DeleteUser deletes models associated to an user.
|
2021-11-24 09:49:20 +00:00
|
|
|
func DeleteUser(ctx context.Context, u *user_model.User) (err error) {
|
2021-11-18 05:58:42 +00:00
|
|
|
e := db.GetEngine(ctx)
|
2014-06-27 07:37:01 +00:00
|
|
|
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** START: Watch *****
|
2017-05-20 08:48:22 +00:00
|
|
|
watchedRepoIDs := make([]int64, 0, 10)
|
|
|
|
if err = e.Table("watch").Cols("watch.repo_id").
|
2021-12-12 15:48:20 +00:00
|
|
|
Where("watch.user_id = ?", u.ID).And("watch.mode <>?", repo_model.WatchModeDont).Find(&watchedRepoIDs); err != nil {
|
2015-03-18 01:51:39 +00:00
|
|
|
return fmt.Errorf("get all watches: %v", err)
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
2021-12-10 01:27:50 +00:00
|
|
|
if _, err = e.Decr("num_watches").In("id", watchedRepoIDs).NoAutoTime().Update(new(repo_model.Repository)); err != nil {
|
2017-05-20 08:48:22 +00:00
|
|
|
return fmt.Errorf("decrease repository num_watches: %v", err)
|
2014-04-12 01:47:39 +00:00
|
|
|
}
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** END: Watch *****
|
2015-03-18 01:51:39 +00:00
|
|
|
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** START: Star *****
|
2017-05-20 08:48:22 +00:00
|
|
|
starredRepoIDs := make([]int64, 0, 10)
|
|
|
|
if err = e.Table("star").Cols("star.repo_id").
|
|
|
|
Where("star.uid = ?", u.ID).Find(&starredRepoIDs); err != nil {
|
2015-08-17 09:05:37 +00:00
|
|
|
return fmt.Errorf("get all stars: %v", err)
|
2021-12-10 01:27:50 +00:00
|
|
|
} else if _, err = e.Decr("num_stars").In("id", starredRepoIDs).NoAutoTime().Update(new(repo_model.Repository)); err != nil {
|
2017-05-20 08:48:22 +00:00
|
|
|
return fmt.Errorf("decrease repository num_stars: %v", err)
|
2015-08-17 09:05:37 +00:00
|
|
|
}
|
|
|
|
// ***** END: Star *****
|
2015-03-18 01:51:39 +00:00
|
|
|
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** START: Follow *****
|
2017-05-20 08:48:22 +00:00
|
|
|
followeeIDs := make([]int64, 0, 10)
|
|
|
|
if err = e.Table("follow").Cols("follow.follow_id").
|
|
|
|
Where("follow.user_id = ?", u.ID).Find(&followeeIDs); err != nil {
|
|
|
|
return fmt.Errorf("get all followees: %v", err)
|
2021-11-24 09:49:20 +00:00
|
|
|
} else if _, err = e.Decr("num_followers").In("id", followeeIDs).Update(new(user_model.User)); err != nil {
|
2017-05-20 08:48:22 +00:00
|
|
|
return fmt.Errorf("decrease user num_followers: %v", err)
|
2015-08-17 09:05:37 +00:00
|
|
|
}
|
2017-05-20 08:48:22 +00:00
|
|
|
|
|
|
|
followerIDs := make([]int64, 0, 10)
|
|
|
|
if err = e.Table("follow").Cols("follow.user_id").
|
|
|
|
Where("follow.follow_id = ?", u.ID).Find(&followerIDs); err != nil {
|
|
|
|
return fmt.Errorf("get all followers: %v", err)
|
2021-11-24 09:49:20 +00:00
|
|
|
} else if _, err = e.Decr("num_following").In("id", followerIDs).Update(new(user_model.User)); err != nil {
|
2017-05-20 08:48:22 +00:00
|
|
|
return fmt.Errorf("decrease user num_following: %v", err)
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** END: Follow *****
|
2015-03-18 01:51:39 +00:00
|
|
|
|
2015-09-06 12:54:08 +00:00
|
|
|
if err = deleteBeans(e,
|
2016-07-23 17:08:22 +00:00
|
|
|
&AccessToken{UID: u.ID},
|
|
|
|
&Collaboration{UserID: u.ID},
|
|
|
|
&Access{UserID: u.ID},
|
2021-12-12 15:48:20 +00:00
|
|
|
&repo_model.Watch{UserID: u.ID},
|
|
|
|
&repo_model.Star{UID: u.ID},
|
2021-11-17 09:58:31 +00:00
|
|
|
&user_model.Follow{UserID: u.ID},
|
|
|
|
&user_model.Follow{FollowID: u.ID},
|
2016-07-23 17:08:22 +00:00
|
|
|
&Action{UserID: u.ID},
|
|
|
|
&IssueUser{UID: u.ID},
|
2021-11-11 07:03:30 +00:00
|
|
|
&user_model.EmailAddress{UID: u.ID},
|
2021-11-17 09:58:31 +00:00
|
|
|
&user_model.UserOpenID{UID: u.ID},
|
2017-12-03 23:14:26 +00:00
|
|
|
&Reaction{UserID: u.ID},
|
2018-12-18 16:26:26 +00:00
|
|
|
&TeamUser{UID: u.ID},
|
|
|
|
&Collaboration{UserID: u.ID},
|
|
|
|
&Stopwatch{UserID: u.ID},
|
2021-11-22 09:47:23 +00:00
|
|
|
&user_model.Setting{UserID: u.ID},
|
2015-03-18 01:51:39 +00:00
|
|
|
); err != nil {
|
2015-12-01 01:45:55 +00:00
|
|
|
return fmt.Errorf("deleteBeans: %v", err)
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
2015-03-18 01:51:39 +00:00
|
|
|
|
2021-01-22 02:56:19 +00:00
|
|
|
if setting.Service.UserDeleteWithCommentsMaxTime != 0 &&
|
|
|
|
u.CreatedUnix.AsTime().Add(setting.Service.UserDeleteWithCommentsMaxTime).After(time.Now()) {
|
|
|
|
|
|
|
|
// Delete Comments
|
|
|
|
const batchSize = 50
|
|
|
|
for start := 0; ; start += batchSize {
|
|
|
|
comments := make([]*Comment, 0, batchSize)
|
|
|
|
if err = e.Where("type=? AND poster_id=?", CommentTypeComment, u.ID).Limit(batchSize, start).Find(&comments); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(comments) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, comment := range comments {
|
|
|
|
if err = deleteComment(e, comment); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete Reactions
|
|
|
|
if err = deleteReaction(e, &ReactionOptions{Doer: u}); err != nil {
|
|
|
|
return err
|
2021-01-17 20:48:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** START: PublicKey *****
|
2021-12-10 08:14:24 +00:00
|
|
|
if _, err = e.Delete(&asymkey_model.PublicKey{OwnerID: u.ID}); err != nil {
|
2016-07-26 09:26:48 +00:00
|
|
|
return fmt.Errorf("deletePublicKeys: %v", err)
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
2015-08-17 09:05:37 +00:00
|
|
|
// ***** END: PublicKey *****
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2018-12-18 16:26:26 +00:00
|
|
|
// ***** START: GPGPublicKey *****
|
2021-12-10 08:14:24 +00:00
|
|
|
keys, err := asymkey_model.ListGPGKeys(ctx, u.ID, db.ListOptions{})
|
2021-02-04 09:16:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("ListGPGKeys: %v", err)
|
|
|
|
}
|
|
|
|
// Delete GPGKeyImport(s).
|
|
|
|
for _, key := range keys {
|
2021-12-10 08:14:24 +00:00
|
|
|
if _, err = e.Delete(&asymkey_model.GPGKeyImport{KeyID: key.KeyID}); err != nil {
|
2021-02-04 09:16:21 +00:00
|
|
|
return fmt.Errorf("deleteGPGKeyImports: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2021-12-10 08:14:24 +00:00
|
|
|
if _, err = e.Delete(&asymkey_model.GPGKey{OwnerID: u.ID}); err != nil {
|
2018-12-18 16:26:26 +00:00
|
|
|
return fmt.Errorf("deleteGPGKeys: %v", err)
|
|
|
|
}
|
|
|
|
// ***** END: GPGPublicKey *****
|
|
|
|
|
2015-08-14 18:48:05 +00:00
|
|
|
// Clear assignee.
|
2018-05-09 16:29:04 +00:00
|
|
|
if err = clearAssigneeByUserID(e, u.ID); err != nil {
|
2015-08-17 09:05:37 +00:00
|
|
|
return fmt.Errorf("clear assignee: %v", err)
|
2015-08-14 18:48:05 +00:00
|
|
|
}
|
|
|
|
|
2017-02-22 07:14:37 +00:00
|
|
|
// ***** START: ExternalLoginUser *****
|
2021-11-28 14:11:58 +00:00
|
|
|
if err = user_model.RemoveAllAccountLinks(ctx, u); err != nil {
|
2017-02-22 07:14:37 +00:00
|
|
|
return fmt.Errorf("ExternalLoginUser: %v", err)
|
|
|
|
}
|
|
|
|
// ***** END: ExternalLoginUser *****
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
if _, err = e.ID(u.ID).Delete(new(user_model.User)); err != nil {
|
2015-08-17 09:05:37 +00:00
|
|
|
return fmt.Errorf("Delete: %v", err)
|
2015-03-18 01:51:39 +00:00
|
|
|
}
|
|
|
|
|
2015-08-17 09:05:37 +00:00
|
|
|
return nil
|
2014-06-21 04:51:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
// GetStarredRepos returns the repos starred by a particular user
|
2021-12-10 01:27:50 +00:00
|
|
|
func GetStarredRepos(userID int64, private bool, listOptions db.ListOptions) ([]*repo_model.Repository, error) {
|
2021-09-23 15:45:36 +00:00
|
|
|
sess := db.GetEngine(db.DefaultContext).Where("star.uid=?", userID).
|
2016-11-14 22:33:58 +00:00
|
|
|
Join("LEFT", "star", "`repository`.id=`star`.repo_id")
|
|
|
|
if !private {
|
|
|
|
sess = sess.And("is_private=?", false)
|
|
|
|
}
|
2020-01-24 19:00:29 +00:00
|
|
|
|
|
|
|
if listOptions.Page != 0 {
|
2021-09-24 11:32:56 +00:00
|
|
|
sess = db.SetSessionPagination(sess, &listOptions)
|
2020-01-24 19:00:29 +00:00
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repos := make([]*repo_model.Repository, 0, listOptions.PageSize)
|
2020-01-24 19:00:29 +00:00
|
|
|
return repos, sess.Find(&repos)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
2020-01-24 19:00:29 +00:00
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repos := make([]*repo_model.Repository, 0, 10)
|
2020-01-24 19:00:29 +00:00
|
|
|
return repos, sess.Find(&repos)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
2016-12-24 01:53:11 +00:00
|
|
|
|
|
|
|
// GetWatchedRepos returns the repos watched by a particular user
|
2021-12-10 01:27:50 +00:00
|
|
|
func GetWatchedRepos(userID int64, private bool, listOptions db.ListOptions) ([]*repo_model.Repository, int64, error) {
|
2021-09-23 15:45:36 +00:00
|
|
|
sess := db.GetEngine(db.DefaultContext).Where("watch.user_id=?", userID).
|
2021-12-12 15:48:20 +00:00
|
|
|
And("`watch`.mode<>?", repo_model.WatchModeDont).
|
2016-12-24 01:53:11 +00:00
|
|
|
Join("LEFT", "watch", "`repository`.id=`watch`.repo_id")
|
|
|
|
if !private {
|
|
|
|
sess = sess.And("is_private=?", false)
|
|
|
|
}
|
2020-01-24 19:00:29 +00:00
|
|
|
|
|
|
|
if listOptions.Page != 0 {
|
2021-09-24 11:32:56 +00:00
|
|
|
sess = db.SetSessionPagination(sess, &listOptions)
|
2020-01-24 19:00:29 +00:00
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repos := make([]*repo_model.Repository, 0, listOptions.PageSize)
|
2021-08-12 12:43:08 +00:00
|
|
|
total, err := sess.FindAndCount(&repos)
|
|
|
|
return repos, total, err
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
2020-01-24 19:00:29 +00:00
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repos := make([]*repo_model.Repository, 0, 10)
|
2021-08-12 12:43:08 +00:00
|
|
|
total, err := sess.FindAndCount(&repos)
|
|
|
|
return repos, total, err
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
2017-05-10 13:10:18 +00:00
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
// IsUserVisibleToViewer check if viewer is able to see user profile
|
2021-12-20 04:41:31 +00:00
|
|
|
func IsUserVisibleToViewer(u, viewer *user_model.User) bool {
|
2021-11-24 09:49:20 +00:00
|
|
|
return isUserVisibleToViewer(db.GetEngine(db.DefaultContext), u, viewer)
|
2020-10-14 13:07:51 +00:00
|
|
|
}
|
2021-11-17 09:58:31 +00:00
|
|
|
|
2021-12-20 04:41:31 +00:00
|
|
|
func isUserVisibleToViewer(e db.Engine, u, viewer *user_model.User) bool {
|
2021-11-24 09:49:20 +00:00
|
|
|
if viewer != nil && viewer.IsAdmin {
|
|
|
|
return true
|
2021-11-17 09:58:31 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
switch u.Visibility {
|
|
|
|
case structs.VisibleTypePublic:
|
|
|
|
return true
|
|
|
|
case structs.VisibleTypeLimited:
|
|
|
|
if viewer == nil || viewer.IsRestricted {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
case structs.VisibleTypePrivate:
|
|
|
|
if viewer == nil || viewer.IsRestricted {
|
|
|
|
return false
|
|
|
|
}
|
2021-11-17 09:58:31 +00:00
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
// If they follow - they see each over
|
|
|
|
follower := user_model.IsFollowing(u.ID, viewer.ID)
|
|
|
|
if follower {
|
|
|
|
return true
|
|
|
|
}
|
2021-11-17 09:58:31 +00:00
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
// Now we need to check if they in some organization together
|
|
|
|
count, err := e.Table("team_user").
|
|
|
|
Where(
|
|
|
|
builder.And(
|
|
|
|
builder.Eq{"uid": viewer.ID},
|
|
|
|
builder.Or(
|
|
|
|
builder.Eq{"org_id": u.ID},
|
|
|
|
builder.In("org_id",
|
|
|
|
builder.Select("org_id").
|
|
|
|
From("team_user", "t2").
|
|
|
|
Where(builder.Eq{"uid": u.ID}))))).
|
|
|
|
Count(new(TeamUser))
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
2021-11-17 09:58:31 +00:00
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
if count < 0 {
|
|
|
|
// No common organization
|
|
|
|
return false
|
|
|
|
}
|
2021-11-18 05:58:42 +00:00
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
// they are in an organization together
|
|
|
|
return true
|
2021-11-18 05:58:42 +00:00
|
|
|
}
|
2021-11-24 09:49:20 +00:00
|
|
|
return false
|
2021-11-18 05:58:42 +00:00
|
|
|
}
|