- Fix remaining 187 pkg/ files referencing core/cli → core/go - Move SDK library code from internal/cmd/sdk/ → pkg/sdk/ (new package) - Create pkg/rag/helpers.go with convenience functions from internal/cmd/rag/ - Fix pkg/mcp/tools_rag.go to use pkg/rag instead of internal/cmd/rag - Fix pkg/build/buildcmd/cmd_sdk.go and pkg/release/sdk.go to use pkg/sdk - Remove all non-library content: main.go, internal/, cmd/, docker/, scripts/, tasks/, tools/, .core/, .forgejo/, .woodpecker/, Taskfile.yml - Run go mod tidy to trim unused dependencies core/go is now a pure Go package suite (library only). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #3
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
package signing
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os/exec"
|
|
|
|
"forge.lthn.ai/core/go/pkg/io"
|
|
)
|
|
|
|
// GPGSigner signs files using GPG.
|
|
type GPGSigner struct {
|
|
KeyID string
|
|
}
|
|
|
|
// Compile-time interface check.
|
|
var _ Signer = (*GPGSigner)(nil)
|
|
|
|
// NewGPGSigner creates a new GPG signer.
|
|
func NewGPGSigner(keyID string) *GPGSigner {
|
|
return &GPGSigner{KeyID: keyID}
|
|
}
|
|
|
|
// Name returns "gpg".
|
|
func (s *GPGSigner) Name() string {
|
|
return "gpg"
|
|
}
|
|
|
|
// Available checks if gpg is installed and key is configured.
|
|
func (s *GPGSigner) Available() bool {
|
|
if s.KeyID == "" {
|
|
return false
|
|
}
|
|
_, err := exec.LookPath("gpg")
|
|
return err == nil
|
|
}
|
|
|
|
// Sign creates a detached ASCII-armored signature.
|
|
// For file.txt, creates file.txt.asc
|
|
func (s *GPGSigner) Sign(ctx context.Context, fs io.Medium, file string) error {
|
|
if !s.Available() {
|
|
return fmt.Errorf("gpg.Sign: gpg not available or key not configured")
|
|
}
|
|
|
|
cmd := exec.CommandContext(ctx, "gpg",
|
|
"--detach-sign",
|
|
"--armor",
|
|
"--local-user", s.KeyID,
|
|
"--output", file+".asc",
|
|
file,
|
|
)
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return fmt.Errorf("gpg.Sign: %w\nOutput: %s", err, string(output))
|
|
}
|
|
|
|
return nil
|
|
}
|