The source headers, LICENSE files, and license metadata had drifted apart. Align the entire project to MIT: - Convert every source-file header to the MIT text across all comment styles (Go, TS, TSX, JS, MJS, SQL, CSS, GraphQL, shell), including SPDX-License-Identifier tags - Set the root and cookie-banner LICENSE files to the MIT text with a "MIT License" title line - Switch the package.json license fields, Docker image label, and cookie-banner README to MIT - Update docs and the genmodels header generator accordingly - Normalize copyright lines to a single format (Copyright (c) <year(s)> Probo Inc <hello@probo.com>.): unify the hello@getprobo.com and hello@probo.inc emails to hello@probo.com and the comma-separated years to a hyphenated range Genuine third-party references are intentionally left untouched: the Lucide icon attributions (Lucide is ISC) and the trivy dependency license allowlist. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
153 lines
4.5 KiB
Go
153 lines
4.5 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
package commontrackerpattern
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
"go.gearno.de/kit/pg"
|
|
"go.probo.inc/probo/pkg/coredata"
|
|
"go.probo.inc/probo/pkg/gid"
|
|
"go.probo.inc/probo/pkg/proboctl/cmdutil"
|
|
)
|
|
|
|
// manualEnrichmentPayload builds the enrichment provenance written when an
|
|
// operator sets a description by hand. It records only the description
|
|
// outcome (resolved), so the row reads "enriched" and the enrichment
|
|
// worker leaves it alone, while marking the source as manual for audit.
|
|
func manualEnrichmentPayload() json.RawMessage {
|
|
now := time.Now()
|
|
|
|
payload := struct {
|
|
Status string `json:"status"`
|
|
Source string `json:"source"`
|
|
AttemptedAt time.Time `json:"attempted_at"`
|
|
Fields map[string]struct {
|
|
Status string `json:"status"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
} `json:"fields"`
|
|
}{
|
|
Status: "manual",
|
|
Source: "manual",
|
|
AttemptedAt: now,
|
|
Fields: map[string]struct {
|
|
Status string `json:"status"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}{
|
|
"description": {Status: "found", UpdatedAt: now},
|
|
},
|
|
}
|
|
|
|
raw, err := json.Marshal(payload)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
|
|
return raw
|
|
}
|
|
|
|
func newCmdSetDescription(f *cmdutil.Factory) *cobra.Command {
|
|
var (
|
|
flagDescription string
|
|
flagYes bool
|
|
)
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "set-description <gid>",
|
|
Short: "Set a common tracker pattern's description and backfill org patterns",
|
|
Long: "Write a description on a common tracker pattern and mark it enriched so " +
|
|
"the enrichment worker leaves it alone, then backfill the description onto " +
|
|
"every linked org tracker pattern that does not already have one.",
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
|
|
cmd.Flags().StringVar(&flagDescription, "description", "", "Description to set (required)")
|
|
cmd.Flags().BoolVar(&flagYes, "yes", false, "Skip confirmation")
|
|
|
|
_ = cmd.MarkFlagRequired("description")
|
|
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) error {
|
|
ctx := cmd.Context()
|
|
|
|
if flagDescription == "" {
|
|
return fmt.Errorf("--description must not be empty")
|
|
}
|
|
|
|
id, err := gid.ParseGID(args[0])
|
|
if err != nil {
|
|
return fmt.Errorf("invalid GID %q: %w", args[0], err)
|
|
}
|
|
|
|
if !flagYes {
|
|
return fmt.Errorf("about to set the description on %s; pass --yes to proceed", id.String())
|
|
}
|
|
|
|
pgClient, err := f.PgClient()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
out := f.IOStreams.Out
|
|
|
|
var backfilled int64
|
|
|
|
if err := pgClient.WithTx(
|
|
ctx,
|
|
func(ctx context.Context, tx pg.Tx) error {
|
|
var pattern coredata.CommonTrackerPattern
|
|
if err := pattern.LoadByID(ctx, tx, id); err != nil {
|
|
if errors.Is(err, coredata.ErrResourceNotFound) {
|
|
return fmt.Errorf("no common tracker pattern found for %q", args[0])
|
|
}
|
|
|
|
return fmt.Errorf("cannot load common tracker pattern: %w", err)
|
|
}
|
|
|
|
if err := pattern.UpdateEnrichment(ctx, tx, flagDescription, nil, manualEnrichmentPayload()); err != nil {
|
|
return fmt.Errorf("cannot set common tracker pattern description: %w", err)
|
|
}
|
|
|
|
var tps coredata.TrackerPatterns
|
|
|
|
backfilled, err = tps.BackfillDescriptionByCommonTrackerPatternID(ctx, tx, id, flagDescription)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
},
|
|
); err != nil {
|
|
return err
|
|
}
|
|
|
|
_, _ = fmt.Fprintf(out, "Set description on %s, backfilled %d org tracker pattern(s).\n", id.String(), backfilled)
|
|
|
|
return nil
|
|
}
|
|
|
|
return cmd
|
|
}
|