9a5720e8ad
Universal: PR Check / Branch Policy (pull_request) Successful in 1s
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
PR RC Release / Build RC Release (pull_request) Successful in 3s
Universal: PR Check / Validate PR (pull_request) Failing after 6s
Branch Cleanup / Delete merged branch (pull_request) Successful in 1s
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
72 lines
2.2 KiB
Go
72 lines
2.2 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package asymkey
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
asymkey_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/asymkey"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/db"
|
|
repo_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/repo"
|
|
)
|
|
|
|
// DeleteRepoDeployKeys deletes all deploy keys of a repository. permissions check should be done outside
|
|
func DeleteRepoDeployKeys(ctx context.Context, repoID int64) (int, error) {
|
|
deployKeys, err := db.Find[asymkey_model.DeployKey](ctx, asymkey_model.ListDeployKeysOptions{RepoID: repoID})
|
|
if err != nil {
|
|
return 0, fmt.Errorf("listDeployKeys: %w", err)
|
|
}
|
|
|
|
for _, dKey := range deployKeys {
|
|
if err := deleteDeployKeyFromDB(ctx, dKey); err != nil {
|
|
return 0, fmt.Errorf("deleteDeployKeys: %w", err)
|
|
}
|
|
}
|
|
return len(deployKeys), nil
|
|
}
|
|
|
|
// deleteDeployKeyFromDB delete deploy keys from database
|
|
func deleteDeployKeyFromDB(ctx context.Context, key *asymkey_model.DeployKey) error {
|
|
if _, err := db.DeleteByID[asymkey_model.DeployKey](ctx, key.ID); err != nil {
|
|
return fmt.Errorf("delete deploy key [%d]: %w", key.ID, err)
|
|
}
|
|
|
|
// Check if this is the last reference to same key content.
|
|
has, err := asymkey_model.IsDeployKeyExistByKeyID(ctx, key.KeyID)
|
|
if err != nil {
|
|
return err
|
|
} else if !has {
|
|
if _, err = db.DeleteByID[asymkey_model.PublicKey](ctx, key.KeyID); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// DeleteDeployKey deletes deploy key from its repository authorized_keys file if needed.
|
|
// Permissions check should be done outside.
|
|
func DeleteDeployKey(ctx context.Context, repo *repo_model.Repository, id int64) error {
|
|
if err := db.WithTx(ctx, func(ctx context.Context) error {
|
|
key, err := asymkey_model.GetDeployKeyByID(ctx, id)
|
|
if err != nil {
|
|
if asymkey_model.IsErrDeployKeyNotExist(err) {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("GetDeployKeyByID: %w", err)
|
|
}
|
|
|
|
if key.RepoID != repo.ID {
|
|
return fmt.Errorf("deploy key %d does not belong to repository %d", id, repo.ID)
|
|
}
|
|
|
|
return deleteDeployKeyFromDB(ctx, key)
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
return RewriteAllPublicKeys(ctx)
|
|
}
|