2023-02-13 10:41:41 +05:30
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2014-04-10 23:50:58 +05:30
|
|
|
|
2023-02-13 10:41:41 +05:30
|
|
|
package user
|
2014-04-10 23:50:58 +05:30
|
|
|
|
|
|
|
import (
|
2019-12-15 15:21:28 +05:30
|
|
|
"context"
|
2014-04-10 23:50:58 +05:30
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2021-11-17 18:04:35 +05:30
|
|
|
_ "image/jpeg" // Needed for jpeg support
|
|
|
|
|
2023-11-05 18:18:32 +05:30
|
|
|
actions_model "code.gitea.io/gitea/models/actions"
|
2022-08-25 08:01:57 +05:30
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-12-10 13:44:24 +05:30
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2022-05-11 16:46:35 +05:30
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 21:21:54 +05:30
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2022-06-13 15:07:59 +05:30
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-03-29 11:59:02 +05:30
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-05-11 15:39:36 +05:30
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2022-05-08 19:16:34 +05:30
|
|
|
pull_model "code.gitea.io/gitea/models/pull"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-11 12:33:30 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-02-13 10:41:41 +05:30
|
|
|
|
|
|
|
"xorm.io/builder"
|
2014-04-10 23:50:58 +05:30
|
|
|
)
|
|
|
|
|
2023-02-13 10:41:41 +05:30
|
|
|
// deleteUser deletes models associated to an user.
|
|
|
|
func deleteUser(ctx context.Context, u *user_model.User, purge bool) (err error) {
|
2021-11-18 11:28:42 +05:30
|
|
|
e := db.GetEngine(ctx)
|
2014-06-27 13:07:01 +05:30
|
|
|
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** START: Watch *****
|
2023-02-13 10:41:41 +05:30
|
|
|
watchedRepoIDs, err := db.FindIDs(ctx, "watch", "watch.repo_id",
|
|
|
|
builder.Eq{"watch.user_id": u.ID}.
|
|
|
|
And(builder.Neq{"watch.mode": repo_model.WatchModeDont}))
|
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("get all watches: %w", err)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
2023-02-13 10:41:41 +05:30
|
|
|
if err = db.DecrByIDs(ctx, watchedRepoIDs, "num_watches", new(repo_model.Repository)); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("decrease repository num_watches: %w", err)
|
2014-04-12 07:17:39 +05:30
|
|
|
}
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** END: Watch *****
|
2015-03-18 07:21:39 +05:30
|
|
|
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** START: Star *****
|
2023-02-13 10:41:41 +05:30
|
|
|
starredRepoIDs, err := db.FindIDs(ctx, "star", "star.repo_id",
|
|
|
|
builder.Eq{"star.uid": u.ID})
|
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("get all stars: %w", err)
|
2023-02-13 10:41:41 +05:30
|
|
|
} else if err = db.DecrByIDs(ctx, starredRepoIDs, "num_stars", new(repo_model.Repository)); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("decrease repository num_stars: %w", err)
|
2015-08-17 14:35:37 +05:30
|
|
|
}
|
|
|
|
// ***** END: Star *****
|
2015-03-18 07:21:39 +05:30
|
|
|
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** START: Follow *****
|
2023-02-13 10:41:41 +05:30
|
|
|
followeeIDs, err := db.FindIDs(ctx, "follow", "follow.follow_id",
|
|
|
|
builder.Eq{"follow.user_id": u.ID})
|
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("get all followees: %w", err)
|
2023-02-13 10:41:41 +05:30
|
|
|
} else if err = db.DecrByIDs(ctx, followeeIDs, "num_followers", new(user_model.User)); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("decrease user num_followers: %w", err)
|
2015-08-17 14:35:37 +05:30
|
|
|
}
|
2017-05-20 14:18:22 +05:30
|
|
|
|
2023-02-13 10:41:41 +05:30
|
|
|
followerIDs, err := db.FindIDs(ctx, "follow", "follow.user_id",
|
|
|
|
builder.Eq{"follow.follow_id": u.ID})
|
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("get all followers: %w", err)
|
2023-02-13 10:41:41 +05:30
|
|
|
} else if err = db.DecrByIDs(ctx, followerIDs, "num_following", new(user_model.User)); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("decrease user num_following: %w", err)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** END: Follow *****
|
2015-03-18 07:21:39 +05:30
|
|
|
|
2022-02-17 14:07:48 +05:30
|
|
|
if err = db.DeleteBeans(ctx,
|
2022-08-25 08:01:57 +05:30
|
|
|
&auth_model.AccessToken{UID: u.ID},
|
2022-05-11 15:39:36 +05:30
|
|
|
&repo_model.Collaboration{UserID: u.ID},
|
|
|
|
&access_model.Access{UserID: u.ID},
|
2021-12-12 21:18:20 +05:30
|
|
|
&repo_model.Watch{UserID: u.ID},
|
|
|
|
&repo_model.Star{UID: u.ID},
|
2021-11-17 15:28:31 +05:30
|
|
|
&user_model.Follow{UserID: u.ID},
|
|
|
|
&user_model.Follow{FollowID: u.ID},
|
2022-08-25 08:01:57 +05:30
|
|
|
&activities_model.Action{UserID: u.ID},
|
2022-06-13 15:07:59 +05:30
|
|
|
&issues_model.IssueUser{UID: u.ID},
|
2021-11-11 12:33:30 +05:30
|
|
|
&user_model.EmailAddress{UID: u.ID},
|
2021-11-17 15:28:31 +05:30
|
|
|
&user_model.UserOpenID{UID: u.ID},
|
2022-06-13 15:07:59 +05:30
|
|
|
&issues_model.Reaction{UserID: u.ID},
|
2022-03-29 11:59:02 +05:30
|
|
|
&organization.TeamUser{UID: u.ID},
|
2022-06-13 15:07:59 +05:30
|
|
|
&issues_model.Stopwatch{UserID: u.ID},
|
2021-11-22 15:17:23 +05:30
|
|
|
&user_model.Setting{UserID: u.ID},
|
2022-08-18 04:55:25 +05:30
|
|
|
&user_model.UserBadge{UserID: u.ID},
|
2022-05-08 19:16:34 +05:30
|
|
|
&pull_model.AutoMerge{DoerID: u.ID},
|
|
|
|
&pull_model.ReviewState{UserID: u.ID},
|
2022-11-18 19:53:34 +05:30
|
|
|
&user_model.Redirect{RedirectUserID: u.ID},
|
2023-11-05 18:18:32 +05:30
|
|
|
&actions_model.ActionRunner{OwnerID: u.ID},
|
2015-03-18 07:21:39 +05:30
|
|
|
); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("deleteBeans: %w", err)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
2015-03-18 07:21:39 +05:30
|
|
|
|
2022-05-11 16:46:35 +05:30
|
|
|
if err := auth_model.DeleteOAuth2RelictsByUserID(ctx, u.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-07-14 12:52:09 +05:30
|
|
|
if purge || (setting.Service.UserDeleteWithCommentsMaxTime != 0 &&
|
|
|
|
u.CreatedUnix.AsTime().Add(setting.Service.UserDeleteWithCommentsMaxTime).After(time.Now())) {
|
2021-01-22 08:26:19 +05:30
|
|
|
|
|
|
|
// Delete Comments
|
|
|
|
const batchSize = 50
|
2022-09-05 22:11:16 +05:30
|
|
|
for {
|
2022-06-13 15:07:59 +05:30
|
|
|
comments := make([]*issues_model.Comment, 0, batchSize)
|
2022-09-05 22:11:16 +05:30
|
|
|
if err = e.Where("type=? AND poster_id=?", issues_model.CommentTypeComment, u.ID).Limit(batchSize, 0).Find(&comments); err != nil {
|
2021-01-22 08:26:19 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(comments) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, comment := range comments {
|
2022-06-13 15:07:59 +05:30
|
|
|
if err = issues_model.DeleteComment(ctx, comment); err != nil {
|
2021-01-22 08:26:19 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete Reactions
|
2022-06-13 15:07:59 +05:30
|
|
|
if err = issues_model.DeleteReaction(ctx, &issues_model.ReactionOptions{DoerID: u.ID}); err != nil {
|
2021-01-22 08:26:19 +05:30
|
|
|
return err
|
2021-01-18 02:18:38 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 06:39:45 +05:30
|
|
|
// ***** START: Branch Protections *****
|
|
|
|
{
|
|
|
|
const batchSize = 50
|
|
|
|
for start := 0; ; start += batchSize {
|
2022-06-12 21:21:54 +05:30
|
|
|
protections := make([]*git_model.ProtectedBranch, 0, batchSize)
|
2022-03-22 06:39:45 +05:30
|
|
|
// @perf: We can't filter on DB side by u.ID, as those IDs are serialized as JSON strings.
|
|
|
|
// We could filter down with `WHERE repo_id IN (reposWithPushPermission(u))`,
|
|
|
|
// though that query will be quite complex and tricky to maintain (compare `getRepoAssignees()`).
|
|
|
|
// Also, as we didn't update branch protections when removing entries from `access` table,
|
|
|
|
// it's safer to iterate all protected branches.
|
|
|
|
if err = e.Limit(batchSize, start).Find(&protections); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("findProtectedBranches: %w", err)
|
2022-03-22 06:39:45 +05:30
|
|
|
}
|
|
|
|
if len(protections) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
for _, p := range protections {
|
2023-01-16 13:30:22 +05:30
|
|
|
if err := git_model.RemoveUserIDFromProtectedBranch(ctx, p, u.ID); err != nil {
|
|
|
|
return err
|
2022-03-22 06:39:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ***** END: Branch Protections *****
|
|
|
|
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** START: PublicKey *****
|
2022-05-20 19:38:52 +05:30
|
|
|
if _, err = db.DeleteByBean(ctx, &asymkey_model.PublicKey{OwnerID: u.ID}); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("deletePublicKeys: %w", err)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
2015-08-17 14:35:37 +05:30
|
|
|
// ***** END: PublicKey *****
|
2014-04-10 23:50:58 +05:30
|
|
|
|
2018-12-18 21:56:26 +05:30
|
|
|
// ***** START: GPGPublicKey *****
|
2021-12-10 13:44:24 +05:30
|
|
|
keys, err := asymkey_model.ListGPGKeys(ctx, u.ID, db.ListOptions{})
|
2021-02-04 14:46:21 +05:30
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("ListGPGKeys: %w", err)
|
2021-02-04 14:46:21 +05:30
|
|
|
}
|
|
|
|
// Delete GPGKeyImport(s).
|
|
|
|
for _, key := range keys {
|
2022-05-20 19:38:52 +05:30
|
|
|
if _, err = db.DeleteByBean(ctx, &asymkey_model.GPGKeyImport{KeyID: key.KeyID}); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("deleteGPGKeyImports: %w", err)
|
2021-02-04 14:46:21 +05:30
|
|
|
}
|
|
|
|
}
|
2022-05-20 19:38:52 +05:30
|
|
|
if _, err = db.DeleteByBean(ctx, &asymkey_model.GPGKey{OwnerID: u.ID}); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("deleteGPGKeys: %w", err)
|
2018-12-18 21:56:26 +05:30
|
|
|
}
|
|
|
|
// ***** END: GPGPublicKey *****
|
|
|
|
|
2015-08-15 00:18:05 +05:30
|
|
|
// Clear assignee.
|
2022-06-13 15:07:59 +05:30
|
|
|
if _, err = db.DeleteByBean(ctx, &issues_model.IssueAssignees{AssigneeID: u.ID}); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("clear assignee: %w", err)
|
2015-08-15 00:18:05 +05:30
|
|
|
}
|
|
|
|
|
2017-02-22 12:44:37 +05:30
|
|
|
// ***** START: ExternalLoginUser *****
|
2021-11-28 19:41:58 +05:30
|
|
|
if err = user_model.RemoveAllAccountLinks(ctx, u); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("ExternalLoginUser: %w", err)
|
2017-02-22 12:44:37 +05:30
|
|
|
}
|
|
|
|
// ***** END: ExternalLoginUser *****
|
|
|
|
|
2023-02-13 10:41:41 +05:30
|
|
|
if _, err = db.DeleteByID(ctx, u.ID, new(user_model.User)); err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("delete: %w", err)
|
2015-03-18 07:21:39 +05:30
|
|
|
}
|
|
|
|
|
2015-08-17 14:35:37 +05:30
|
|
|
return nil
|
2014-06-21 10:21:41 +05:30
|
|
|
}
|