2018-09-03 06:43:00 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Tea is command line tool for Gitea.
|
|
|
|
package main // import "code.gitea.io/tea"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/tea/cmd"
|
|
|
|
|
2020-01-04 17:44:25 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2018-09-03 06:43:00 +00:00
|
|
|
)
|
|
|
|
|
2020-04-22 19:11:03 +00:00
|
|
|
// Version holds the current tea version
|
|
|
|
var Version = "development"
|
2018-09-03 06:43:00 +00:00
|
|
|
|
|
|
|
// Tags holds the build tags used
|
|
|
|
var Tags = ""
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := cli.NewApp()
|
2020-03-06 03:43:28 +00:00
|
|
|
app.Name = "tea"
|
2019-03-11 16:32:09 +00:00
|
|
|
app.Usage = "Command line tool to interact with Gitea"
|
2018-09-03 06:43:00 +00:00
|
|
|
app.Description = ``
|
|
|
|
app.Version = Version + formatBuiltWith(Tags)
|
2020-01-04 17:44:25 +00:00
|
|
|
app.Commands = []*cli.Command{
|
|
|
|
&cmd.CmdLogin,
|
|
|
|
&cmd.CmdLogout,
|
|
|
|
&cmd.CmdIssues,
|
|
|
|
&cmd.CmdPulls,
|
|
|
|
&cmd.CmdReleases,
|
|
|
|
&cmd.CmdRepos,
|
|
|
|
&cmd.CmdLabels,
|
2020-03-06 03:43:28 +00:00
|
|
|
&cmd.CmdTrackedTimes,
|
2020-04-01 03:22:24 +00:00
|
|
|
&cmd.CmdOpen,
|
2020-07-17 15:30:02 +00:00
|
|
|
&cmd.CmdNotifications,
|
2020-09-17 19:35:24 +00:00
|
|
|
&cmd.CmdMilestones,
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
2019-08-13 10:59:13 +00:00
|
|
|
app.EnableBashCompletion = true
|
2018-09-03 06:43:00 +00:00
|
|
|
err := app.Run(os.Args)
|
|
|
|
if err != nil {
|
2019-10-26 04:50:30 +00:00
|
|
|
log.Fatalf("Failed to run app with %s: %v", os.Args, err)
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func formatBuiltWith(Tags string) string {
|
|
|
|
if len(Tags) == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return " built with: " + strings.Replace(Tags, " ", ", ", -1)
|
|
|
|
}
|