Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix creation of Organization repos by Users with max created personal repos #11183

Merged
merged 6 commits into from
Apr 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions models/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ func (u *User) MaxCreationLimit() int {
}

// CanCreateRepo returns if user login can create a repository
// NOTE: functions calling this assume a failure due to repository count limit; if new checks are added, those functions should be revised
func (u *User) CanCreateRepo() bool {
if u.IsAdmin {
return true
Expand Down
21 changes: 15 additions & 6 deletions routers/repo/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ func checkContextUser(ctx *context.Context, uid int64) *models.User {
ctx.ServerError("GetOrgsCanCreateRepoByUserID", err)
return nil
}
ctx.Data["Orgs"] = orgs

// Not equal means current user is an organization.
if uid == ctx.User.ID || uid == 0 {
Expand All @@ -84,6 +83,14 @@ func checkContextUser(ctx *context.Context, uid int64) *models.User {
return nil
}
if !ctx.User.IsAdmin {
orgsAvailable := []*models.User{}
for i := 0; i < len(orgs); i++ {
if orgs[i].CanCreateRepo() {
orgsAvailable = append(orgsAvailable, orgs[i])
}
}
ctx.Data["Orgs"] = orgsAvailable

canCreate, err := org.CanCreateOrgRepo(ctx.User.ID)
if err != nil {
ctx.ServerError("CanCreateOrgRepo", err)
Expand All @@ -92,6 +99,8 @@ func checkContextUser(ctx *context.Context, uid int64) *models.User {
ctx.Error(403)
return nil
}
} else {
ctx.Data["Orgs"] = orgs
}
return org
}
Expand All @@ -111,10 +120,6 @@ func getRepoPrivate(ctx *context.Context) bool {

// Create render creating repository page
func Create(ctx *context.Context) {
if !ctx.User.CanCreateRepo() {
ctx.RenderWithErr(ctx.Tr("repo.form.reach_limit_of_creation", ctx.User.MaxCreationLimit()), tplCreate, nil)
}

ctx.Data["Title"] = ctx.Tr("new_repo")

// Give default value for template to render.
Expand Down Expand Up @@ -142,7 +147,11 @@ func Create(ctx *context.Context) {
}
}

ctx.HTML(200, tplCreate)
if !ctx.User.CanCreateRepo() {
zeripath marked this conversation as resolved.
Show resolved Hide resolved
ctx.RenderWithErr(ctx.Tr("repo.form.reach_limit_of_creation", ctx.User.MaxCreationLimit()), tplCreate, nil)
} else {
ctx.HTML(200, tplCreate)
}
}

func handleCreateError(ctx *context.Context, owner *models.User, err error, name string, tpl base.TplName, form interface{}) {
Expand Down
1 change: 1 addition & 0 deletions templates/repo/create.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
{{end}}
</div>
</div>
<span class="help">Some organizations may not show up in the dropdown due to a maximum repository count limit</span>
</div>

<div class="inline required field {{if .Err_RepoName}}error{{end}}">
Expand Down