forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
create_error_template.go
63 lines (47 loc) · 1.63 KB
/
create_error_template.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package admin
import (
"errors"
"io"
"github.com/spf13/cobra"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"github.com/openshift/origin/pkg/oauthserver/server/errorpage"
"github.com/openshift/origin/pkg/oc/cli/util/clientcmd"
)
const CreateErrorTemplateCommand = "create-error-template"
var errorLongDescription = templates.LongDesc(`
Create a template for customizing the error page
This command creates a basic template to use as a starting point for
customizing the authentication error page. Save the output to a file and edit
the template to change the look and feel or add content.
To use the template, set oauthConfig.templates.error in the master
configuration to point to the template file. For example,
oauthConfig:
templates:
error: templates/error.html
`)
type CreateErrorTemplateOptions struct{}
func NewCommandCreateErrorTemplate(f *clientcmd.Factory, commandName string, fullName string, out io.Writer) *cobra.Command {
options := &CreateErrorTemplateOptions{}
cmd := &cobra.Command{
Use: commandName,
Short: "Create an error page template",
Long: errorLongDescription,
Run: func(cmd *cobra.Command, args []string) {
if err := options.Validate(args); err != nil {
cmdutil.CheckErr(cmdutil.UsageErrorf(cmd, err.Error()))
}
_, err := io.WriteString(out, errorpage.ErrorPageTemplateExample)
if err != nil {
cmdutil.CheckErr(err)
}
},
}
return cmd
}
func (o CreateErrorTemplateOptions) Validate(args []string) error {
if len(args) != 0 {
return errors.New("no arguments are supported")
}
return nil
}