mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
951 B
42 lines
951 B
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package cmd |
|
|
|
import ( |
|
"context" |
|
|
|
"code.gitea.io/gitea/modules/graceful" |
|
asymkey_service "code.gitea.io/gitea/services/asymkey" |
|
repo_service "code.gitea.io/gitea/services/repository" |
|
|
|
"github.com/urfave/cli/v3" |
|
) |
|
|
|
var ( |
|
microcmdRegenHooks = &cli.Command{ |
|
Name: "hooks", |
|
Usage: "Regenerate git-hooks", |
|
Action: runRegenerateHooks, |
|
} |
|
|
|
microcmdRegenKeys = &cli.Command{ |
|
Name: "keys", |
|
Usage: "Regenerate authorized_keys file", |
|
Action: runRegenerateKeys, |
|
} |
|
) |
|
|
|
func runRegenerateHooks(ctx context.Context, _ *cli.Command) error { |
|
if err := initDB(ctx); err != nil { |
|
return err |
|
} |
|
return repo_service.SyncRepositoryHooks(graceful.GetManager().ShutdownContext()) |
|
} |
|
|
|
func runRegenerateKeys(ctx context.Context, _ *cli.Command) error { |
|
if err := initDB(ctx); err != nil { |
|
return err |
|
} |
|
return asymkey_service.RewriteAllPublicKeys(ctx) |
|
}
|
|
|