Skip to content

Commit

Permalink
Prevent DeleteUser API abuse (#10125)
Browse files Browse the repository at this point in the history
* fix & co

* word suggestions from @jolheiser
  • Loading branch information
6543 committed Feb 3, 2020
1 parent 29151b9 commit ea50f60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions routers/api/v1/admin/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package admin

import (
"errors"
"fmt"
"net/http"

"code.gitea.io/gitea/models"
Expand Down Expand Up @@ -227,6 +228,11 @@ func DeleteUser(ctx *context.APIContext) {
return
}

if u.IsOrganization() {
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("%s is an organization not a user", u.Name))
return
}

if err := models.DeleteUser(u); err != nil {
if models.IsErrUserOwnRepos(err) ||
models.IsErrUserHasOrgs(err) {
Expand Down
2 changes: 1 addition & 1 deletion routers/org/setting.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func SettingsDeleteAvatar(ctx *context.Context) {
ctx.Redirect(ctx.Org.OrgLink + "/settings")
}

// SettingsDelete response for delete repository
// SettingsDelete response for deleting an organization
func SettingsDelete(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("org.settings")
ctx.Data["PageIsSettingsDelete"] = true
Expand Down

0 comments on commit ea50f60

Please sign in to comment.