Add operator commands to proboctl for iterating on the cookie-banner agents. The global catalog groups (common-tracker-pattern, common-third-party) list/filter/sort/show the catalogs using the shared coredata cursor layer, and common-tracker-pattern reenrich re-describes selected rows by running the enricher in-process (so it completes synchronously rather than racing the async queue); a --cfg-file flag reuses probod's config to wire the agent. --linked-banner/--linked-org target exactly the catalog rows a banner or org depends on. The cookie-banner reset-trackers command is tenant-scoped (it derives a coredata.Scope from the banner/org GID) and rebuilds a banner's uncategorised, non-excluded patterns from detected_trackers, decomposing derived globs back into exacts, then re-arms the analysis and mapping workers. --mapping-only skips the rebuild. A DB-backed test covers the rebuild, link clearing, and preservation of categorised/excluded patterns. Signed-off-by: Émile Ré <emile@probo.com>
59 lines
2.0 KiB
Go
59 lines
2.0 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package root
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
"go.probo.inc/probo/pkg/proboctl/cmdutil"
|
|
"go.probo.inc/probo/pkg/proboctl/commonthirdparty"
|
|
"go.probo.inc/probo/pkg/proboctl/commontrackerpattern"
|
|
proboctlcookiebanner "go.probo.inc/probo/pkg/proboctl/cookiebanner"
|
|
"go.probo.inc/probo/pkg/proboctl/seed"
|
|
"go.probo.inc/probo/pkg/proboctl/version"
|
|
)
|
|
|
|
func NewCmdRoot(f *cmdutil.Factory) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "proboctl <command> [flags]",
|
|
Short: "Probo instance management CLI",
|
|
SilenceUsage: true,
|
|
SilenceErrors: true,
|
|
}
|
|
|
|
cmd.PersistentFlags().StringVar(
|
|
&f.PgDSN,
|
|
"pg-dsn",
|
|
os.Getenv("DATABASE_URL"),
|
|
"PostgreSQL connection URL (default: DATABASE_URL env)",
|
|
)
|
|
|
|
cmd.PersistentFlags().StringVar(
|
|
&f.CfgFile,
|
|
"cfg-file",
|
|
os.Getenv("PROBOD_CFG_FILE"),
|
|
"Path to the probod config file (default: PROBOD_CFG_FILE env); required for agent-backed commands",
|
|
)
|
|
|
|
cmd.AddCommand(seed.NewCmdSeed(f))
|
|
cmd.AddCommand(commontrackerpattern.NewCmdCommonTrackerPattern(f))
|
|
cmd.AddCommand(commonthirdparty.NewCmdCommonThirdParty(f))
|
|
cmd.AddCommand(proboctlcookiebanner.NewCmdCookieBanner(f))
|
|
cmd.AddCommand(version.NewCmdVersion(f))
|
|
|
|
return cmd
|
|
}
|