//
// Copyright 2021 The Sigstore Authors.
//
// Licensed 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 options

import (
	"github.com/sigstore/sigstore/pkg/tuf"
	"github.com/spf13/cobra"
)

// InitializeOptions is the top level wrapper for the initialize command.
type InitializeOptions struct {
	Mirror       string
	Root         string
	RootChecksum string
	Staging      bool
}

var _ Interface = (*InitializeOptions)(nil)

// AddFlags implements Interface
func (o *InitializeOptions) AddFlags(cmd *cobra.Command) {
	cmd.Flags().StringVar(&o.Mirror, "mirror", tuf.DefaultRemoteRoot,
		"GCS bucket to a SigStore TUF repository, or HTTP(S) base URL, or file:/// for local filestore remote (air-gap)")

	cmd.Flags().StringVar(&o.Root, "root", "",
		"path to trusted initial root. defaults to embedded root")
	_ = cmd.MarkFlagDirname("root")

	cmd.Flags().StringVar(&o.RootChecksum, "root-checksum", "",
		"checksum of the initial root, required if root is downloaded via http(s). expects sha256 by default, can be changed to sha512 by providing sha512:<checksum>")

	cmd.Flags().BoolVar(&o.Staging, "staging", false,
		"use the staging TUF repository")
}
