// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package cmd
import (
"os"
"strings"
"github.com/spf13/cobra"
"github.com/gitpod-io/gitpod/previewctl/pkg/preview"
"text/template"
)
var tmplString = `
Gitpod was successfully deployed to your preview environment.
`
func newReportNameCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "report",
Short: "Writes an HTML report to stdout with information about the current preview environment.",
RunE: func(cmd *cobra.Command, args []string) error {
previewName, err := preview.GetName(branch)
if err != nil {
return err
}
tmpl, _ := template.New("Report").Parse(strings.TrimSpace(strings.ReplaceAll(tmplString, "'", "`")))
vars := make(map[string]interface{})
vars["Name"] = previewName
vars["Url"] = previewName
err = tmpl.Execute(os.Stdout, vars)
if err != nil {
return err
}
return nil
},
}
return cmd
}