#8 Checkout, auth. #16

Closed
kgorbunov wants to merge 104 commits from kgorbunov/pkgdash:dev into master
3 changed files with 40 additions and 60 deletions
Showing only changes of commit 2309bba07e - Show all commits

View File

@ -147,12 +147,10 @@ func (g *Gitea) RequestOpen(ctx context.Context, branch string, path string, mod
} }
defer checkout(wtree, *baseRef) defer checkout(wtree, *baseRef)
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
for _, pull := range g.pulls { for _, pull := range g.pulls {
@ -302,12 +300,10 @@ func (g *Gitea) RequestClose(ctx context.Context, branch string, path string) er
logger.Debug(ctx, fmt.Sprintf("RequestClose start, mod title: %s", path)) logger.Debug(ctx, fmt.Sprintf("RequestClose start, mod title: %s", path))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
prExist := false prExist := false
@ -343,12 +339,10 @@ func (g *Gitea) RequestUpdate(ctx context.Context, branch string, path string, m
logger.Debug(ctx, fmt.Sprintf("RequestUpdate start, mod title: %s", path)) logger.Debug(ctx, fmt.Sprintf("RequestUpdate start, mod title: %s", path))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password) if err != nil {
if err != nil { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
prExist := false prExist := false
@ -387,12 +381,10 @@ func (g *Gitea) RequestList(ctx context.Context, branch string) (map[string]stri
logger.Debug(ctx, fmt.Sprintf("RequestList for %s", branch)) logger.Debug(ctx, fmt.Sprintf("RequestList for %s", branch))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return nil, err
return nil, err
}
} }
var path string var path string

View File

@ -140,12 +140,10 @@ func (g *Github) RequestOpen(ctx context.Context, branch string, path string, mo
logger.Fatal(ctx, fmt.Sprintf("failed to get worktree: %v", err)) logger.Fatal(ctx, fmt.Sprintf("failed to get worktree: %v", err))
} }
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
for _, pull := range g.pulls { for _, pull := range g.pulls {
@ -300,12 +298,10 @@ func (g *Github) RequestList(ctx context.Context, branch string) (map[string]str
logger.Debug(ctx, fmt.Sprintf("RequestList for %s", branch)) logger.Debug(ctx, fmt.Sprintf("RequestList for %s", branch))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return nil, err
return nil, err
}
} }
var path string var path string

View File

@ -144,12 +144,10 @@ func (g *Gitlab) RequestOpen(ctx context.Context, branch string, path string, mo
} }
defer checkout(wtree, *baseRef) defer checkout(wtree, *baseRef)
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.RepositoryId, branch, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
for _, pull := range g.pulls { for _, pull := range g.pulls {
@ -297,12 +295,10 @@ func (g *Gitlab) RequestClose(ctx context.Context, branch string, path string) e
logger.Debug(ctx, fmt.Sprintf("RequestClose start, mod title: %s", path)) logger.Debug(ctx, fmt.Sprintf("RequestClose start, mod title: %s", path))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.RepositoryId, branch, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
prExist := false prExist := false
@ -338,12 +334,10 @@ func (g *Gitlab) RequestUpdate(ctx context.Context, branch string, path string,
logger.Debug(ctx, fmt.Sprintf("RequestUpdate start, mod title: %s", path)) logger.Debug(ctx, fmt.Sprintf("RequestUpdate start, mod title: %s", path))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.RepositoryId, branch, g.Password) if err != nil {
if err != nil { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return err
return err
}
} }
prExist := false prExist := false
@ -382,12 +376,10 @@ func (g *Gitlab) RequestList(ctx context.Context, branch string) (map[string]str
logger.Debug(ctx, fmt.Sprintf("RequestList for %s", branch)) logger.Debug(ctx, fmt.Sprintf("RequestList for %s", branch))
var err error var err error
if len(g.pulls) == 0 { g.pulls, err = GetPulls(ctx, g.URL, g.Owner, g.Repository, g.Password)
g.pulls, err = GetPulls(ctx, g.URL, g.RepositoryId, branch, g.Password) if err != nil {
if err != nil && err != ErrPRNotExist { logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err))
logger.Error(ctx, fmt.Sprintf("GetPulls error: %s", err)) return nil, err
return nil, err
}
} }
var path string var path string