2022-08-24 20:31:57 -06:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-08-24 20:31:57 -06:00
|
|
|
|
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
"code.gitea.io/gitea/models/perm"
|
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2023-12-07 00:27:36 -07:00
|
|
|
|
|
|
|
"xorm.io/builder"
|
2022-08-24 20:31:57 -06:00
|
|
|
)
|
|
|
|
|
2022-12-09 19:46:31 -07:00
|
|
|
func AddCollaborator(ctx context.Context, repo *repo_model.Repository, u *user_model.User) error {
|
2024-03-04 01:16:03 -07:00
|
|
|
if err := repo.LoadOwner(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user_model.IsUserBlockedBy(ctx, u, repo.OwnerID) || user_model.IsUserBlockedBy(ctx, repo.Owner, u.ID) {
|
|
|
|
return user_model.ErrBlockedUser
|
|
|
|
}
|
|
|
|
|
2023-01-07 18:34:58 -07:00
|
|
|
return db.WithTx(ctx, func(ctx context.Context) error {
|
2023-12-07 00:27:36 -07:00
|
|
|
has, err := db.Exist[repo_model.Collaboration](ctx, builder.Eq{
|
|
|
|
"repo_id": repo.ID,
|
|
|
|
"user_id": u.ID,
|
|
|
|
})
|
2022-12-09 19:46:31 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if has {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-12-07 00:27:36 -07:00
|
|
|
if err = db.Insert(ctx, &repo_model.Collaboration{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
UserID: u.ID,
|
|
|
|
Mode: perm.AccessModeWrite,
|
|
|
|
}); err != nil {
|
2022-12-09 19:46:31 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return access_model.RecalculateUserAccess(ctx, repo, u.ID)
|
2022-08-24 20:31:57 -06:00
|
|
|
})
|
|
|
|
}
|