mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-16 20:32:13 +01:00
feat(chromium): add print_to_pdf sub-span with bounded option attrs
This commit is contained in:
@@ -4,11 +4,43 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"go.opentelemetry.io/otel/attribute"
|
||||||
|
|
||||||
"github.com/gotenberg/gotenberg/v8/pkg/modules/api"
|
"github.com/gotenberg/gotenberg/v8/pkg/modules/api"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func TestPrintToPdfAttrs(t *testing.T) {
|
||||||
|
options := DefaultPdfOptions()
|
||||||
|
options.Landscape = true
|
||||||
|
options.PageRanges = "1-5"
|
||||||
|
options.HeaderTemplate = "<div>secret header</div>"
|
||||||
|
// FooterTemplate left at default, so has_footer must be false.
|
||||||
|
|
||||||
|
got := map[string]attribute.Value{}
|
||||||
|
for _, kv := range printToPdfAttrs(options) {
|
||||||
|
got[string(kv.Key)] = kv.Value
|
||||||
|
if s := kv.Value.AsString(); strings.Contains(s, "secret") || s == "1-5" {
|
||||||
|
t.Errorf("attribute %s leaked a raw value: %q", kv.Key, s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !got["gotenberg.chromium.print.landscape"].AsBool() {
|
||||||
|
t.Error("expected landscape=true")
|
||||||
|
}
|
||||||
|
if !got["gotenberg.chromium.print.has_page_ranges"].AsBool() {
|
||||||
|
t.Error("expected has_page_ranges=true")
|
||||||
|
}
|
||||||
|
if !got["gotenberg.chromium.print.has_header"].AsBool() {
|
||||||
|
t.Error("expected has_header=true")
|
||||||
|
}
|
||||||
|
if got["gotenberg.chromium.print.has_footer"].AsBool() {
|
||||||
|
t.Error("expected has_footer=false")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestConversionInputAttrs(t *testing.T) {
|
func TestConversionInputAttrs(t *testing.T) {
|
||||||
tmp := filepath.Join(t.TempDir(), "index.html")
|
tmp := filepath.Join(t.TempDir(), "index.html")
|
||||||
content := []byte("<html></html>")
|
content := []byte("<html></html>")
|
||||||
|
|||||||
@@ -334,7 +334,7 @@ func (b *chromiumBrowser) pdf(ctx context.Context, logger *slog.Logger, url, out
|
|||||||
waitForSelectorVisibleBeforePrintActionFunc(logger, options.WaitForSelector),
|
waitForSelectorVisibleBeforePrintActionFunc(logger, options.WaitForSelector),
|
||||||
waitDelayBeforePrintActionFunc(logger, b.arguments.disableJavaScript, options.WaitDelay),
|
waitDelayBeforePrintActionFunc(logger, b.arguments.disableJavaScript, options.WaitDelay),
|
||||||
// PDF specific.
|
// PDF specific.
|
||||||
printToPdfActionFunc(logger, outputPath, options),
|
printToPdfActionFunc(ctx, logger, outputPath, options),
|
||||||
// Teardown.
|
// Teardown.
|
||||||
page.Close(),
|
page.Close(),
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -14,10 +14,25 @@ import (
|
|||||||
"github.com/chromedp/cdproto/network"
|
"github.com/chromedp/cdproto/network"
|
||||||
"github.com/chromedp/cdproto/page"
|
"github.com/chromedp/cdproto/page"
|
||||||
"github.com/chromedp/chromedp"
|
"github.com/chromedp/chromedp"
|
||||||
|
"go.opentelemetry.io/otel/attribute"
|
||||||
|
"go.opentelemetry.io/otel/codes"
|
||||||
|
"go.opentelemetry.io/otel/trace"
|
||||||
|
|
||||||
|
"github.com/gotenberg/gotenberg/v8/pkg/gotenberg"
|
||||||
)
|
)
|
||||||
|
|
||||||
func printToPdfActionFunc(logger *slog.Logger, outputPath string, options PdfOptions) chromedp.ActionFunc {
|
func printToPdfActionFunc(reqCtx context.Context, logger *slog.Logger, outputPath string, options PdfOptions) chromedp.ActionFunc {
|
||||||
return func(ctx context.Context) error {
|
return func(ctx context.Context) error {
|
||||||
|
// ctx is the chromedp task context, derived from context.Background(),
|
||||||
|
// so the span is started under reqCtx to keep print_to_pdf in the
|
||||||
|
// conversion trace instead of orphaning it into a new one.
|
||||||
|
_, span := gotenberg.Tracer().Start(reqCtx, "chromium.print_to_pdf",
|
||||||
|
trace.WithSpanKind(trace.SpanKindClient),
|
||||||
|
trace.WithAttributes(printToPdfAttrs(options)...),
|
||||||
|
)
|
||||||
|
defer span.End()
|
||||||
|
|
||||||
|
err := func() error {
|
||||||
paperHeight := options.PaperHeight
|
paperHeight := options.PaperHeight
|
||||||
pageRanges := options.PageRanges
|
pageRanges := options.PageRanges
|
||||||
|
|
||||||
@@ -112,6 +127,35 @@ func printToPdfActionFunc(logger *slog.Logger, outputPath string, options PdfOpt
|
|||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
}()
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
span.RecordError(err)
|
||||||
|
span.SetStatus(codes.Error, err.Error())
|
||||||
|
} else {
|
||||||
|
span.SetStatus(codes.Ok, "")
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// printToPdfAttrs derives bounded, low-cardinality attributes from the print
|
||||||
|
// options. Raw header/footer templates and page ranges are reduced to booleans
|
||||||
|
// to avoid leaking document content and exploding cardinality.
|
||||||
|
func printToPdfAttrs(options PdfOptions) []attribute.KeyValue {
|
||||||
|
return []attribute.KeyValue{
|
||||||
|
attribute.Bool("gotenberg.chromium.print.landscape", options.Landscape),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.print_background", options.PrintBackground),
|
||||||
|
attribute.Float64("gotenberg.chromium.print.scale", options.Scale),
|
||||||
|
attribute.Float64("gotenberg.chromium.print.paper_width", options.PaperWidth),
|
||||||
|
attribute.Float64("gotenberg.chromium.print.paper_height", options.PaperHeight),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.single_page", options.SinglePage),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.prefer_css_page_size", options.PreferCssPageSize),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.generate_tagged_pdf", options.GenerateTaggedPdf),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.has_page_ranges", options.PageRanges != ""),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.has_header", options.HeaderTemplate != DefaultPdfOptions().HeaderTemplate),
|
||||||
|
attribute.Bool("gotenberg.chromium.print.has_footer", options.FooterTemplate != DefaultPdfOptions().FooterTemplate),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user