pkg/tasks/from/oplog.go (43 lines of code) (raw):

// Licensed to Elasticsearch B.V. under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Elasticsearch B.V. licenses this file to you under // the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package from import ( "context" "encoding/json" "fmt" "io" bundlev1 "github.com/elastic/harp/api/gen/go/harp/bundle/v1" "github.com/elastic/harp/pkg/bundle" "github.com/elastic/harp/pkg/bundle/compare" "github.com/elastic/harp/pkg/tasks" ) // OPLogTask implements secret-container creation from OpLog. type OPLogTask struct { JSONReader tasks.ReaderProvider OutputWriter tasks.WriterProvider } // Run the task. func (t *OPLogTask) Run(ctx context.Context) error { var ( reader io.Reader writer io.Writer b *bundlev1.Bundle err error ) // Create input reader reader, err = t.JSONReader(ctx) if err != nil { return fmt.Errorf("unable to read input reader: %w", err) } // Convert input as a map var input compare.OpLog if err = json.NewDecoder(reader).Decode(&input); err != nil { return fmt.Errorf("unable to decode input JSON: %w", err) } // Build the container from json oplog b, err = bundle.FromOpLog(input) if err != nil { return fmt.Errorf("unable to create container from oplog: %w", err) } // Create output writer writer, err = t.OutputWriter(ctx) if err != nil { return fmt.Errorf("unable to open output writer: %w", err) } // Dump bundle if err = bundle.ToContainerWriter(writer, b); err != nil { return fmt.Errorf("unable to produce exported bundle: %w", err) } // No error return nil }