2022-08-25 04:31:57 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-08-25 04:31:57 +02:00
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
"code.gitea.io/gitea/models/organization"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TeamAddRepository adds new repository to team of organization.
|
2023-09-15 08:13:19 +02:00
|
|
|
func TeamAddRepository(ctx context.Context, t *organization.Team, repo *repo_model.Repository) (err error) {
|
2022-08-25 04:31:57 +02:00
|
|
|
if repo.OwnerID != t.OrgID {
|
|
|
|
return errors.New("repository does not belong to organization")
|
2023-09-15 08:13:19 +02:00
|
|
|
} else if organization.HasTeamRepo(ctx, t.OrgID, t.ID, repo.ID) {
|
2022-08-25 04:31:57 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-09-15 08:13:19 +02:00
|
|
|
return db.WithTx(ctx, func(ctx context.Context) error {
|
2022-08-25 04:31:57 +02:00
|
|
|
return models.AddRepository(ctx, t, repo)
|
|
|
|
})
|
|
|
|
}
|