mirror of
https://github.com/beego/bee.git
synced 2024-11-22 10:10:53 +00:00
c538bfbc8f
create sub packages delete unused code delete code from not use command cmdRouter,cmdTest, cmdRundocs make command plugins check with gosimple,staticcheck,go vet,unused,unconvert
103 lines
2.8 KiB
Go
103 lines
2.8 KiB
Go
// Copyright 2013 bee 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.
|
|
|
|
// Bee is a tool for developing applications based on beego framework.
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/beego/bee/cmd/commands"
|
|
_ "github.com/beego/bee/cmd/commands/api"
|
|
_ "github.com/beego/bee/cmd/commands/bale"
|
|
_ "github.com/beego/bee/cmd/commands/beefix"
|
|
_ "github.com/beego/bee/cmd/commands/dockerize"
|
|
_ "github.com/beego/bee/cmd/commands/generate"
|
|
_ "github.com/beego/bee/cmd/commands/hprose"
|
|
_ "github.com/beego/bee/cmd/commands/migrate"
|
|
_ "github.com/beego/bee/cmd/commands/new"
|
|
_ "github.com/beego/bee/cmd/commands/pack"
|
|
_ "github.com/beego/bee/cmd/commands/run"
|
|
_ "github.com/beego/bee/cmd/commands/version"
|
|
"github.com/beego/bee/utils"
|
|
)
|
|
|
|
func IfGenerateDocs(name string, args []string) bool {
|
|
if name != "generate" {
|
|
return false
|
|
}
|
|
for _, a := range args {
|
|
if a == "docs" {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
var usageTemplate = `Bee is a Fast and Flexible tool for managing your Beego Web Application.
|
|
|
|
{{"USAGE" | headline}}
|
|
{{"bee command [arguments]" | bold}}
|
|
|
|
{{"AVAILABLE COMMANDS" | headline}}
|
|
{{range .}}{{if .Runnable}}
|
|
{{.Name | printf "%-11s" | bold}} {{.Short}}{{end}}{{end}}
|
|
|
|
Use {{"bee help [command]" | bold}} for more information about a command.
|
|
|
|
{{"ADDITIONAL HELP TOPICS" | headline}}
|
|
{{range .}}{{if not .Runnable}}
|
|
{{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
|
|
|
|
Use {{"bee help [topic]" | bold}} for more information about that topic.
|
|
`
|
|
|
|
var helpTemplate = `{{"USAGE" | headline}}
|
|
{{.UsageLine | printf "bee %s" | bold}}
|
|
{{if .Options}}{{endline}}{{"OPTIONS" | headline}}{{range $k,$v := .Options}}
|
|
{{$k | printf "-%s" | bold}}
|
|
{{$v}}
|
|
{{end}}{{end}}
|
|
{{"DESCRIPTION" | headline}}
|
|
{{tmpltostr .Long . | trim}}
|
|
`
|
|
|
|
var ErrorTemplate = `bee: %s.
|
|
Use {{"bee help" | bold}} for more information.
|
|
`
|
|
|
|
func Usage() {
|
|
utils.Tmpl(usageTemplate, commands.AvailableCommands)
|
|
os.Exit(2)
|
|
}
|
|
|
|
func Help(args []string) {
|
|
if len(args) == 0 {
|
|
Usage()
|
|
}
|
|
if len(args) != 1 {
|
|
utils.PrintErrorAndExit("Too many arguments", ErrorTemplate)
|
|
}
|
|
|
|
arg := args[0]
|
|
|
|
for _, cmd := range commands.AvailableCommands {
|
|
if cmd.Name() == arg {
|
|
utils.Tmpl(helpTemplate, cmd)
|
|
return
|
|
}
|
|
}
|
|
utils.PrintErrorAndExit("Unknown help topic", ErrorTemplate)
|
|
}
|