mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-22 10:31:37 +01:00
Refactor error handling (#308)
use fmt instead of log log.Fatal -> return err set non-zero exit code on error print to default err log cleanup fix vet Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/308 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
This commit is contained in:
parent
287df8a715
commit
a948fd7e10
@ -5,7 +5,7 @@
|
|||||||
package issues
|
package issues
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
@ -34,7 +34,7 @@ func editIssueState(cmd *cli.Context, opts gitea.EditIssueOption) error {
|
|||||||
ctx := context.InitCommand(cmd)
|
ctx := context.InitCommand(cmd)
|
||||||
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
||||||
if ctx.Args().Len() == 0 {
|
if ctx.Args().Len() == 0 {
|
||||||
log.Fatal(ctx.Command.ArgsUsage)
|
return fmt.Errorf(ctx.Command.ArgsUsage)
|
||||||
}
|
}
|
||||||
|
|
||||||
index, err := utils.ArgToIndex(ctx.Args().First())
|
index, err := utils.ArgToIndex(ctx.Args().First())
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package issues
|
package issues
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -47,7 +45,7 @@ func RunIssuesList(cmd *cli.Context) error {
|
|||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.IssuesList(issues, ctx.Output)
|
print.IssuesList(issues, ctx.Output)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/labels"
|
"code.gitea.io/tea/cmd/labels"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
@ -34,6 +34,5 @@ func runLabels(ctx *cli.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func runLabelsDetails(ctx *cli.Context) error {
|
func runLabelsDetails(ctx *cli.Context) error {
|
||||||
log.Fatal("Not yet implemented.")
|
return fmt.Errorf("Not yet implemented")
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
@ -80,11 +80,7 @@ func runLabelCreate(cmd *cli.Context) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func splitLabelLine(line string) (string, string, string) {
|
func splitLabelLine(line string) (string, string, string) {
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package labels
|
package labels
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
|
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
@ -31,9 +29,5 @@ func runLabelDelete(cmd *cli.Context) error {
|
|||||||
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
||||||
|
|
||||||
_, err := ctx.Login.Client().DeleteLabel(ctx.Owner, ctx.Repo, ctx.Int64("id"))
|
_, err := ctx.Login.Client().DeleteLabel(ctx.Owner, ctx.Repo, ctx.Int64("id"))
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package labels
|
package labels
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -44,7 +42,7 @@ func RunLabelsList(cmd *cli.Context) error {
|
|||||||
ListOptions: ctx.GetListOptions(),
|
ListOptions: ctx.GetListOptions(),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if ctx.IsSet("save") {
|
if ctx.IsSet("save") {
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package labels
|
package labels
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
|
|
||||||
"code.gitea.io/sdk/gitea"
|
"code.gitea.io/sdk/gitea"
|
||||||
@ -68,7 +66,7 @@ func runLabelUpdate(cmd *cli.Context) error {
|
|||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package login
|
package login
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/config"
|
"code.gitea.io/tea/modules/config"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -28,7 +26,7 @@ var CmdLoginList = cli.Command{
|
|||||||
func RunLoginList(cmd *cli.Context) error {
|
func RunLoginList(cmd *cli.Context) error {
|
||||||
logins, err := config.GetLogins()
|
logins, err := config.GetLogins()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
print.LoginsList(logins, cmd.String("output"))
|
print.LoginsList(logins, cmd.String("output"))
|
||||||
return nil
|
return nil
|
||||||
|
@ -6,7 +6,6 @@ package milestones
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
@ -62,7 +61,7 @@ func runMilestonesCreate(cmd *cli.Context) error {
|
|||||||
State: state,
|
State: state,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.MilestoneDetails(mile)
|
print.MilestoneDetails(mile)
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package milestones
|
package milestones
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -53,7 +51,7 @@ func RunMilestonesList(cmd *cli.Context) error {
|
|||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.MilestonesList(milestones, ctx.Output, state)
|
print.MilestonesList(milestones, ctx.Output, state)
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -76,7 +74,7 @@ func runNotifications(cmd *cli.Context) error {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.NotificationsList(news, ctx.Output, ctx.Bool("all"))
|
print.NotificationsList(news, ctx.Output, ctx.Bool("all"))
|
||||||
|
15
cmd/open.go
15
cmd/open.go
@ -5,7 +5,6 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@ -42,12 +41,11 @@ func runOpen(cmd *cli.Context) error {
|
|||||||
case strings.EqualFold(number, "commits"):
|
case strings.EqualFold(number, "commits"):
|
||||||
repo, err := local_git.RepoForWorkdir()
|
repo, err := local_git.RepoForWorkdir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
b, err := repo.Head()
|
b, err := repo.Head()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
name := b.Name()
|
name := b.Name()
|
||||||
switch {
|
switch {
|
||||||
@ -74,11 +72,6 @@ func runOpen(cmd *cli.Context) error {
|
|||||||
suffix = number
|
suffix = number
|
||||||
}
|
}
|
||||||
|
|
||||||
u := path.Join(ctx.Login.URL, ctx.RepoSlug, suffix)
|
u := path.Join(ctx.Login.URL, ctx.Owner, ctx.Repo, suffix)
|
||||||
err := open.Run(u)
|
return open.Run(u)
|
||||||
if err != nil {
|
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/organizations"
|
"code.gitea.io/tea/cmd/organizations"
|
||||||
|
|
||||||
@ -34,7 +34,5 @@ func runOrganizations(ctx *cli.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func runOrganizationDetail(path string) error {
|
func runOrganizationDetail(path string) error {
|
||||||
|
return fmt.Errorf("Not yet implemented")
|
||||||
log.Fatal("Not yet implemented.")
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
package organizations
|
package organizations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
|
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
@ -28,14 +28,12 @@ func RunOrganizationDelete(cmd *cli.Context) error {
|
|||||||
client := ctx.Login.Client()
|
client := ctx.Login.Client()
|
||||||
|
|
||||||
if ctx.Args().Len() < 1 {
|
if ctx.Args().Len() < 1 {
|
||||||
log.Fatal("You have to specify the organization name you want to delete.")
|
return fmt.Errorf("You have to specify the organization name you want to delete")
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
response, err := client.DeleteOrg(ctx.Args().First())
|
response, err := client.DeleteOrg(ctx.Args().First())
|
||||||
if response != nil && response.StatusCode == 404 {
|
if response != nil && response.StatusCode == 404 {
|
||||||
log.Fatal("The given organization does not exist.")
|
return fmt.Errorf("The given organization does not exist")
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return err
|
return err
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package organizations
|
package organizations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -37,7 +35,7 @@ func RunOrganizationList(cmd *cli.Context) error {
|
|||||||
ListOptions: ctx.GetListOptions(),
|
ListOptions: ctx.GetListOptions(),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.OrganizationsList(userOrganizations, ctx.Output)
|
print.OrganizationsList(userOrganizations, ctx.Output)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
package pulls
|
package pulls
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
@ -30,7 +30,7 @@ func runPullsCheckout(cmd *cli.Context) error {
|
|||||||
ctx := context.InitCommand(cmd)
|
ctx := context.InitCommand(cmd)
|
||||||
ctx.Ensure(context.CtxRequirement{LocalRepo: true})
|
ctx.Ensure(context.CtxRequirement{LocalRepo: true})
|
||||||
if ctx.Args().Len() != 1 {
|
if ctx.Args().Len() != 1 {
|
||||||
log.Fatal("Must specify a PR index")
|
return fmt.Errorf("Must specify a PR index")
|
||||||
}
|
}
|
||||||
idx, err := utils.ArgToIndex(ctx.Args().First())
|
idx, err := utils.ArgToIndex(ctx.Args().First())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
package pulls
|
package pulls
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
"code.gitea.io/tea/modules/print"
|
"code.gitea.io/tea/modules/print"
|
||||||
@ -45,7 +43,7 @@ func RunPullsList(cmd *cli.Context) error {
|
|||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.PullsList(prs, ctx.Output)
|
print.PullsList(prs, ctx.Output)
|
||||||
|
@ -6,7 +6,6 @@ package releases
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -76,24 +75,23 @@ func runReleaseCreate(cmd *cli.Context) error {
|
|||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if resp != nil && resp.StatusCode == http.StatusConflict {
|
if resp != nil && resp.StatusCode == http.StatusConflict {
|
||||||
fmt.Println("error: There already is a release for this tag")
|
return fmt.Errorf("There already is a release for this tag")
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, asset := range ctx.StringSlice("asset") {
|
for _, asset := range ctx.StringSlice("asset") {
|
||||||
var file *os.File
|
var file *os.File
|
||||||
|
|
||||||
if file, err = os.Open(asset); err != nil {
|
if file, err = os.Open(asset); err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
filePath := filepath.Base(asset)
|
filePath := filepath.Base(asset)
|
||||||
|
|
||||||
if _, _, err = ctx.Login.Client().CreateReleaseAttachment(ctx.Owner, ctx.Repo, release.ID, file, filePath); err != nil {
|
if _, _, err = ctx.Login.Client().CreateReleaseAttachment(ctx.Owner, ctx.Repo, release.ID, file, filePath); err != nil {
|
||||||
file.Close()
|
file.Close()
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
file.Close()
|
file.Close()
|
||||||
|
@ -6,7 +6,6 @@ package releases
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
@ -38,7 +37,7 @@ func RunReleasesList(cmd *cli.Context) error {
|
|||||||
ListOptions: ctx.GetListOptions(),
|
ListOptions: ctx.GetListOptions(),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
print.ReleasesList(releases, ctx.Output)
|
print.ReleasesList(releases, ctx.Output)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
package repos
|
package repos
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
@ -67,7 +67,7 @@ func runReposSearch(cmd *cli.Context) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
// HACK: the client does not return a response on 404, so we can't check res.StatusCode
|
// HACK: the client does not return a response on 404, so we can't check res.StatusCode
|
||||||
if err.Error() != "404 Not Found" {
|
if err.Error() != "404 Not Found" {
|
||||||
log.Fatal("could not find owner: ", err)
|
return fmt.Errorf("Could not find owner: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// if owner is no org, its a user
|
// if owner is no org, its a user
|
||||||
|
@ -6,7 +6,6 @@ package times
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -41,20 +40,16 @@ func runTrackedTimesAdd(cmd *cli.Context) error {
|
|||||||
|
|
||||||
issue, err := utils.ArgToIndex(ctx.Args().First())
|
issue, err := utils.ArgToIndex(ctx.Args().First())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
duration, err := time.ParseDuration(strings.Join(ctx.Args().Tail(), ""))
|
duration, err := time.ParseDuration(strings.Join(ctx.Args().Tail(), ""))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, _, err = ctx.Login.Client().AddTime(ctx.Owner, ctx.Repo, issue, gitea.AddTimeOption{
|
_, _, err = ctx.Login.Client().AddTime(ctx.Owner, ctx.Repo, issue, gitea.AddTimeOption{
|
||||||
Time: int64(duration.Seconds()),
|
Time: int64(duration.Seconds()),
|
||||||
})
|
})
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ package times
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
@ -37,18 +36,14 @@ func runTrackedTimesDelete(cmd *cli.Context) error {
|
|||||||
|
|
||||||
issue, err := utils.ArgToIndex(ctx.Args().First())
|
issue, err := utils.ArgToIndex(ctx.Args().First())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
timeID, err := strconv.ParseInt(ctx.Args().Get(1), 10, 64)
|
timeID, err := strconv.ParseInt(ctx.Args().Get(1), 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = client.DeleteTime(ctx.Owner, ctx.Repo, issue, timeID)
|
_, err = client.DeleteTime(ctx.Owner, ctx.Repo, issue, timeID)
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ package times
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/tea/cmd/flags"
|
"code.gitea.io/tea/cmd/flags"
|
||||||
"code.gitea.io/tea/modules/context"
|
"code.gitea.io/tea/modules/context"
|
||||||
@ -36,13 +35,9 @@ func runTrackedTimesReset(cmd *cli.Context) error {
|
|||||||
|
|
||||||
issue, err := utils.ArgToIndex(ctx.Args().First())
|
issue, err := utils.ArgToIndex(ctx.Args().First())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = client.ResetIssueTime(ctx.Owner, ctx.Repo, issue)
|
_, err = client.ResetIssueTime(ctx.Owner, ctx.Repo, issue)
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
10
main.go
10
main.go
@ -1,4 +1,4 @@
|
|||||||
// Copyright 2018 The Gitea Authors. All rights reserved.
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
||||||
// Use of this source code is governed by a MIT-style
|
// Use of this source code is governed by a MIT-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
@ -6,7 +6,7 @@
|
|||||||
package main // import "code.gitea.io/tea"
|
package main // import "code.gitea.io/tea"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@ -25,7 +25,6 @@ func main() {
|
|||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "tea"
|
app.Name = "tea"
|
||||||
app.Usage = "Command line tool to interact with Gitea"
|
app.Usage = "Command line tool to interact with Gitea"
|
||||||
app.Description = ``
|
|
||||||
app.Version = Version + formatBuiltWith(Tags)
|
app.Version = Version + formatBuiltWith(Tags)
|
||||||
app.Commands = []*cli.Command{
|
app.Commands = []*cli.Command{
|
||||||
&cmd.CmdLogin,
|
&cmd.CmdLogin,
|
||||||
@ -45,7 +44,10 @@ func main() {
|
|||||||
app.EnableBashCompletion = true
|
app.EnableBashCompletion = true
|
||||||
err := app.Run(os.Args)
|
err := app.Run(os.Args)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to run app with %s: %v", os.Args, err)
|
// app.Run already exits for errors implementing ErrorCoder,
|
||||||
|
// so we only handle generic errors with code 1 here.
|
||||||
|
fmt.Fprintf(app.ErrWriter, "Error: %v\n", err)
|
||||||
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@ package task
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
|
|
||||||
"code.gitea.io/sdk/gitea"
|
"code.gitea.io/sdk/gitea"
|
||||||
"code.gitea.io/tea/modules/config"
|
"code.gitea.io/tea/modules/config"
|
||||||
@ -34,12 +33,12 @@ func CreateIssue(login *config.Login, repoOwner, repoName, title, description st
|
|||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("could not create issue: %s", err)
|
return fmt.Errorf("could not create issue: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
print.IssueDetails(issue)
|
print.IssueDetails(issue)
|
||||||
|
|
||||||
fmt.Println(issue.HTMLURL)
|
fmt.Println(issue.HTMLURL)
|
||||||
|
|
||||||
return err
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ package task
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"code.gitea.io/sdk/gitea"
|
"code.gitea.io/sdk/gitea"
|
||||||
@ -16,7 +15,7 @@ import (
|
|||||||
func LabelsExport(labels []*gitea.Label, path string) error {
|
func LabelsExport(labels []*gitea.Label, path string) error {
|
||||||
f, err := os.Create(path)
|
f, err := os.Create(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@ package task
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -21,7 +20,7 @@ func CreateLogin(name, token, user, passwd, sshKey, giteaURL string, insecure bo
|
|||||||
// checks ...
|
// checks ...
|
||||||
// ... if we have a url
|
// ... if we have a url
|
||||||
if len(giteaURL) == 0 {
|
if len(giteaURL) == 0 {
|
||||||
log.Fatal("You have to input Gitea server URL")
|
return fmt.Errorf("You have to input Gitea server URL")
|
||||||
}
|
}
|
||||||
|
|
||||||
// ... if there already exist a login with same name
|
// ... if there already exist a login with same name
|
||||||
@ -35,17 +34,17 @@ func CreateLogin(name, token, user, passwd, sshKey, giteaURL string, insecure bo
|
|||||||
|
|
||||||
// .. if we have enough information to authenticate
|
// .. if we have enough information to authenticate
|
||||||
if len(token) == 0 && (len(user)+len(passwd)) == 0 {
|
if len(token) == 0 && (len(user)+len(passwd)) == 0 {
|
||||||
log.Fatal("No token set")
|
return fmt.Errorf("No token set")
|
||||||
} else if len(user) != 0 && len(passwd) == 0 {
|
} else if len(user) != 0 && len(passwd) == 0 {
|
||||||
log.Fatal("No password set")
|
return fmt.Errorf("No password set")
|
||||||
} else if len(user) == 0 && len(passwd) != 0 {
|
} else if len(user) == 0 && len(passwd) != 0 {
|
||||||
log.Fatal("No user set")
|
return fmt.Errorf("No user set")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Normalize URL
|
// Normalize URL
|
||||||
serverURL, err := utils.NormalizeURL(giteaURL)
|
serverURL, err := utils.NormalizeURL(giteaURL)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("Unable to parse URL", err)
|
return fmt.Errorf("Unable to parse URL: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
login := config.Login{
|
login := config.Login{
|
||||||
@ -60,23 +59,21 @@ func CreateLogin(name, token, user, passwd, sshKey, giteaURL string, insecure bo
|
|||||||
client := login.Client()
|
client := login.Client()
|
||||||
|
|
||||||
if len(token) == 0 {
|
if len(token) == 0 {
|
||||||
login.Token, err = generateToken(client, user, passwd)
|
if login.Token, err = generateToken(client, user, passwd); err != nil {
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify if authentication works and get user info
|
// Verify if authentication works and get user info
|
||||||
u, _, err := client.GetMyUserInfo()
|
u, _, err := client.GetMyUserInfo()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
login.User = u.UserName
|
login.User = u.UserName
|
||||||
|
|
||||||
if len(login.Name) == 0 {
|
if len(login.Name) == 0 {
|
||||||
login.Name, err = GenerateLoginName(giteaURL, login.User)
|
if login.Name, err = GenerateLoginName(giteaURL, login.User); err != nil {
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,9 +88,8 @@ func CreateLogin(name, token, user, passwd, sshKey, giteaURL string, insecure bo
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err = config.AddLogin(&login)
|
if err = config.AddLogin(&login); err != nil {
|
||||||
if err != nil {
|
return err
|
||||||
log.Fatal(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("Login as %s on %s successful. Added this login as %s\n", login.User, login.URL, login.Name)
|
fmt.Printf("Login as %s on %s successful. Added this login as %s\n", login.User, login.URL, login.Name)
|
||||||
|
@ -6,7 +6,6 @@ package task
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"code.gitea.io/sdk/gitea"
|
"code.gitea.io/sdk/gitea"
|
||||||
@ -24,14 +23,14 @@ func CreatePull(login *config.Login, repoOwner, repoName, base, head, title, des
|
|||||||
// open local git repo
|
// open local git repo
|
||||||
localRepo, err := local_git.RepoForWorkdir()
|
localRepo, err := local_git.RepoForWorkdir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("could not open local repo: ", err)
|
return fmt.Errorf("Could not open local repo: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// push if possible
|
// push if possible
|
||||||
log.Println("git push")
|
fmt.Println("git push")
|
||||||
err = localRepo.Push(&git.PushOptions{})
|
err = localRepo.Push(&git.PushOptions{})
|
||||||
if err != nil && err != git.NoErrAlreadyUpToDate {
|
if err != nil && err != git.NoErrAlreadyUpToDate {
|
||||||
log.Printf("Error occurred during 'git push':\n%s\n", err.Error())
|
fmt.Printf("Error occurred during 'git push':\n%s\n", err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
// default is default branch
|
// default is default branch
|
||||||
@ -74,7 +73,7 @@ func CreatePull(login *config.Login, repoOwner, repoName, base, head, title, des
|
|||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("could not create PR from %s to %s:%s: %s", head, repoOwner, base, err)
|
return fmt.Errorf("Could not create PR from %s to %s:%s: %s", head, repoOwner, base, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
print.PullDetails(pr, nil)
|
print.PullDetails(pr, nil)
|
||||||
|
Loading…
Reference in New Issue
Block a user