c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
61 lines
2.0 KiB
Go
61 lines
2.0 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package gitrepo
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/git"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/git/gitcmd"
|
|
giturl "git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/git/url"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/globallock"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util"
|
|
)
|
|
|
|
type RemoteOption string
|
|
|
|
const (
|
|
RemoteOptionMirrorPush RemoteOption = "--mirror=push"
|
|
RemoteOptionMirrorFetch RemoteOption = "--mirror=fetch"
|
|
)
|
|
|
|
func GitRemoteAdd(ctx context.Context, repo Repository, remoteName, remoteURL string, options ...RemoteOption) error {
|
|
return globallock.LockAndDo(ctx, getRepoConfigLockKey(repo.RelativePath()), func(ctx context.Context) error {
|
|
cmd := gitcmd.NewCommand("remote", "add")
|
|
if len(options) > 0 {
|
|
switch options[0] {
|
|
case RemoteOptionMirrorPush:
|
|
cmd.AddArguments("--mirror=push")
|
|
case RemoteOptionMirrorFetch:
|
|
cmd.AddArguments("--mirror=fetch")
|
|
default:
|
|
return errors.New("unknown remote option: " + string(options[0]))
|
|
}
|
|
}
|
|
_, _, err := RunCmdString(ctx, repo, cmd.AddDynamicArguments(remoteName, remoteURL))
|
|
return err
|
|
})
|
|
}
|
|
|
|
func GitRemoteRemove(ctx context.Context, repo Repository, remoteName string) error {
|
|
return globallock.LockAndDo(ctx, getRepoConfigLockKey(repo.RelativePath()), func(ctx context.Context) error {
|
|
cmd := gitcmd.NewCommand("remote", "rm").AddDynamicArguments(remoteName)
|
|
_, _, err := RunCmdString(ctx, repo, cmd)
|
|
return err
|
|
})
|
|
}
|
|
|
|
// GitRemoteGetURL returns the url of a specific remote of the repository.
|
|
func GitRemoteGetURL(ctx context.Context, repo Repository, remoteName string) (*giturl.GitURL, error) {
|
|
addr, err := git.GetRemoteAddress(ctx, repoPath(repo), remoteName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if addr == "" {
|
|
return nil, util.NewNotExistErrorf("remote '%s' does not exist", remoteName)
|
|
}
|
|
return giturl.ParseGitURL(addr)
|
|
}
|