2021-11-18 18:42:27 +01:00
|
|
|
// Copyright 2021 The Gitea 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 user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-11-22 16:21:55 +01:00
|
|
|
"crypto/md5"
|
2021-11-18 18:42:27 +01:00
|
|
|
"fmt"
|
2021-11-22 16:21:55 +01:00
|
|
|
"image/png"
|
|
|
|
"io"
|
2021-11-18 18:42:27 +01:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-12-10 09:14:24 +01:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2021-11-18 18:42:27 +01:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 08:29:02 +02:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-03-30 10:42:47 +02:00
|
|
|
packages_model "code.gitea.io/gitea/models/packages"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2022-10-17 01:29:26 +02:00
|
|
|
system_model "code.gitea.io/gitea/models/system"
|
2021-11-18 18:42:27 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-22 16:21:55 +01:00
|
|
|
"code.gitea.io/gitea/modules/avatar"
|
2022-07-14 09:22:09 +02:00
|
|
|
"code.gitea.io/gitea/modules/eventsource"
|
2021-11-22 16:21:55 +01:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2022-07-14 09:22:09 +02:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-11-18 18:42:27 +01:00
|
|
|
"code.gitea.io/gitea/modules/storage"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
2022-07-14 09:22:09 +02:00
|
|
|
"code.gitea.io/gitea/services/packages"
|
2021-11-18 18:42:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// DeleteUser completely and permanently deletes everything of a user,
|
|
|
|
// but issues/comments/pulls will be kept and shown as someone has been deleted,
|
|
|
|
// unless the user is younger than USER_DELETE_WITH_COMMENTS_MAX_DAYS.
|
2022-07-14 09:22:09 +02:00
|
|
|
func DeleteUser(ctx context.Context, u *user_model.User, purge bool) error {
|
2021-11-18 18:42:27 +01:00
|
|
|
if u.IsOrganization() {
|
|
|
|
return fmt.Errorf("%s is an organization not a user", u.Name)
|
|
|
|
}
|
|
|
|
|
2022-07-14 09:22:09 +02:00
|
|
|
if purge {
|
|
|
|
// Disable the user first
|
|
|
|
// NOTE: This is deliberately not within a transaction as it must disable the user immediately to prevent any further action by the user to be purged.
|
|
|
|
if err := user_model.UpdateUserCols(ctx, &user_model.User{
|
|
|
|
ID: u.ID,
|
|
|
|
IsActive: false,
|
|
|
|
IsRestricted: true,
|
|
|
|
IsAdmin: false,
|
|
|
|
ProhibitLogin: true,
|
|
|
|
Passwd: "",
|
|
|
|
Salt: "",
|
|
|
|
PasswdHashAlgo: "",
|
|
|
|
MaxRepoCreation: 0,
|
|
|
|
}, "is_active", "is_restricted", "is_admin", "prohibit_login", "max_repo_creation", "passwd", "salt", "passwd_hash_algo"); err != nil {
|
|
|
|
return fmt.Errorf("unable to disable user: %s[%d] prior to purge. UpdateUserCols: %w", u.Name, u.ID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force any logged in sessions to log out
|
|
|
|
// FIXME: We also need to tell the session manager to log them out too.
|
|
|
|
eventsource.GetManager().SendMessage(u.ID, &eventsource.Event{
|
|
|
|
Name: "logout",
|
|
|
|
})
|
|
|
|
|
|
|
|
// Delete all repos belonging to this user
|
|
|
|
// Now this is not within a transaction because there are internal transactions within the DeleteRepository
|
|
|
|
// BUT: the db will still be consistent even if a number of repos have already been deleted.
|
|
|
|
// And in fact we want to capture any repositories that are being created in other transactions in the meantime
|
|
|
|
//
|
|
|
|
// An alternative option here would be write a DeleteAllRepositoriesForUserID function which would delete all of the repos
|
|
|
|
// but such a function would likely get out of date
|
|
|
|
for {
|
|
|
|
repos, _, err := repo_model.GetUserRepositories(&repo_model.SearchRepoOptions{
|
|
|
|
ListOptions: db.ListOptions{
|
|
|
|
PageSize: repo_model.RepositoryListDefaultPageSize,
|
|
|
|
Page: 1,
|
|
|
|
},
|
|
|
|
Private: true,
|
|
|
|
OwnerID: u.ID,
|
2022-07-21 23:31:22 +02:00
|
|
|
Actor: u,
|
2022-07-14 09:22:09 +02:00
|
|
|
})
|
|
|
|
if err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("SearchRepositoryByName: %w", err)
|
2022-07-14 09:22:09 +02:00
|
|
|
}
|
|
|
|
if len(repos) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
for _, repo := range repos {
|
|
|
|
if err := models.DeleteRepository(u, u.ID, repo.ID); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("unable to delete repository %s for %s[%d]. Error: %w", repo.Name, u.Name, u.ID, err)
|
2022-07-14 09:22:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove from Organizations and delete last owner organizations
|
|
|
|
// Now this is not within a transaction because there are internal transactions within the DeleteOrganization
|
|
|
|
// BUT: the db will still be consistent even if a number of organizations memberships and organizations have already been deleted
|
|
|
|
// And in fact we want to capture any organization additions that are being created in other transactions in the meantime
|
|
|
|
//
|
|
|
|
// An alternative option here would be write a function which would delete all organizations but it seems
|
|
|
|
// but such a function would likely get out of date
|
|
|
|
for {
|
|
|
|
orgs, err := organization.FindOrgs(organization.FindOrgOptions{
|
|
|
|
ListOptions: db.ListOptions{
|
|
|
|
PageSize: repo_model.RepositoryListDefaultPageSize,
|
|
|
|
Page: 1,
|
|
|
|
},
|
|
|
|
UserID: u.ID,
|
|
|
|
IncludePrivate: true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("unable to find org list for %s[%d]. Error: %w", u.Name, u.ID, err)
|
2022-07-14 09:22:09 +02:00
|
|
|
}
|
|
|
|
if len(orgs) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
for _, org := range orgs {
|
|
|
|
if err := models.RemoveOrgUser(org.ID, u.ID); err != nil {
|
|
|
|
if organization.IsErrLastOrgOwner(err) {
|
|
|
|
err = organization.DeleteOrganization(ctx, org)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("unable to remove user %s[%d] from org %s[%d]. Error: %w", u.Name, u.ID, org.Name, org.ID, err)
|
2022-07-14 09:22:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete Packages
|
|
|
|
if setting.Packages.Enabled {
|
|
|
|
if _, err := packages.RemoveAllPackages(ctx, u.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-10 09:14:24 +01:00
|
|
|
ctx, committer, err := db.TxContext()
|
2021-11-18 18:42:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-10 09:14:24 +01:00
|
|
|
defer committer.Close()
|
2021-11-18 18:42:27 +01:00
|
|
|
|
|
|
|
// Note: A user owns any repository or belongs to any organization
|
2022-07-14 09:22:09 +02:00
|
|
|
// cannot perform delete operation. This causes a race with the purge above
|
|
|
|
// however consistency requires that we ensure that this is the case
|
2021-11-18 18:42:27 +01:00
|
|
|
|
|
|
|
// Check ownership of repository.
|
2022-05-20 16:08:52 +02:00
|
|
|
count, err := repo_model.CountRepositories(ctx, repo_model.CountRepositoryOptions{OwnerID: u.ID})
|
2021-11-18 18:42:27 +01:00
|
|
|
if err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("GetRepositoryCount: %w", err)
|
2021-11-18 18:42:27 +01:00
|
|
|
} else if count > 0 {
|
|
|
|
return models.ErrUserOwnRepos{UID: u.ID}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check membership of organization.
|
2022-03-29 08:29:02 +02:00
|
|
|
count, err = organization.GetOrganizationCount(ctx, u)
|
2021-11-18 18:42:27 +01:00
|
|
|
if err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("GetOrganizationCount: %w", err)
|
2021-11-18 18:42:27 +01:00
|
|
|
} else if count > 0 {
|
|
|
|
return models.ErrUserHasOrgs{UID: u.ID}
|
|
|
|
}
|
|
|
|
|
2022-03-30 10:42:47 +02:00
|
|
|
// Check ownership of packages.
|
|
|
|
if ownsPackages, err := packages_model.HasOwnerPackages(ctx, u.ID); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("HasOwnerPackages: %w", err)
|
2022-03-30 10:42:47 +02:00
|
|
|
} else if ownsPackages {
|
|
|
|
return models.ErrUserOwnPackages{UID: u.ID}
|
|
|
|
}
|
|
|
|
|
2022-07-14 09:22:09 +02:00
|
|
|
if err := models.DeleteUser(ctx, u, purge); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("DeleteUser: %w", err)
|
2021-11-18 18:42:27 +01:00
|
|
|
}
|
|
|
|
|
2021-12-10 09:14:24 +01:00
|
|
|
if err := committer.Commit(); err != nil {
|
2021-11-18 18:42:27 +01:00
|
|
|
return err
|
|
|
|
}
|
2021-12-10 09:14:24 +01:00
|
|
|
committer.Close()
|
2021-11-18 18:42:27 +01:00
|
|
|
|
2021-12-10 09:14:24 +01:00
|
|
|
if err = asymkey_model.RewriteAllPublicKeys(); err != nil {
|
2021-11-22 16:21:55 +01:00
|
|
|
return err
|
|
|
|
}
|
2022-05-20 16:08:52 +02:00
|
|
|
if err = asymkey_model.RewriteAllPrincipalKeys(db.DefaultContext); err != nil {
|
2021-11-22 16:21:55 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-18 18:42:27 +01:00
|
|
|
// Note: There are something just cannot be roll back,
|
|
|
|
// so just keep error logs of those operations.
|
2021-11-24 10:49:20 +01:00
|
|
|
path := user_model.UserPath(u.Name)
|
2021-11-18 18:42:27 +01:00
|
|
|
if err := util.RemoveAll(path); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
err = fmt.Errorf("Failed to RemoveAll %s: %w", path, err)
|
2022-10-17 01:29:26 +02:00
|
|
|
_ = system_model.CreateNotice(ctx, system_model.NoticeTask, fmt.Sprintf("delete user '%s': %v", u.Name, err))
|
2021-11-18 18:42:27 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Avatar != "" {
|
|
|
|
avatarPath := u.CustomAvatarRelativePath()
|
|
|
|
if err := storage.Avatars.Delete(avatarPath); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
err = fmt.Errorf("Failed to remove %s: %w", avatarPath, err)
|
2022-10-17 01:29:26 +02:00
|
|
|
_ = system_model.CreateNotice(ctx, system_model.NoticeTask, fmt.Sprintf("delete user '%s': %v", u.Name, err))
|
2021-11-18 18:42:27 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteInactiveUsers deletes all inactive users and email addresses.
|
|
|
|
func DeleteInactiveUsers(ctx context.Context, olderThan time.Duration) error {
|
2021-11-24 10:49:20 +01:00
|
|
|
users, err := user_model.GetInactiveUsers(ctx, olderThan)
|
2021-11-18 18:42:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: should only update authorized_keys file once after all deletions.
|
|
|
|
for _, u := range users {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return db.ErrCancelledf("Before delete inactive user %s", u.Name)
|
|
|
|
default:
|
|
|
|
}
|
2022-07-14 09:22:09 +02:00
|
|
|
if err := DeleteUser(ctx, u, false); err != nil {
|
2021-11-18 18:42:27 +01:00
|
|
|
// Ignore users that were set inactive by admin.
|
2022-03-30 10:42:47 +02:00
|
|
|
if models.IsErrUserOwnRepos(err) || models.IsErrUserHasOrgs(err) || models.IsErrUserOwnPackages(err) {
|
2021-11-18 18:42:27 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return user_model.DeleteInactiveEmailAddresses(ctx)
|
|
|
|
}
|
2021-11-22 16:21:55 +01:00
|
|
|
|
|
|
|
// UploadAvatar saves custom avatar for user.
|
2021-11-24 10:49:20 +01:00
|
|
|
func UploadAvatar(u *user_model.User, data []byte) error {
|
2021-11-22 16:21:55 +01:00
|
|
|
m, err := avatar.Prepare(data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx, committer, err := db.TxContext()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
u.UseCustomAvatar = true
|
|
|
|
// Different users can upload same image as avatar
|
|
|
|
// If we prefix it with u.ID, it will be separated
|
|
|
|
// Otherwise, if any of the users delete his avatar
|
|
|
|
// Other users will lose their avatars too.
|
|
|
|
u.Avatar = fmt.Sprintf("%x", md5.Sum([]byte(fmt.Sprintf("%d-%x", u.ID, md5.Sum(data)))))
|
2021-11-24 10:49:20 +01:00
|
|
|
if err = user_model.UpdateUserCols(ctx, u, "use_custom_avatar", "avatar"); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("updateUser: %w", err)
|
2021-11-22 16:21:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := storage.SaveFrom(storage.Avatars, u.CustomAvatarRelativePath(), func(w io.Writer) error {
|
|
|
|
if err := png.Encode(w, *m); err != nil {
|
|
|
|
log.Error("Encode: %v", err)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("Failed to create dir %s: %w", u.CustomAvatarRelativePath(), err)
|
2021-11-22 16:21:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return committer.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteAvatar deletes the user's custom avatar.
|
2021-11-24 10:49:20 +01:00
|
|
|
func DeleteAvatar(u *user_model.User) error {
|
2021-11-22 16:21:55 +01:00
|
|
|
aPath := u.CustomAvatarRelativePath()
|
|
|
|
log.Trace("DeleteAvatar[%d]: %s", u.ID, aPath)
|
|
|
|
if len(u.Avatar) > 0 {
|
|
|
|
if err := storage.Avatars.Delete(aPath); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("Failed to remove %s: %w", aPath, err)
|
2021-11-22 16:21:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u.UseCustomAvatar = false
|
|
|
|
u.Avatar = ""
|
|
|
|
if _, err := db.GetEngine(db.DefaultContext).ID(u.ID).Cols("avatar, use_custom_avatar").Update(u); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("UpdateUser: %w", err)
|
2021-11-22 16:21:55 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|