f99010fae1
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
CI / Go Test (windows-latest) (push) Has been cancelled
CI / Desktop Unit Tests (Windows) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Windows) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Has been cancelled
124 lines
3.6 KiB
Go
124 lines
3.6 KiB
Go
// ABOUTME: `session sync` subcommand — triggers a one-off sync for
|
|
// ABOUTME: a single session, either by path or by id. Refuses
|
|
// ABOUTME: against read-only daemons (pg serve).
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
"go.kenn.io/agentsview/internal/config"
|
|
"go.kenn.io/agentsview/internal/service"
|
|
"go.kenn.io/agentsview/internal/sync"
|
|
)
|
|
|
|
func newSessionSyncCommand() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "sync <path-or-id>",
|
|
Short: "Parse and insert a single session into the database",
|
|
Args: cobra.ExactArgs(1),
|
|
SilenceUsage: true,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
svc, cleanup, err := resolveFreshWritableService(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer cleanup()
|
|
|
|
detail, err := svc.Sync(
|
|
cmd.Context(), classifySyncArgForCommand(cmd, args[0]),
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if outputFormat(cmd) == "json" {
|
|
return json.NewEncoder(cmd.OutOrStdout()).Encode(detail)
|
|
}
|
|
fmt.Fprintf(cmd.OutOrStdout(), "synced: %s\n",
|
|
sanitizeTerminal(detail.ID))
|
|
return nil
|
|
},
|
|
}
|
|
}
|
|
|
|
func classifySyncArgForCommand(
|
|
cmd *cobra.Command, arg string,
|
|
) service.SyncInput {
|
|
remote, _ := cmd.Flags().GetString("server")
|
|
if remote != "" && looksLikePath(arg) {
|
|
return service.SyncInput{Path: arg}
|
|
}
|
|
return classifySyncArg(arg)
|
|
}
|
|
|
|
// syncService resembles newService but constructs a real
|
|
// *sync.Engine for the direct-mode case so `session sync` can
|
|
// actually write. The default newService path passes a nil engine
|
|
// (reads don't need it), which would make Sync return
|
|
// db.ErrReadOnly.
|
|
func syncService(
|
|
cfg config.Config, tr transport,
|
|
) (service.SessionService, func(), error) {
|
|
if tr.Mode == transportHTTP {
|
|
return service.NewHTTPBackend(tr.URL, cfg.AuthToken, tr.ReadOnly),
|
|
func() {}, nil
|
|
}
|
|
d, lock, err := openWriteDB(context.Background(), cfg)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("opening db: %w", err)
|
|
}
|
|
engine := sync.NewEngine(d, sync.EngineConfig{
|
|
AgentDirs: cfg.AgentDirs,
|
|
IncludeCwdPrefixes: cfg.SyncIncludeCwdPrefixes,
|
|
Machine: cfg.LocalMachineName,
|
|
})
|
|
// Close the engine before the DB so pending debounced signal
|
|
// recomputes flush while the DB is still open.
|
|
cleanup := func() {
|
|
engine.Close()
|
|
closeWriteDB(d, lock)
|
|
}
|
|
return service.NewDirectBackend(d, engine), cleanup, nil
|
|
}
|
|
|
|
// classifySyncArg returns {Path: arg} when arg is clearly a path:
|
|
// absolute, rooted in "." / "..", or containing a path separator,
|
|
// AND points at an existing regular file. Otherwise it's treated
|
|
// as a session id. This avoids CWD-dependent ambiguity where a
|
|
// session id that happens to match a file in the current directory
|
|
// would silently become a path.
|
|
func classifySyncArg(arg string) service.SyncInput {
|
|
if !looksLikePath(arg) {
|
|
return service.SyncInput{ID: arg}
|
|
}
|
|
fi, err := os.Stat(arg)
|
|
if err != nil || !fi.Mode().IsRegular() {
|
|
return service.SyncInput{ID: arg}
|
|
}
|
|
return service.SyncInput{Path: arg}
|
|
}
|
|
|
|
// looksLikePath returns true when arg has explicit path shape:
|
|
// absolute path, ./ or ../ prefix, or contains a separator. Bare
|
|
// names without any separator are treated as session IDs. Both '/'
|
|
// and '\\' count as separators so Windows users writing forward-slash
|
|
// relative paths (e.g. "./session.jsonl") are still recognized.
|
|
func looksLikePath(arg string) bool {
|
|
if filepath.IsAbs(arg) {
|
|
return true
|
|
}
|
|
if arg == "." || arg == ".." ||
|
|
strings.HasPrefix(arg, "./") ||
|
|
strings.HasPrefix(arg, "../") ||
|
|
strings.HasPrefix(arg, `.\`) ||
|
|
strings.HasPrefix(arg, `..\`) {
|
|
return true
|
|
}
|
|
return strings.ContainsAny(arg, `/\`)
|
|
}
|