package bug import ( "bytes" "fmt" "net/url" "os/exec" "runtime" "text/template" "github.com/containous/flaeg" "github.com/containous/traefik/anonymize" "github.com/containous/traefik/cmd" "github.com/containous/traefik/cmd/version" ) const ( bugTracker = "https://github.com/containous/traefik/issues/new" bugTemplate = ` ### Do you want to request a *feature* or report a *bug*? (If you intend to ask a support question: **DO NOT FILE AN ISSUE**. Use [Stack Overflow](https://stackoverflow.com/questions/tagged/traefik) or [Slack](https://slack.traefik.io) instead.) ### What did you do? ### What did you expect to see? ### What did you see instead? ### Output of ` + "`" + `traefik version` + "`" + `: (_What version of Traefik are you using?_) ` + "```" + ` {{.Version}} ` + "```" + ` ### What is your environment & configuration (arguments, toml, provider, platform, ...)? ` + "```" + `json {{.Configuration}} ` + "```" + ` ### If applicable, please paste the log output at DEBUG level (` + "`" + `--logLevel=DEBUG` + "`" + ` switch) ` + "```" + ` (paste your output here) ` + "```" + ` ` ) // NewCmd builds a new Bug command func NewCmd(traefikConfiguration *cmd.TraefikConfiguration, traefikPointersConfiguration *cmd.TraefikConfiguration) *flaeg.Command { // version Command init return &flaeg.Command{ Name: "bug", Description: `Report an issue on Traefik bugtracker`, Config: traefikConfiguration, DefaultPointersConfig: traefikPointersConfiguration, Run: runCmd(traefikConfiguration), Metadata: map[string]string{ "parseAllSources": "true", }, } } func runCmd(traefikConfiguration *cmd.TraefikConfiguration) func() error { return func() error { body, err := createReport(traefikConfiguration) if err != nil { return err } sendReport(body) return nil } } func createReport(traefikConfiguration *cmd.TraefikConfiguration) (string, error) { var versionPrint bytes.Buffer if err := version.GetPrint(&versionPrint); err != nil { return "", err } tmpl, err := template.New("bug").Parse(bugTemplate) if err != nil { return "", err } config, err := anonymize.Do(traefikConfiguration, true) if err != nil { return "", err } v := struct { Version string Configuration string }{ Version: versionPrint.String(), Configuration: config, } var bug bytes.Buffer if err := tmpl.Execute(&bug, v); err != nil { return "", err } return bug.String(), nil } func sendReport(body string) { URL := bugTracker + "?body=" + url.QueryEscape(body) if err := openBrowser(URL); err != nil { fmt.Printf("Please file a new issue at %s using this template:\n\n", bugTracker) fmt.Print(body) } } func openBrowser(u string) error { var err error switch runtime.GOOS { case "linux": err = exec.Command("xdg-open", u).Start() case "windows": err = exec.Command("rundll32", "url.dll,FileProtocolHandler", u).Start() case "darwin": err = exec.Command("open", u).Start() default: err = fmt.Errorf("unsupported platform") } return err }