package pdfengine import ( "context" "errors" "fmt" "log/slog" "github.com/gotenberg/gotenberg/v8/pkg/gotenberg" "github.com/gotenberg/gotenberg/v8/pkg/modules/libreoffice/api" ) func init() { gotenberg.MustRegisterModule(new(LibreOfficePdfEngine)) } // LibreOfficePdfEngine interacts with the LibreOffice (Universal Network Objects) API // and implements the [gotenberg.PdfEngine] interface. type LibreOfficePdfEngine struct { unoApi api.Uno } // Descriptor returns a [LibreOfficePdfEngine]'s module descriptor. func (engine *LibreOfficePdfEngine) Descriptor() gotenberg.ModuleDescriptor { return gotenberg.ModuleDescriptor{ ID: "libreoffice-pdfengine", New: func() gotenberg.Module { return new(LibreOfficePdfEngine) }, } } // Provision sets the module properties. func (engine *LibreOfficePdfEngine) Provision(ctx *gotenberg.Context) error { provider, err := ctx.Module(new(api.Provider)) if err != nil { return fmt.Errorf("get LibreOffice Uno provider: %w", err) } unoApi, err := provider.(api.Provider).LibreOffice() if err != nil { return fmt.Errorf("get LibreOffice Uno: %w", err) } engine.unoApi = unoApi return nil } // Merge is not available in this implementation. func (engine *LibreOfficePdfEngine) Merge(ctx context.Context, logger *slog.Logger, inputPaths []string, outputPath string) error { return fmt.Errorf("merge PDFs with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Split is not available in this implementation. func (engine *LibreOfficePdfEngine) Split(ctx context.Context, logger *slog.Logger, mode gotenberg.SplitMode, inputPath, outputDirPath string) ([]string, error) { return nil, fmt.Errorf("split PDF with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Flatten is not available in this implementation. func (engine *LibreOfficePdfEngine) Flatten(ctx context.Context, logger *slog.Logger, inputPath string) error { return fmt.Errorf("flatten PDF with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Convert converts the given PDF to a specific PDF format. Currently, only the // PDF/A-1b, PDF/A-2b, PDF/A-3b and PDF/UA formats are available. If another // PDF format is requested, it returns a [gotenberg.ErrPdfFormatNotSupported] // error. func (engine *LibreOfficePdfEngine) Convert(ctx context.Context, logger *slog.Logger, formats gotenberg.PdfFormats, inputPath, outputPath string) error { opts := api.DefaultOptions() opts.PdfFormats = formats err := engine.unoApi.Pdf(ctx, logger, inputPath, outputPath, opts) if err == nil { return nil } if errors.Is(err, api.ErrInvalidPdfFormats) { return fmt.Errorf("convert PDF to '%+v' with LibreOffice: %w", formats, gotenberg.ErrPdfFormatNotSupported) } return fmt.Errorf("convert PDF to '%+v' with LibreOffice: %w", formats, err) } // ReadMetadata is not available in this implementation. func (engine *LibreOfficePdfEngine) ReadMetadata(ctx context.Context, logger *slog.Logger, inputPath string) (map[string]any, error) { return nil, fmt.Errorf("read PDF metadata with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // WriteMetadata is not available in this implementation. func (engine *LibreOfficePdfEngine) WriteMetadata(ctx context.Context, logger *slog.Logger, metadata map[string]any, inputPath string) error { return fmt.Errorf("write PDF metadata with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // PageCount is not available in this implementation. func (engine *LibreOfficePdfEngine) PageCount(ctx context.Context, logger *slog.Logger, inputPath string) (int, error) { return 0, fmt.Errorf("page count with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // WriteBookmarks is not available in this implementation. func (engine *LibreOfficePdfEngine) WriteBookmarks(ctx context.Context, logger *slog.Logger, inputPath string, bookmarks []gotenberg.Bookmark) error { return fmt.Errorf("write PDF bookmarks with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // ReadBookmarks is not available in this implementation. func (engine *LibreOfficePdfEngine) ReadBookmarks(ctx context.Context, logger *slog.Logger, inputPath string) ([]gotenberg.Bookmark, error) { return nil, fmt.Errorf("read PDF bookmarks with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Encrypt is not available in this implementation. func (engine *LibreOfficePdfEngine) Encrypt(ctx context.Context, logger *slog.Logger, inputPath, userPassword, ownerPassword string) error { return fmt.Errorf("encrypt PDF using LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // EmbedFiles is not available in this implementation. func (engine *LibreOfficePdfEngine) EmbedFiles(ctx context.Context, logger *slog.Logger, filePaths []string, inputPath string) error { return fmt.Errorf("embed files with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Watermark is not available in this implementation. func (engine *LibreOfficePdfEngine) Watermark(ctx context.Context, logger *slog.Logger, inputPath string, stamp gotenberg.Stamp) error { return fmt.Errorf("watermark PDF with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Stamp is not available in this implementation. func (engine *LibreOfficePdfEngine) Stamp(ctx context.Context, logger *slog.Logger, inputPath string, stamp gotenberg.Stamp) error { return fmt.Errorf("stamp PDF with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Rotate is not available in this implementation. func (engine *LibreOfficePdfEngine) Rotate(ctx context.Context, logger *slog.Logger, inputPath string, angle int, pages string) error { return fmt.Errorf("rotate PDF with LibreOffice: %w", gotenberg.ErrPdfEngineMethodNotSupported) } // Interface guards. var ( _ gotenberg.Module = (*LibreOfficePdfEngine)(nil) _ gotenberg.Provisioner = (*LibreOfficePdfEngine)(nil) _ gotenberg.PdfEngine = (*LibreOfficePdfEngine)(nil) )