When there is no login detected, list all possible logins to select

This commit is contained in:
Lunny Xiao
2025-10-03 12:06:31 -07:00
parent 4f33146b70
commit 376476150e
61 changed files with 270 additions and 201 deletions

View File

@@ -10,6 +10,7 @@ import (
"os"
"strings"
"code.gitea.io/tea/cmd/base"
"code.gitea.io/tea/cmd/flags"
"code.gitea.io/tea/modules/context"
@@ -46,7 +47,7 @@ var CmdLabelCreate = cli.Command{
}
func runLabelCreate(_ stdctx.Context, cmd *cli.Command) error {
ctx := context.InitCommand(cmd)
ctx := base.InitCommand(cmd)
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
labelFile := ctx.String("file")
@@ -65,7 +66,7 @@ func runLabelCreate(_ stdctx.Context, cmd *cli.Command) error {
defer f.Close()
scanner := bufio.NewScanner(f)
var i = 1
i := 1
for scanner.Scan() {
line := scanner.Text()
color, name, description := splitLabelLine(line)

View File

@@ -6,6 +6,7 @@ package labels
import (
stdctx "context"
"code.gitea.io/tea/cmd/base"
"code.gitea.io/tea/cmd/flags"
"code.gitea.io/tea/modules/context"
@@ -29,7 +30,7 @@ var CmdLabelDelete = cli.Command{
}
func runLabelDelete(_ stdctx.Context, cmd *cli.Command) error {
ctx := context.InitCommand(cmd)
ctx := base.InitCommand(cmd)
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
_, err := ctx.Login.Client().DeleteLabel(ctx.Owner, ctx.Repo, ctx.Int64("id"))

View File

@@ -6,6 +6,7 @@ package labels
import (
stdctx "context"
"code.gitea.io/tea/cmd/base"
"code.gitea.io/tea/cmd/flags"
"code.gitea.io/tea/modules/context"
"code.gitea.io/tea/modules/print"
@@ -36,7 +37,7 @@ var CmdLabelsList = cli.Command{
// RunLabelsList list labels.
func RunLabelsList(_ stdctx.Context, cmd *cli.Command) error {
ctx := context.InitCommand(cmd)
ctx := base.InitCommand(cmd)
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
client := ctx.Login.Client()

View File

@@ -6,6 +6,7 @@ package labels
import (
stdctx "context"
"code.gitea.io/tea/cmd/base"
"code.gitea.io/tea/cmd/flags"
"code.gitea.io/tea/modules/context"
@@ -41,7 +42,7 @@ var CmdLabelUpdate = cli.Command{
}
func runLabelUpdate(_ stdctx.Context, cmd *cli.Command) error {
ctx := context.InitCommand(cmd)
ctx := base.InitCommand(cmd)
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
id := ctx.Int64("id")
@@ -67,7 +68,6 @@ func runLabelUpdate(_ stdctx.Context, cmd *cli.Command) error {
Color: pColor,
Description: pDescription,
})
if err != nil {
return err
}