bf9395e022
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / results (push) Has been cancelled
CI / deadcode (push) Has been cancelled
CI / e2e-live (push) Has been cancelled
133 lines
3.1 KiB
Go
133 lines
3.1 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package output
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
extcs "github.com/larksuite/cli/extension/contentsafety"
|
|
"github.com/larksuite/cli/internal/envvars"
|
|
)
|
|
|
|
type mode uint8
|
|
|
|
const (
|
|
modeOff mode = iota
|
|
modeWarn
|
|
modeBlock
|
|
)
|
|
|
|
// scanTimeout caps the content-safety scan so it cannot dominate CLI latency.
|
|
// 100 ms is generous for a regex walk of a typical API response (KB-scale JSON);
|
|
// larger responses hit maxDepth/maxStringBytes well before this fires.
|
|
const scanTimeout = 100 * time.Millisecond
|
|
|
|
// modeFromEnv reads LARKSUITE_CLI_CONTENT_SAFETY_MODE.
|
|
func modeFromEnv(errOut io.Writer) mode {
|
|
raw := strings.TrimSpace(os.Getenv(envvars.CliContentSafetyMode))
|
|
if raw == "" {
|
|
return modeOff
|
|
}
|
|
switch strings.ToLower(raw) {
|
|
case "off":
|
|
return modeOff
|
|
case "warn":
|
|
return modeWarn
|
|
case "block":
|
|
return modeBlock
|
|
default:
|
|
fmt.Fprintf(errOut,
|
|
"warning: unknown %s value %q, falling back to off\n",
|
|
envvars.CliContentSafetyMode, raw)
|
|
return modeOff
|
|
}
|
|
}
|
|
|
|
// normalizeCommandPath converts cobra CommandPath() to dotted form.
|
|
// "lark-cli im +messages-search" -> "im.messages_search"
|
|
func normalizeCommandPath(cobraPath string) string {
|
|
segs := strings.Fields(cobraPath)
|
|
if len(segs) <= 1 {
|
|
return ""
|
|
}
|
|
segs = segs[1:]
|
|
for i, s := range segs {
|
|
s = strings.TrimPrefix(s, "+")
|
|
s = strings.ReplaceAll(s, "-", "_")
|
|
segs[i] = s
|
|
}
|
|
return strings.Join(segs, ".")
|
|
}
|
|
|
|
var errBlocked = fmt.Errorf("content safety blocked")
|
|
|
|
// runContentSafety orchestrates the scan: mode check -> provider -> scan with timeout + panic recovery.
|
|
func runContentSafety(cobraPath string, data any, errOut io.Writer) (*extcs.Alert, error) {
|
|
m := modeFromEnv(errOut)
|
|
if m == modeOff {
|
|
return nil, nil
|
|
}
|
|
|
|
p := extcs.GetProvider()
|
|
if p == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
cmdPath := normalizeCommandPath(cobraPath)
|
|
if cmdPath == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
type result struct {
|
|
alert *extcs.Alert
|
|
err error
|
|
}
|
|
ch := make(chan result, 1)
|
|
ctx, cancel := context.WithTimeout(context.Background(), scanTimeout)
|
|
defer cancel()
|
|
|
|
// Give the goroutine its own writer so it cannot race on errOut after timeout.
|
|
// On success, we copy any provider notices to the real errOut.
|
|
// On timeout, the buffer is owned by the goroutine until it finishes; no shared access.
|
|
scanErrBuf := &bytes.Buffer{}
|
|
go func() {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
ch <- result{nil, fmt.Errorf("content safety panic: %v", r)}
|
|
}
|
|
}()
|
|
a, e := p.Scan(ctx, extcs.ScanRequest{Path: cmdPath, Data: data, ErrOut: scanErrBuf})
|
|
ch <- result{a, e}
|
|
}()
|
|
|
|
var res result
|
|
select {
|
|
case res = <-ch:
|
|
if scanErrBuf.Len() > 0 {
|
|
_, _ = io.Copy(errOut, scanErrBuf)
|
|
}
|
|
case <-ctx.Done():
|
|
return nil, nil // timeout, fail-open; scanErrBuf stays with the goroutine
|
|
}
|
|
|
|
if res.err != nil {
|
|
fmt.Fprintf(errOut, "warning: content safety scan error: %v\n", res.err)
|
|
return nil, nil // fail-open
|
|
}
|
|
if res.alert == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
if m == modeBlock {
|
|
return res.alert, errBlocked
|
|
}
|
|
return res.alert, nil
|
|
}
|