summaryrefslogtreecommitdiffstats
path: root/models/repo_list.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/repo_list.go')
-rw-r--r--models/repo_list.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/models/repo_list.go b/models/repo_list.go
index bc9b831d30..df6b81cb8d 100644
--- a/models/repo_list.go
+++ b/models/repo_list.go
@@ -249,3 +249,28 @@ func SearchRepositoryByName(opts *SearchRepoOptions) (RepositoryList, int64, err
return repos, count, nil
}
+
+// FindUserAccessibleRepoIDs find all accessible repositories' ID by user's id
+func FindUserAccessibleRepoIDs(userID int64) ([]int64, error) {
+ var accessCond builder.Cond = builder.Eq{"is_private": false}
+
+ if userID > 0 {
+ accessCond = accessCond.Or(
+ builder.Eq{"owner_id": userID},
+ builder.And(
+ builder.Expr("id IN (SELECT repo_id FROM `access` WHERE access.user_id = ?)", userID),
+ builder.Neq{"owner_id": userID},
+ ),
+ )
+ }
+
+ repoIDs := make([]int64, 0, 10)
+ if err := x.
+ Table("repository").
+ Cols("id").
+ Where(accessCond).
+ Find(&repoIDs); err != nil {
+ return nil, fmt.Errorf("FindUserAccesibleRepoIDs: %v", err)
+ }
+ return repoIDs, nil
+}