commit
03b6880089
1 changed files with 83 additions and 0 deletions
|
@ -8,10 +8,12 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// ErrNameReserved represents a "reserved name" error.
|
||||||
type ErrNameReserved struct {
|
type ErrNameReserved struct {
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrNameReserved checks if an error is a ErrNameReserved.
|
||||||
func IsErrNameReserved(err error) bool {
|
func IsErrNameReserved(err error) bool {
|
||||||
_, ok := err.(ErrNameReserved)
|
_, ok := err.(ErrNameReserved)
|
||||||
return ok
|
return ok
|
||||||
|
@ -21,10 +23,13 @@ func (err ErrNameReserved) Error() string {
|
||||||
return fmt.Sprintf("name is reserved [name: %s]", err.Name)
|
return fmt.Sprintf("name is reserved [name: %s]", err.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrNamePatternNotAllowed represents a "pattern not allowed" error.
|
||||||
type ErrNamePatternNotAllowed struct {
|
type ErrNamePatternNotAllowed struct {
|
||||||
Pattern string
|
Pattern string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrNamePatternNotAllowed checks if an error is an
|
||||||
|
// ErrNamePatternNotAllowed.
|
||||||
func IsErrNamePatternNotAllowed(err error) bool {
|
func IsErrNamePatternNotAllowed(err error) bool {
|
||||||
_, ok := err.(ErrNamePatternNotAllowed)
|
_, ok := err.(ErrNamePatternNotAllowed)
|
||||||
return ok
|
return ok
|
||||||
|
@ -41,10 +46,12 @@ func (err ErrNamePatternNotAllowed) Error() string {
|
||||||
// |______//____ >\___ >__|
|
// |______//____ >\___ >__|
|
||||||
// \/ \/
|
// \/ \/
|
||||||
|
|
||||||
|
// ErrUserAlreadyExist represents a "user already exists" error.
|
||||||
type ErrUserAlreadyExist struct {
|
type ErrUserAlreadyExist struct {
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrUserAlreadyExist checks if an error is a ErrUserAlreadyExists.
|
||||||
func IsErrUserAlreadyExist(err error) bool {
|
func IsErrUserAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrUserAlreadyExist)
|
_, ok := err.(ErrUserAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -54,12 +61,14 @@ func (err ErrUserAlreadyExist) Error() string {
|
||||||
return fmt.Sprintf("user already exists [name: %s]", err.Name)
|
return fmt.Sprintf("user already exists [name: %s]", err.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrUserNotExist represents a "UserNotExist" kind of error.
|
||||||
type ErrUserNotExist struct {
|
type ErrUserNotExist struct {
|
||||||
UID int64
|
UID int64
|
||||||
Name string
|
Name string
|
||||||
KeyID int64
|
KeyID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrUserNotExist checks if an error is a ErrUserNotExist.
|
||||||
func IsErrUserNotExist(err error) bool {
|
func IsErrUserNotExist(err error) bool {
|
||||||
_, ok := err.(ErrUserNotExist)
|
_, ok := err.(ErrUserNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -69,10 +78,12 @@ func (err ErrUserNotExist) Error() string {
|
||||||
return fmt.Sprintf("user does not exist [uid: %d, name: %s, keyid: %d]", err.UID, err.Name, err.KeyID)
|
return fmt.Sprintf("user does not exist [uid: %d, name: %s, keyid: %d]", err.UID, err.Name, err.KeyID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrEmailAlreadyUsed represents a "EmailAlreadyUsed" kind of error.
|
||||||
type ErrEmailAlreadyUsed struct {
|
type ErrEmailAlreadyUsed struct {
|
||||||
Email string
|
Email string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrEmailAlreadyUsed checks if an error is a ErrEmailAlreadyUsed.
|
||||||
func IsErrEmailAlreadyUsed(err error) bool {
|
func IsErrEmailAlreadyUsed(err error) bool {
|
||||||
_, ok := err.(ErrEmailAlreadyUsed)
|
_, ok := err.(ErrEmailAlreadyUsed)
|
||||||
return ok
|
return ok
|
||||||
|
@ -82,10 +93,12 @@ func (err ErrEmailAlreadyUsed) Error() string {
|
||||||
return fmt.Sprintf("e-mail has been used [email: %s]", err.Email)
|
return fmt.Sprintf("e-mail has been used [email: %s]", err.Email)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrUserOwnRepos represents a "UserOwnRepos" kind of error.
|
||||||
type ErrUserOwnRepos struct {
|
type ErrUserOwnRepos struct {
|
||||||
UID int64
|
UID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrUserOwnRepos checks if an error is a ErrUserOwnRepos.
|
||||||
func IsErrUserOwnRepos(err error) bool {
|
func IsErrUserOwnRepos(err error) bool {
|
||||||
_, ok := err.(ErrUserOwnRepos)
|
_, ok := err.(ErrUserOwnRepos)
|
||||||
return ok
|
return ok
|
||||||
|
@ -95,10 +108,12 @@ func (err ErrUserOwnRepos) Error() string {
|
||||||
return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID)
|
return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrUserHasOrgs represents a "UserHasOrgs" kind of error.
|
||||||
type ErrUserHasOrgs struct {
|
type ErrUserHasOrgs struct {
|
||||||
UID int64
|
UID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrUserHasOrgs checks if an error is a ErrUserHasOrgs.
|
||||||
func IsErrUserHasOrgs(err error) bool {
|
func IsErrUserHasOrgs(err error) bool {
|
||||||
_, ok := err.(ErrUserHasOrgs)
|
_, ok := err.(ErrUserHasOrgs)
|
||||||
return ok
|
return ok
|
||||||
|
@ -108,10 +123,12 @@ func (err ErrUserHasOrgs) Error() string {
|
||||||
return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID)
|
return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrReachLimitOfRepo represents a "ReachLimitOfRepo" kind of error.
|
||||||
type ErrReachLimitOfRepo struct {
|
type ErrReachLimitOfRepo struct {
|
||||||
Limit int
|
Limit int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrReachLimitOfRepo checks if an error is a ErrReachLimitOfRepo.
|
||||||
func IsErrReachLimitOfRepo(err error) bool {
|
func IsErrReachLimitOfRepo(err error) bool {
|
||||||
_, ok := err.(ErrReachLimitOfRepo)
|
_, ok := err.(ErrReachLimitOfRepo)
|
||||||
return ok
|
return ok
|
||||||
|
@ -128,10 +145,12 @@ func (err ErrReachLimitOfRepo) Error() string {
|
||||||
// \__/\ / |__|__|_ \__|
|
// \__/\ / |__|__|_ \__|
|
||||||
// \/ \/
|
// \/ \/
|
||||||
|
|
||||||
|
// ErrWikiAlreadyExist represents a "WikiAlreadyExist" kind of error.
|
||||||
type ErrWikiAlreadyExist struct {
|
type ErrWikiAlreadyExist struct {
|
||||||
Title string
|
Title string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrWikiAlreadyExist checks if an error is a ErrWikiAlreadyExist.
|
||||||
func IsErrWikiAlreadyExist(err error) bool {
|
func IsErrWikiAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrWikiAlreadyExist)
|
_, ok := err.(ErrWikiAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -148,10 +167,12 @@ func (err ErrWikiAlreadyExist) Error() string {
|
||||||
// |____| |____/|___ /____/__|\___ > |____|__ \___ > ____|
|
// |____| |____/|___ /____/__|\___ > |____|__ \___ > ____|
|
||||||
// \/ \/ \/ \/\/
|
// \/ \/ \/ \/\/
|
||||||
|
|
||||||
|
// ErrKeyUnableVerify represents a "KeyUnableVerify" kind of error.
|
||||||
type ErrKeyUnableVerify struct {
|
type ErrKeyUnableVerify struct {
|
||||||
Result string
|
Result string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrKeyUnableVerify checks if an error is a ErrKeyUnableVerify.
|
||||||
func IsErrKeyUnableVerify(err error) bool {
|
func IsErrKeyUnableVerify(err error) bool {
|
||||||
_, ok := err.(ErrKeyUnableVerify)
|
_, ok := err.(ErrKeyUnableVerify)
|
||||||
return ok
|
return ok
|
||||||
|
@ -161,10 +182,12 @@ func (err ErrKeyUnableVerify) Error() string {
|
||||||
return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result)
|
return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrKeyNotExist represents a "KeyNotExist" kind of error.
|
||||||
type ErrKeyNotExist struct {
|
type ErrKeyNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrKeyNotExist checks if an error is a ErrKeyNotExist.
|
||||||
func IsErrKeyNotExist(err error) bool {
|
func IsErrKeyNotExist(err error) bool {
|
||||||
_, ok := err.(ErrKeyNotExist)
|
_, ok := err.(ErrKeyNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -174,11 +197,13 @@ func (err ErrKeyNotExist) Error() string {
|
||||||
return fmt.Sprintf("public key does not exist [id: %d]", err.ID)
|
return fmt.Sprintf("public key does not exist [id: %d]", err.ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrKeyAlreadyExist represents a "KeyAlreadyExist" kind of error.
|
||||||
type ErrKeyAlreadyExist struct {
|
type ErrKeyAlreadyExist struct {
|
||||||
OwnerID int64
|
OwnerID int64
|
||||||
Content string
|
Content string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrKeyAlreadyExist checks if an error is a ErrKeyAlreadyExist.
|
||||||
func IsErrKeyAlreadyExist(err error) bool {
|
func IsErrKeyAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrKeyAlreadyExist)
|
_, ok := err.(ErrKeyAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -188,11 +213,13 @@ func (err ErrKeyAlreadyExist) Error() string {
|
||||||
return fmt.Sprintf("public key already exists [owner_id: %d, content: %s]", err.OwnerID, err.Content)
|
return fmt.Sprintf("public key already exists [owner_id: %d, content: %s]", err.OwnerID, err.Content)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrKeyNameAlreadyUsed represents a "KeyNameAlreadyUsed" kind of error.
|
||||||
type ErrKeyNameAlreadyUsed struct {
|
type ErrKeyNameAlreadyUsed struct {
|
||||||
OwnerID int64
|
OwnerID int64
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrKeyNameAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
|
||||||
func IsErrKeyNameAlreadyUsed(err error) bool {
|
func IsErrKeyNameAlreadyUsed(err error) bool {
|
||||||
_, ok := err.(ErrKeyNameAlreadyUsed)
|
_, ok := err.(ErrKeyNameAlreadyUsed)
|
||||||
return ok
|
return ok
|
||||||
|
@ -202,12 +229,14 @@ func (err ErrKeyNameAlreadyUsed) Error() string {
|
||||||
return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name)
|
return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrKeyAccessDenied represents a "KeyAccessDenied" kind of error.
|
||||||
type ErrKeyAccessDenied struct {
|
type ErrKeyAccessDenied struct {
|
||||||
UserID int64
|
UserID int64
|
||||||
KeyID int64
|
KeyID int64
|
||||||
Note string
|
Note string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrKeyAccessDenied checks if an error is a ErrKeyAccessDenied.
|
||||||
func IsErrKeyAccessDenied(err error) bool {
|
func IsErrKeyAccessDenied(err error) bool {
|
||||||
_, ok := err.(ErrKeyAccessDenied)
|
_, ok := err.(ErrKeyAccessDenied)
|
||||||
return ok
|
return ok
|
||||||
|
@ -218,12 +247,14 @@ func (err ErrKeyAccessDenied) Error() string {
|
||||||
err.UserID, err.KeyID, err.Note)
|
err.UserID, err.KeyID, err.Note)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrDeployKeyNotExist represents a "DeployKeyNotExist" kind of error.
|
||||||
type ErrDeployKeyNotExist struct {
|
type ErrDeployKeyNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
KeyID int64
|
KeyID int64
|
||||||
RepoID int64
|
RepoID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrDeployKeyNotExist checks if an error is a ErrDeployKeyNotExist.
|
||||||
func IsErrDeployKeyNotExist(err error) bool {
|
func IsErrDeployKeyNotExist(err error) bool {
|
||||||
_, ok := err.(ErrDeployKeyNotExist)
|
_, ok := err.(ErrDeployKeyNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -233,11 +264,13 @@ func (err ErrDeployKeyNotExist) Error() string {
|
||||||
return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID)
|
return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrDeployKeyAlreadyExist represents a "DeployKeyAlreadyExist" kind of error.
|
||||||
type ErrDeployKeyAlreadyExist struct {
|
type ErrDeployKeyAlreadyExist struct {
|
||||||
KeyID int64
|
KeyID int64
|
||||||
RepoID int64
|
RepoID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrDeployKeyAlreadyExist checks if an error is a ErrDeployKeyAlreadyExist.
|
||||||
func IsErrDeployKeyAlreadyExist(err error) bool {
|
func IsErrDeployKeyAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrDeployKeyAlreadyExist)
|
_, ok := err.(ErrDeployKeyAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -247,11 +280,13 @@ func (err ErrDeployKeyAlreadyExist) Error() string {
|
||||||
return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID)
|
return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrDeployKeyNameAlreadyUsed represents a "DeployKeyNameAlreadyUsed" kind of error.
|
||||||
type ErrDeployKeyNameAlreadyUsed struct {
|
type ErrDeployKeyNameAlreadyUsed struct {
|
||||||
RepoID int64
|
RepoID int64
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrDeployKeyNameAlreadyUsed checks if an error is a ErrDeployKeyNameAlreadyUsed.
|
||||||
func IsErrDeployKeyNameAlreadyUsed(err error) bool {
|
func IsErrDeployKeyNameAlreadyUsed(err error) bool {
|
||||||
_, ok := err.(ErrDeployKeyNameAlreadyUsed)
|
_, ok := err.(ErrDeployKeyNameAlreadyUsed)
|
||||||
return ok
|
return ok
|
||||||
|
@ -268,10 +303,12 @@ func (err ErrDeployKeyNameAlreadyUsed) Error() string {
|
||||||
// \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| /
|
// \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| /
|
||||||
// \/ \/ \/ \/ \/ \/ \/ \/ \/
|
// \/ \/ \/ \/ \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrAccessTokenNotExist represents a "AccessTokenNotExist" kind of error.
|
||||||
type ErrAccessTokenNotExist struct {
|
type ErrAccessTokenNotExist struct {
|
||||||
SHA string
|
SHA string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrAccessTokenNotExist checks if an error is a ErrAccessTokenNotExist.
|
||||||
func IsErrAccessTokenNotExist(err error) bool {
|
func IsErrAccessTokenNotExist(err error) bool {
|
||||||
_, ok := err.(ErrAccessTokenNotExist)
|
_, ok := err.(ErrAccessTokenNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -281,9 +318,11 @@ func (err ErrAccessTokenNotExist) Error() string {
|
||||||
return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA)
|
return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrAccessTokenEmpty represents a "AccessTokenEmpty" kind of error.
|
||||||
type ErrAccessTokenEmpty struct {
|
type ErrAccessTokenEmpty struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrAccessTokenEmpty checks if an error is a ErrAccessTokenEmpty.
|
||||||
func IsErrAccessTokenEmpty(err error) bool {
|
func IsErrAccessTokenEmpty(err error) bool {
|
||||||
_, ok := err.(ErrAccessTokenEmpty)
|
_, ok := err.(ErrAccessTokenEmpty)
|
||||||
return ok
|
return ok
|
||||||
|
@ -300,10 +339,12 @@ func (err ErrAccessTokenEmpty) Error() string {
|
||||||
// \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
|
// \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
|
||||||
// \/ /_____/ \/ \/ \/ \/ \/
|
// \/ /_____/ \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrLastOrgOwner represents a "LastOrgOwner" kind of error.
|
||||||
type ErrLastOrgOwner struct {
|
type ErrLastOrgOwner struct {
|
||||||
UID int64
|
UID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrLastOrgOwner checks if an error is a ErrLastOrgOwner.
|
||||||
func IsErrLastOrgOwner(err error) bool {
|
func IsErrLastOrgOwner(err error) bool {
|
||||||
_, ok := err.(ErrLastOrgOwner)
|
_, ok := err.(ErrLastOrgOwner)
|
||||||
return ok
|
return ok
|
||||||
|
@ -320,12 +361,14 @@ func (err ErrLastOrgOwner) Error() string {
|
||||||
// |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____|
|
// |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____|
|
||||||
// \/ \/|__| \/ \/
|
// \/ \/|__| \/ \/
|
||||||
|
|
||||||
|
// ErrRepoNotExist represents a "RepoNotExist" kind of error.
|
||||||
type ErrRepoNotExist struct {
|
type ErrRepoNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
UID int64
|
UID int64
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrRepoNotExist checks if an error is a ErrRepoNotExist.
|
||||||
func IsErrRepoNotExist(err error) bool {
|
func IsErrRepoNotExist(err error) bool {
|
||||||
_, ok := err.(ErrRepoNotExist)
|
_, ok := err.(ErrRepoNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -335,11 +378,13 @@ func (err ErrRepoNotExist) Error() string {
|
||||||
return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name)
|
return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrRepoAlreadyExist represents a "RepoAlreadyExist" kind of error.
|
||||||
type ErrRepoAlreadyExist struct {
|
type ErrRepoAlreadyExist struct {
|
||||||
Uname string
|
Uname string
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrRepoAlreadyExist checks if an error is a ErrRepoAlreadyExist.
|
||||||
func IsErrRepoAlreadyExist(err error) bool {
|
func IsErrRepoAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrRepoAlreadyExist)
|
_, ok := err.(ErrRepoAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -349,12 +394,14 @@ func (err ErrRepoAlreadyExist) Error() string {
|
||||||
return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name)
|
return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrInvalidCloneAddr represents a "InvalidCloneAddr" kind of error.
|
||||||
type ErrInvalidCloneAddr struct {
|
type ErrInvalidCloneAddr struct {
|
||||||
IsURLError bool
|
IsURLError bool
|
||||||
IsInvalidPath bool
|
IsInvalidPath bool
|
||||||
IsPermissionDenied bool
|
IsPermissionDenied bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrInvalidCloneAddr checks if an error is a ErrInvalidCloneAddr.
|
||||||
func IsErrInvalidCloneAddr(err error) bool {
|
func IsErrInvalidCloneAddr(err error) bool {
|
||||||
_, ok := err.(ErrInvalidCloneAddr)
|
_, ok := err.(ErrInvalidCloneAddr)
|
||||||
return ok
|
return ok
|
||||||
|
@ -365,10 +412,12 @@ func (err ErrInvalidCloneAddr) Error() string {
|
||||||
err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied)
|
err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrUpdateTaskNotExist represents a "UpdateTaskNotExist" kind of error.
|
||||||
type ErrUpdateTaskNotExist struct {
|
type ErrUpdateTaskNotExist struct {
|
||||||
UUID string
|
UUID string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrUpdateTaskNotExist checks if an error is a ErrUpdateTaskNotExist.
|
||||||
func IsErrUpdateTaskNotExist(err error) bool {
|
func IsErrUpdateTaskNotExist(err error) bool {
|
||||||
_, ok := err.(ErrUpdateTaskNotExist)
|
_, ok := err.(ErrUpdateTaskNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -378,10 +427,12 @@ func (err ErrUpdateTaskNotExist) Error() string {
|
||||||
return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID)
|
return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrReleaseAlreadyExist represents a "ReleaseAlreadyExist" kind of error.
|
||||||
type ErrReleaseAlreadyExist struct {
|
type ErrReleaseAlreadyExist struct {
|
||||||
TagName string
|
TagName string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrReleaseAlreadyExist checks if an error is a ErrReleaseAlreadyExist.
|
||||||
func IsErrReleaseAlreadyExist(err error) bool {
|
func IsErrReleaseAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrReleaseAlreadyExist)
|
_, ok := err.(ErrReleaseAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -391,11 +442,13 @@ func (err ErrReleaseAlreadyExist) Error() string {
|
||||||
return fmt.Sprintf("release tag already exist [tag_name: %s]", err.TagName)
|
return fmt.Sprintf("release tag already exist [tag_name: %s]", err.TagName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrReleaseNotExist represents a "ReleaseNotExist" kind of error.
|
||||||
type ErrReleaseNotExist struct {
|
type ErrReleaseNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
TagName string
|
TagName string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrReleaseNotExist checks if an error is a ErrReleaseNotExist.
|
||||||
func IsErrReleaseNotExist(err error) bool {
|
func IsErrReleaseNotExist(err error) bool {
|
||||||
_, ok := err.(ErrReleaseNotExist)
|
_, ok := err.(ErrReleaseNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -405,10 +458,12 @@ func (err ErrReleaseNotExist) Error() string {
|
||||||
return fmt.Sprintf("release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName)
|
return fmt.Sprintf("release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrInvalidTagName represents a "InvalidTagName" kind of error.
|
||||||
type ErrInvalidTagName struct {
|
type ErrInvalidTagName struct {
|
||||||
TagName string
|
TagName string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrInvalidTagName checks if an error is a ErrInvalidTagName.
|
||||||
func IsErrInvalidTagName(err error) bool {
|
func IsErrInvalidTagName(err error) bool {
|
||||||
_, ok := err.(ErrInvalidTagName)
|
_, ok := err.(ErrInvalidTagName)
|
||||||
return ok
|
return ok
|
||||||
|
@ -418,10 +473,12 @@ func (err ErrInvalidTagName) Error() string {
|
||||||
return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName)
|
return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrRepoFileAlreadyExist represents a "RepoFileAlreadyExist" kind of error.
|
||||||
type ErrRepoFileAlreadyExist struct {
|
type ErrRepoFileAlreadyExist struct {
|
||||||
FileName string
|
FileName string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrRepoFileAlreadyExist checks if an error is a ErrRepoFileAlreadyExist.
|
||||||
func IsErrRepoFileAlreadyExist(err error) bool {
|
func IsErrRepoFileAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrRepoFileAlreadyExist)
|
_, ok := err.(ErrRepoFileAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -438,10 +495,12 @@ func (err ErrRepoFileAlreadyExist) Error() string {
|
||||||
// |______ / |__| (____ /___| /\___ >___| /
|
// |______ / |__| (____ /___| /\___ >___| /
|
||||||
// \/ \/ \/ \/ \/
|
// \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrBranchNotExist represents a "BranchNotExist" kind of error.
|
||||||
type ErrBranchNotExist struct {
|
type ErrBranchNotExist struct {
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrBranchNotExist checks if an error is a ErrBranchNotExist.
|
||||||
func IsErrBranchNotExist(err error) bool {
|
func IsErrBranchNotExist(err error) bool {
|
||||||
_, ok := err.(ErrBranchNotExist)
|
_, ok := err.(ErrBranchNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -458,10 +517,12 @@ func (err ErrBranchNotExist) Error() string {
|
||||||
// \__/\ / \___ >___ /___| /\____/ \____/|__|_ \
|
// \__/\ / \___ >___ /___| /\____/ \____/|__|_ \
|
||||||
// \/ \/ \/ \/ \/
|
// \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrWebhookNotExist represents a "WebhookNotExist" kind of error.
|
||||||
type ErrWebhookNotExist struct {
|
type ErrWebhookNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrWebhookNotExist checks if an error is a ErrWebhookNotExist.
|
||||||
func IsErrWebhookNotExist(err error) bool {
|
func IsErrWebhookNotExist(err error) bool {
|
||||||
_, ok := err.(ErrWebhookNotExist)
|
_, ok := err.(ErrWebhookNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -478,12 +539,14 @@ func (err ErrWebhookNotExist) Error() string {
|
||||||
// |___/____ >____ >____/ \___ >
|
// |___/____ >____ >____/ \___ >
|
||||||
// \/ \/ \/
|
// \/ \/ \/
|
||||||
|
|
||||||
|
// ErrIssueNotExist represents a "IssueNotExist" kind of error.
|
||||||
type ErrIssueNotExist struct {
|
type ErrIssueNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
RepoID int64
|
RepoID int64
|
||||||
Index int64
|
Index int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrIssueNotExist checks if an error is a ErrIssueNotExist.
|
||||||
func IsErrIssueNotExist(err error) bool {
|
func IsErrIssueNotExist(err error) bool {
|
||||||
_, ok := err.(ErrIssueNotExist)
|
_, ok := err.(ErrIssueNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -500,6 +563,7 @@ func (err ErrIssueNotExist) Error() string {
|
||||||
// |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__|
|
// |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__|
|
||||||
// \/ \/ |__| \/ \/
|
// \/ \/ |__| \/ \/
|
||||||
|
|
||||||
|
// ErrPullRequestNotExist represents a "PullRequestNotExist" kind of error.
|
||||||
type ErrPullRequestNotExist struct {
|
type ErrPullRequestNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
IssueID int64
|
IssueID int64
|
||||||
|
@ -509,6 +573,7 @@ type ErrPullRequestNotExist struct {
|
||||||
BaseBranch string
|
BaseBranch string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrPullRequestNotExist checks if an error is a ErrPullRequestNotExist.
|
||||||
func IsErrPullRequestNotExist(err error) bool {
|
func IsErrPullRequestNotExist(err error) bool {
|
||||||
_, ok := err.(ErrPullRequestNotExist)
|
_, ok := err.(ErrPullRequestNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -526,11 +591,13 @@ func (err ErrPullRequestNotExist) Error() string {
|
||||||
// \______ /\____/|__|_| /__|_| /\___ >___| /__|
|
// \______ /\____/|__|_| /__|_| /\___ >___| /__|
|
||||||
// \/ \/ \/ \/ \/
|
// \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrCommentNotExist represents a "CommentNotExist" kind of error.
|
||||||
type ErrCommentNotExist struct {
|
type ErrCommentNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
IssueID int64
|
IssueID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrCommentNotExist checks if an error is a ErrCommentNotExist.
|
||||||
func IsErrCommentNotExist(err error) bool {
|
func IsErrCommentNotExist(err error) bool {
|
||||||
_, ok := err.(ErrCommentNotExist)
|
_, ok := err.(ErrCommentNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -547,11 +614,13 @@ func (err ErrCommentNotExist) Error() string {
|
||||||
// |_______ (____ /___ /\___ >____/
|
// |_______ (____ /___ /\___ >____/
|
||||||
// \/ \/ \/ \/
|
// \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrLabelNotExist represents a "LabelNotExist" kind of error.
|
||||||
type ErrLabelNotExist struct {
|
type ErrLabelNotExist struct {
|
||||||
LabelID int64
|
LabelID int64
|
||||||
RepoID int64
|
RepoID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrLabelNotExist checks if an error is a ErrLabelNotExist.
|
||||||
func IsErrLabelNotExist(err error) bool {
|
func IsErrLabelNotExist(err error) bool {
|
||||||
_, ok := err.(ErrLabelNotExist)
|
_, ok := err.(ErrLabelNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -568,11 +637,13 @@ func (err ErrLabelNotExist) Error() string {
|
||||||
// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
|
// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
|
||||||
// \/ \/ \/ \/ \/
|
// \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrMilestoneNotExist represents a "MilestoneNotExist" kind of error.
|
||||||
type ErrMilestoneNotExist struct {
|
type ErrMilestoneNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
RepoID int64
|
RepoID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrMilestoneNotExist checks if an error is a ErrMilestoneNotExist.
|
||||||
func IsErrMilestoneNotExist(err error) bool {
|
func IsErrMilestoneNotExist(err error) bool {
|
||||||
_, ok := err.(ErrMilestoneNotExist)
|
_, ok := err.(ErrMilestoneNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -589,11 +660,13 @@ func (err ErrMilestoneNotExist) Error() string {
|
||||||
// \____|__ /__| |__| (____ /\___ >___| /__|_| /\___ >___| /__|
|
// \____|__ /__| |__| (____ /\___ >___| /__|_| /\___ >___| /__|
|
||||||
// \/ \/ \/ \/ \/ \/ \/
|
// \/ \/ \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrAttachmentNotExist represents a "AttachmentNotExist" kind of error.
|
||||||
type ErrAttachmentNotExist struct {
|
type ErrAttachmentNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
UUID string
|
UUID string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrAttachmentNotExist checks if an error is a ErrAttachmentNotExist.
|
||||||
func IsErrAttachmentNotExist(err error) bool {
|
func IsErrAttachmentNotExist(err error) bool {
|
||||||
_, ok := err.(ErrAttachmentNotExist)
|
_, ok := err.(ErrAttachmentNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -610,10 +683,12 @@ func (err ErrAttachmentNotExist) Error() string {
|
||||||
// |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ >
|
// |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ >
|
||||||
// \/ /_____/ \/ \/ \/ \/
|
// \/ /_____/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
// ErrLoginSourceNotExist represents a "LoginSourceNotExist" kind of error.
|
||||||
type ErrLoginSourceNotExist struct {
|
type ErrLoginSourceNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrLoginSourceNotExist checks if an error is a ErrLoginSourceNotExist.
|
||||||
func IsErrLoginSourceNotExist(err error) bool {
|
func IsErrLoginSourceNotExist(err error) bool {
|
||||||
_, ok := err.(ErrLoginSourceNotExist)
|
_, ok := err.(ErrLoginSourceNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -623,10 +698,12 @@ func (err ErrLoginSourceNotExist) Error() string {
|
||||||
return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
|
return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrLoginSourceAlreadyExist represents a "LoginSourceAlreadyExist" kind of error.
|
||||||
type ErrLoginSourceAlreadyExist struct {
|
type ErrLoginSourceAlreadyExist struct {
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrLoginSourceAlreadyExist checks if an error is a ErrLoginSourceAlreadyExist.
|
||||||
func IsErrLoginSourceAlreadyExist(err error) bool {
|
func IsErrLoginSourceAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrLoginSourceAlreadyExist)
|
_, ok := err.(ErrLoginSourceAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -636,10 +713,12 @@ func (err ErrLoginSourceAlreadyExist) Error() string {
|
||||||
return fmt.Sprintf("login source already exists [name: %s]", err.Name)
|
return fmt.Sprintf("login source already exists [name: %s]", err.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ErrLoginSourceInUse represents a "LoginSourceInUse" kind of error.
|
||||||
type ErrLoginSourceInUse struct {
|
type ErrLoginSourceInUse struct {
|
||||||
ID int64
|
ID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrLoginSourceInUse checks if an error is a ErrLoginSourceInUse.
|
||||||
func IsErrLoginSourceInUse(err error) bool {
|
func IsErrLoginSourceInUse(err error) bool {
|
||||||
_, ok := err.(ErrLoginSourceInUse)
|
_, ok := err.(ErrLoginSourceInUse)
|
||||||
return ok
|
return ok
|
||||||
|
@ -656,11 +735,13 @@ func (err ErrLoginSourceInUse) Error() string {
|
||||||
// |____| \___ >____ /__|_| /
|
// |____| \___ >____ /__|_| /
|
||||||
// \/ \/ \/
|
// \/ \/ \/
|
||||||
|
|
||||||
|
// ErrTeamAlreadyExist represents a "TeamAlreadyExist" kind of error.
|
||||||
type ErrTeamAlreadyExist struct {
|
type ErrTeamAlreadyExist struct {
|
||||||
OrgID int64
|
OrgID int64
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrTeamAlreadyExist checks if an error is a ErrTeamAlreadyExist.
|
||||||
func IsErrTeamAlreadyExist(err error) bool {
|
func IsErrTeamAlreadyExist(err error) bool {
|
||||||
_, ok := err.(ErrTeamAlreadyExist)
|
_, ok := err.(ErrTeamAlreadyExist)
|
||||||
return ok
|
return ok
|
||||||
|
@ -678,11 +759,13 @@ func (err ErrTeamAlreadyExist) Error() string {
|
||||||
// |__| \/ \/
|
// |__| \/ \/
|
||||||
//
|
//
|
||||||
|
|
||||||
|
// ErrUploadNotExist represents a "UploadNotExist" kind of error.
|
||||||
type ErrUploadNotExist struct {
|
type ErrUploadNotExist struct {
|
||||||
ID int64
|
ID int64
|
||||||
UUID string
|
UUID string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsErrUploadNotExist checks if an error is a ErrUploadNotExist.
|
||||||
func IsErrUploadNotExist(err error) bool {
|
func IsErrUploadNotExist(err error) bool {
|
||||||
_, ok := err.(ErrAttachmentNotExist)
|
_, ok := err.(ErrAttachmentNotExist)
|
||||||
return ok
|
return ok
|
||||||
|
|
Loading…
Reference in a new issue