mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
4cda7e0299
Merge branch 'master' into issue-97/pulls-clean vendor terminal dependency pull/push: provide authentication method automatically select an AuthMethod according to the remote url type. If required, credentials are prompted for login: store username & optional keyfile refactor refactor GetRemote Merge branch 'master' into issue-97/pulls-clean adress code review add --ignore-sha flag When set, the local branch is not matched against the remote sha, but the remote branch name. This makes the command more flexible with diverging branches. add missing error check fix branch-not-found case Merge branch 'master' into issue-97/pulls-clean use directory namespaces for branches & remotes fix TeaCreateBranch() improve method of TeaFindBranch() now only checking .git/refs instead of looking up .git/config which may not list the branch add `tea pulls clean` fixes #97 add copyright to new files make linter happy refactor: use new git functions for old code add `tea pulls checkout` Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/105 Reviewed-by: 6543 <6543@noreply.gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
82 lines
1.9 KiB
Go
82 lines
1.9 KiB
Go
// Copyright 2020 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.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"log"
|
|
"path"
|
|
"strings"
|
|
|
|
local_git "code.gitea.io/tea/modules/git"
|
|
|
|
"github.com/skratchdot/open-golang/open"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// CmdOpen represents a sub command of issues to open issue on the web browser
|
|
var CmdOpen = cli.Command{
|
|
Name: "open",
|
|
Usage: "Open something of the repository on web browser",
|
|
Description: `Open something of the repository on web browser`,
|
|
Action: runOpen,
|
|
Flags: append([]cli.Flag{}, LoginRepoFlags...),
|
|
}
|
|
|
|
func runOpen(ctx *cli.Context) error {
|
|
login, owner, repo := initCommand()
|
|
|
|
var suffix string
|
|
number := ctx.Args().Get(0)
|
|
switch {
|
|
case strings.EqualFold(number, "issues"):
|
|
suffix = "issues"
|
|
case strings.EqualFold(number, "pulls"):
|
|
suffix = "pulls"
|
|
case strings.EqualFold(number, "releases"):
|
|
suffix = "releases"
|
|
case strings.EqualFold(number, "commits"):
|
|
repo, err := local_git.RepoForWorkdir()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
b, err := repo.Head()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
return nil
|
|
}
|
|
name := b.Name()
|
|
switch {
|
|
case name.IsBranch():
|
|
suffix = "commits/branch/" + name.Short()
|
|
case name.IsTag():
|
|
suffix = "commits/tag/" + name.Short()
|
|
}
|
|
case strings.EqualFold(number, "branches"):
|
|
suffix = "branches"
|
|
case strings.EqualFold(number, "wiki"):
|
|
suffix = "wiki"
|
|
case strings.EqualFold(number, "activity"):
|
|
suffix = "activity"
|
|
case strings.EqualFold(number, "settings"):
|
|
suffix = "settings"
|
|
case strings.EqualFold(number, "labels"):
|
|
suffix = "labels"
|
|
case strings.EqualFold(number, "milestones"):
|
|
suffix = "milestones"
|
|
case number != "":
|
|
suffix = "issues/" + number
|
|
default:
|
|
suffix = number
|
|
}
|
|
|
|
u := path.Join(login.URL, owner, repo, suffix)
|
|
err := open.Run(u)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
return nil
|
|
}
|