mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
873 B
32 lines
873 B
// Copyright 2019 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package repository |
|
|
|
import ( |
|
"context" |
|
|
|
"code.gitea.io/gitea/models/organization" |
|
repo_model "code.gitea.io/gitea/models/repo" |
|
user_model "code.gitea.io/gitea/models/user" |
|
) |
|
|
|
// CanUserForkRepo returns true if specified user can fork repository. |
|
func CanUserForkRepo(ctx context.Context, user *user_model.User, repo *repo_model.Repository) (bool, error) { |
|
if user == nil { |
|
return false, nil |
|
} |
|
if repo.OwnerID != user.ID && !repo_model.HasForkedRepo(ctx, user.ID, repo.ID) { |
|
return true, nil |
|
} |
|
ownedOrgs, err := organization.GetOrgsCanCreateRepoByUserID(ctx, user.ID) |
|
if err != nil { |
|
return false, err |
|
} |
|
for _, org := range ownedOrgs { |
|
if repo.OwnerID != org.ID && !repo_model.HasForkedRepo(ctx, org.ID, repo.ID) { |
|
return true, nil |
|
} |
|
} |
|
return false, nil |
|
}
|
|
|