2023-02-12 22:11:41 -07:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-04-10 12:20:58 -06:00
|
|
|
|
2023-02-12 22:11:41 -07:00
|
|
|
package user
|
2014-04-10 12:20:58 -06:00
|
|
|
|
|
|
|
import (
|
2019-12-15 02:51:28 -07:00
|
|
|
"context"
|
2014-04-10 12:20:58 -06:00
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2021-11-17 05:34:35 -07:00
|
|
|
_ "image/jpeg" // Needed for jpeg support
|
|
|
|
|
2023-11-05 05:48:32 -07:00
|
|
|
actions_model "code.gitea.io/gitea/models/actions"
|
2022-08-24 20:31:57 -06:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-12-10 01:14:24 -07:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2022-05-11 05:16:35 -06:00
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 09:51:54 -06:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2022-06-13 03:37:59 -06:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-03-29 00:29:02 -06:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-05-11 04:09:36 -06:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2022-05-08 07:46:34 -06:00
|
|
|
pull_model "code.gitea.io/gitea/models/pull"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-11 00:03:30 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-02-12 22:11:41 -07:00
|
|
|
|
|
|
|
"xorm.io/builder"
|
2014-04-10 12:20:58 -06:00
|
|
|
)
|
|
|
|
|
2023-02-12 22:11:41 -07:00
|
|
|
// deleteUser deletes models associated to an user.
|
|
|
|
func deleteUser(ctx context.Context, u *user_model.User, purge bool) (err error) {
|
2021-11-17 22:58:42 -07:00
|
|
|
e := db.GetEngine(ctx)
|
2014-06-27 01:37:01 -06:00
|
|
|
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** START: Watch *****
|
2023-02-12 22:11:41 -07:00
|
|
|
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-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("get all watches: %w", err)
|
2014-04-10 12:20:58 -06:00
|
|
|
}
|
2023-02-12 22:11:41 -07:00
|
|
|
if err = db.DecrByIDs(ctx, watchedRepoIDs, "num_watches", new(repo_model.Repository)); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("decrease repository num_watches: %w", err)
|
2014-04-11 19:47:39 -06:00
|
|
|
}
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** END: Watch *****
|
2015-03-17 19:51:39 -06:00
|
|
|
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** START: Star *****
|
2023-02-12 22:11:41 -07:00
|
|
|
starredRepoIDs, err := db.FindIDs(ctx, "star", "star.repo_id",
|
|
|
|
builder.Eq{"star.uid": u.ID})
|
|
|
|
if err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("get all stars: %w", err)
|
2023-02-12 22:11:41 -07:00
|
|
|
} else if err = db.DecrByIDs(ctx, starredRepoIDs, "num_stars", new(repo_model.Repository)); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("decrease repository num_stars: %w", err)
|
2015-08-17 03:05:37 -06:00
|
|
|
}
|
|
|
|
// ***** END: Star *****
|
2015-03-17 19:51:39 -06:00
|
|
|
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** START: Follow *****
|
2023-02-12 22:11:41 -07:00
|
|
|
followeeIDs, err := db.FindIDs(ctx, "follow", "follow.follow_id",
|
|
|
|
builder.Eq{"follow.user_id": u.ID})
|
|
|
|
if err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("get all followees: %w", err)
|
2023-02-12 22:11:41 -07:00
|
|
|
} else if err = db.DecrByIDs(ctx, followeeIDs, "num_followers", new(user_model.User)); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("decrease user num_followers: %w", err)
|
2015-08-17 03:05:37 -06:00
|
|
|
}
|
2017-05-20 02:48:22 -06:00
|
|
|
|
2023-02-12 22:11:41 -07:00
|
|
|
followerIDs, err := db.FindIDs(ctx, "follow", "follow.user_id",
|
|
|
|
builder.Eq{"follow.follow_id": u.ID})
|
|
|
|
if err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("get all followers: %w", err)
|
2023-02-12 22:11:41 -07:00
|
|
|
} else if err = db.DecrByIDs(ctx, followerIDs, "num_following", new(user_model.User)); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("decrease user num_following: %w", err)
|
2014-04-10 12:20:58 -06:00
|
|
|
}
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** END: Follow *****
|
2015-03-17 19:51:39 -06:00
|
|
|
|
2022-02-17 01:37:48 -07:00
|
|
|
if err = db.DeleteBeans(ctx,
|
2022-08-24 20:31:57 -06:00
|
|
|
&auth_model.AccessToken{UID: u.ID},
|
2022-05-11 04:09:36 -06:00
|
|
|
&repo_model.Collaboration{UserID: u.ID},
|
|
|
|
&access_model.Access{UserID: u.ID},
|
2021-12-12 08:48:20 -07:00
|
|
|
&repo_model.Watch{UserID: u.ID},
|
|
|
|
&repo_model.Star{UID: u.ID},
|
2021-11-17 02:58:31 -07:00
|
|
|
&user_model.Follow{UserID: u.ID},
|
|
|
|
&user_model.Follow{FollowID: u.ID},
|
2022-08-24 20:31:57 -06:00
|
|
|
&activities_model.Action{UserID: u.ID},
|
2022-06-13 03:37:59 -06:00
|
|
|
&issues_model.IssueUser{UID: u.ID},
|
2021-11-11 00:03:30 -07:00
|
|
|
&user_model.EmailAddress{UID: u.ID},
|
2021-11-17 02:58:31 -07:00
|
|
|
&user_model.UserOpenID{UID: u.ID},
|
2022-06-13 03:37:59 -06:00
|
|
|
&issues_model.Reaction{UserID: u.ID},
|
2022-03-29 00:29:02 -06:00
|
|
|
&organization.TeamUser{UID: u.ID},
|
2022-06-13 03:37:59 -06:00
|
|
|
&issues_model.Stopwatch{UserID: u.ID},
|
2021-11-22 02:47:23 -07:00
|
|
|
&user_model.Setting{UserID: u.ID},
|
2022-08-17 17:25:25 -06:00
|
|
|
&user_model.UserBadge{UserID: u.ID},
|
2022-05-08 07:46:34 -06:00
|
|
|
&pull_model.AutoMerge{DoerID: u.ID},
|
|
|
|
&pull_model.ReviewState{UserID: u.ID},
|
2022-11-18 07:23:34 -07:00
|
|
|
&user_model.Redirect{RedirectUserID: u.ID},
|
2023-11-05 05:48:32 -07:00
|
|
|
&actions_model.ActionRunner{OwnerID: u.ID},
|
2024-03-04 01:16:03 -07:00
|
|
|
&user_model.Blocking{BlockerID: u.ID},
|
|
|
|
&user_model.Blocking{BlockeeID: u.ID},
|
2024-04-11 02:01:44 -06:00
|
|
|
&actions_model.ActionRunnerToken{OwnerID: u.ID},
|
2015-03-17 19:51:39 -06:00
|
|
|
); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("deleteBeans: %w", err)
|
2014-04-10 12:20:58 -06:00
|
|
|
}
|
2015-03-17 19:51:39 -06:00
|
|
|
|
2022-05-11 05:16:35 -06:00
|
|
|
if err := auth_model.DeleteOAuth2RelictsByUserID(ctx, u.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-07-14 01:22:09 -06:00
|
|
|
if purge || (setting.Service.UserDeleteWithCommentsMaxTime != 0 &&
|
|
|
|
u.CreatedUnix.AsTime().Add(setting.Service.UserDeleteWithCommentsMaxTime).After(time.Now())) {
|
2021-01-21 19:56:19 -07:00
|
|
|
// Delete Comments
|
|
|
|
const batchSize = 50
|
2022-09-05 10:41:16 -06:00
|
|
|
for {
|
2022-06-13 03:37:59 -06:00
|
|
|
comments := make([]*issues_model.Comment, 0, batchSize)
|
2022-09-05 10:41:16 -06:00
|
|
|
if err = e.Where("type=? AND poster_id=?", issues_model.CommentTypeComment, u.ID).Limit(batchSize, 0).Find(&comments); err != nil {
|
2021-01-21 19:56:19 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(comments) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, comment := range comments {
|
2022-06-13 03:37:59 -06:00
|
|
|
if err = issues_model.DeleteComment(ctx, comment); err != nil {
|
2021-01-21 19:56:19 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete Reactions
|
2022-06-13 03:37:59 -06:00
|
|
|
if err = issues_model.DeleteReaction(ctx, &issues_model.ReactionOptions{DoerID: u.ID}); err != nil {
|
2021-01-21 19:56:19 -07:00
|
|
|
return err
|
2021-01-17 13:48:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 19:09:45 -06:00
|
|
|
// ***** START: Branch Protections *****
|
|
|
|
{
|
|
|
|
const batchSize = 50
|
|
|
|
for start := 0; ; start += batchSize {
|
2022-06-12 09:51:54 -06:00
|
|
|
protections := make([]*git_model.ProtectedBranch, 0, batchSize)
|
2022-03-21 19:09:45 -06:00
|
|
|
// @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-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("findProtectedBranches: %w", err)
|
2022-03-21 19:09:45 -06:00
|
|
|
}
|
|
|
|
if len(protections) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
for _, p := range protections {
|
2023-01-16 01:00:22 -07:00
|
|
|
if err := git_model.RemoveUserIDFromProtectedBranch(ctx, p, u.ID); err != nil {
|
|
|
|
return err
|
2022-03-21 19:09:45 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ***** END: Branch Protections *****
|
|
|
|
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** START: PublicKey *****
|
2022-05-20 08:08:52 -06:00
|
|
|
if _, err = db.DeleteByBean(ctx, &asymkey_model.PublicKey{OwnerID: u.ID}); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("deletePublicKeys: %w", err)
|
2014-04-10 12:20:58 -06:00
|
|
|
}
|
2015-08-17 03:05:37 -06:00
|
|
|
// ***** END: PublicKey *****
|
2014-04-10 12:20:58 -06:00
|
|
|
|
2018-12-18 09:26:26 -07:00
|
|
|
// ***** START: GPGPublicKey *****
|
2024-01-14 19:19:25 -07:00
|
|
|
keys, err := db.Find[asymkey_model.GPGKey](ctx, asymkey_model.FindGPGKeyOptions{
|
|
|
|
OwnerID: u.ID,
|
|
|
|
})
|
2021-02-04 02:16:21 -07:00
|
|
|
if err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("ListGPGKeys: %w", err)
|
2021-02-04 02:16:21 -07:00
|
|
|
}
|
|
|
|
// Delete GPGKeyImport(s).
|
|
|
|
for _, key := range keys {
|
2022-05-20 08:08:52 -06:00
|
|
|
if _, err = db.DeleteByBean(ctx, &asymkey_model.GPGKeyImport{KeyID: key.KeyID}); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("deleteGPGKeyImports: %w", err)
|
2021-02-04 02:16:21 -07:00
|
|
|
}
|
|
|
|
}
|
2022-05-20 08:08:52 -06:00
|
|
|
if _, err = db.DeleteByBean(ctx, &asymkey_model.GPGKey{OwnerID: u.ID}); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("deleteGPGKeys: %w", err)
|
2018-12-18 09:26:26 -07:00
|
|
|
}
|
|
|
|
// ***** END: GPGPublicKey *****
|
|
|
|
|
2015-08-14 12:48:05 -06:00
|
|
|
// Clear assignee.
|
2022-06-13 03:37:59 -06:00
|
|
|
if _, err = db.DeleteByBean(ctx, &issues_model.IssueAssignees{AssigneeID: u.ID}); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("clear assignee: %w", err)
|
2015-08-14 12:48:05 -06:00
|
|
|
}
|
|
|
|
|
2017-02-22 00:14:37 -07:00
|
|
|
// ***** START: ExternalLoginUser *****
|
2021-11-28 07:11:58 -07:00
|
|
|
if err = user_model.RemoveAllAccountLinks(ctx, u); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("ExternalLoginUser: %w", err)
|
2017-02-22 00:14:37 -07:00
|
|
|
}
|
|
|
|
// ***** END: ExternalLoginUser *****
|
|
|
|
|
2024-02-04 07:05:26 -07:00
|
|
|
if err := auth_model.DeleteAuthTokensByUserID(ctx, u.ID); err != nil {
|
|
|
|
return fmt.Errorf("DeleteAuthTokensByUserID: %w", err)
|
|
|
|
}
|
|
|
|
|
2023-12-25 13:25:29 -07:00
|
|
|
if _, err = db.DeleteByID[user_model.User](ctx, u.ID); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("delete: %w", err)
|
2015-03-17 19:51:39 -06:00
|
|
|
}
|
|
|
|
|
2015-08-17 03:05:37 -06:00
|
|
|
return nil
|
2014-06-20 22:51:41 -06:00
|
|
|
}
|