2022-08-25 08:01:57 +05:30
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-08-25 08:01:57 +05:30
|
|
|
|
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
2022-12-10 08:16:31 +05:30
|
|
|
func AddCollaborator(ctx context.Context, repo *repo_model.Repository, u *user_model.User) error {
|
|
|
|
return db.AutoTx(ctx, func(ctx context.Context) error {
|
|
|
|
collaboration := &repo_model.Collaboration{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
UserID: u.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
has, err := db.GetByBean(ctx, collaboration)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if has {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
collaboration.Mode = perm.AccessModeWrite
|
|
|
|
|
|
|
|
if err = db.Insert(ctx, collaboration); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return access_model.RecalculateUserAccess(ctx, repo, u.ID)
|
2022-08-25 08:01:57 +05:30
|
|
|
})
|
|
|
|
}
|