2015-03-16 13:34:27 +05:30
|
|
|
// Copyright 2015 The Gogs 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 models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrNameReserved represents a "reserved name" error.
|
2015-03-27 02:41:47 +05:30
|
|
|
type ErrNameReserved struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrNameReserved checks if an error is a ErrNameReserved.
|
2015-03-27 02:41:47 +05:30
|
|
|
func IsErrNameReserved(err error) bool {
|
|
|
|
_, ok := err.(ErrNameReserved)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrNameReserved) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("name is reserved [name: %s]", err.Name)
|
2015-03-27 02:41:47 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrNamePatternNotAllowed represents a "pattern not allowed" error.
|
2015-03-27 02:41:47 +05:30
|
|
|
type ErrNamePatternNotAllowed struct {
|
|
|
|
Pattern string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrNamePatternNotAllowed checks if an error is an
|
|
|
|
// ErrNamePatternNotAllowed.
|
2015-03-27 02:41:47 +05:30
|
|
|
func IsErrNamePatternNotAllowed(err error) bool {
|
|
|
|
_, ok := err.(ErrNamePatternNotAllowed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrNamePatternNotAllowed) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("name pattern is not allowed [pattern: %s]", err.Pattern)
|
2015-03-27 02:41:47 +05:30
|
|
|
}
|
|
|
|
|
2015-03-18 07:21:39 +05:30
|
|
|
// ____ ___
|
|
|
|
// | | \______ ___________
|
|
|
|
// | | / ___// __ \_ __ \
|
|
|
|
// | | /\___ \\ ___/| | \/
|
|
|
|
// |______//____ >\___ >__|
|
|
|
|
// \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrUserAlreadyExist represents a "user already exists" error.
|
2015-03-27 02:41:47 +05:30
|
|
|
type ErrUserAlreadyExist struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrUserAlreadyExist checks if an error is a ErrUserAlreadyExists.
|
2015-03-27 02:41:47 +05:30
|
|
|
func IsErrUserAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUserAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserAlreadyExist) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("user already exists [name: %s]", err.Name)
|
2015-03-27 02:41:47 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrUserNotExist represents a "UserNotExist" kind of error.
|
2015-08-05 08:44:17 +05:30
|
|
|
type ErrUserNotExist struct {
|
2016-11-12 04:31:09 +05:30
|
|
|
UID int64
|
|
|
|
Name string
|
|
|
|
KeyID int64
|
2015-08-05 08:44:17 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrUserNotExist checks if an error is a ErrUserNotExist.
|
2015-08-05 08:44:17 +05:30
|
|
|
func IsErrUserNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUserNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserNotExist) Error() string {
|
2016-11-12 04:31:09 +05:30
|
|
|
return fmt.Sprintf("user does not exist [uid: %d, name: %s, keyid: %d]", err.UID, err.Name, err.KeyID)
|
2015-08-05 08:44:17 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrEmailAlreadyUsed represents a "EmailAlreadyUsed" kind of error.
|
2015-03-27 02:41:47 +05:30
|
|
|
type ErrEmailAlreadyUsed struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrEmailAlreadyUsed checks if an error is a ErrEmailAlreadyUsed.
|
2015-03-27 02:41:47 +05:30
|
|
|
func IsErrEmailAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrEmailAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrEmailAlreadyUsed) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("e-mail has been used [email: %s]", err.Email)
|
2015-03-27 02:41:47 +05:30
|
|
|
}
|
|
|
|
|
2017-03-17 19:46:08 +05:30
|
|
|
// ErrOpenIDAlreadyUsed represents a "OpenIDAlreadyUsed" kind of error.
|
|
|
|
type ErrOpenIDAlreadyUsed struct {
|
|
|
|
OpenID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrOpenIDAlreadyUsed checks if an error is a ErrOpenIDAlreadyUsed.
|
|
|
|
func IsErrOpenIDAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrOpenIDAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrOpenIDAlreadyUsed) Error() string {
|
|
|
|
return fmt.Sprintf("OpenID has been used [oid: %s]", err.OpenID)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrUserOwnRepos represents a "UserOwnRepos" kind of error.
|
2015-03-18 07:21:39 +05:30
|
|
|
type ErrUserOwnRepos struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrUserOwnRepos checks if an error is a ErrUserOwnRepos.
|
2015-03-18 07:21:39 +05:30
|
|
|
func IsErrUserOwnRepos(err error) bool {
|
|
|
|
_, ok := err.(ErrUserOwnRepos)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserOwnRepos) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID)
|
2015-03-18 07:21:39 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrUserHasOrgs represents a "UserHasOrgs" kind of error.
|
2015-03-18 07:21:39 +05:30
|
|
|
type ErrUserHasOrgs struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrUserHasOrgs checks if an error is a ErrUserHasOrgs.
|
2015-03-18 07:21:39 +05:30
|
|
|
func IsErrUserHasOrgs(err error) bool {
|
|
|
|
_, ok := err.(ErrUserHasOrgs)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserHasOrgs) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID)
|
2015-03-18 07:21:39 +05:30
|
|
|
}
|
|
|
|
|
2016-12-31 08:03:30 +05:30
|
|
|
// ErrUserNotAllowedCreateOrg represents a "UserNotAllowedCreateOrg" kind of error.
|
|
|
|
type ErrUserNotAllowedCreateOrg struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrUserNotAllowedCreateOrg checks if an error is an ErrUserNotAllowedCreateOrg.
|
|
|
|
func IsErrUserNotAllowedCreateOrg(err error) bool {
|
|
|
|
_, ok := err.(ErrUserNotAllowedCreateOrg)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserNotAllowedCreateOrg) Error() string {
|
|
|
|
return fmt.Sprintf("user is not allowed to create organizations")
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrReachLimitOfRepo represents a "ReachLimitOfRepo" kind of error.
|
2015-12-10 23:07:53 +05:30
|
|
|
type ErrReachLimitOfRepo struct {
|
|
|
|
Limit int
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrReachLimitOfRepo checks if an error is a ErrReachLimitOfRepo.
|
2015-12-10 23:07:53 +05:30
|
|
|
func IsErrReachLimitOfRepo(err error) bool {
|
|
|
|
_, ok := err.(ErrReachLimitOfRepo)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrReachLimitOfRepo) Error() string {
|
|
|
|
return fmt.Sprintf("user has reached maximum limit of repositories [limit: %d]", err.Limit)
|
|
|
|
}
|
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
// __ __.__ __ .__
|
|
|
|
// / \ / \__| | _|__|
|
|
|
|
// \ \/\/ / | |/ / |
|
|
|
|
// \ /| | <| |
|
|
|
|
// \__/\ / |__|__|_ \__|
|
|
|
|
// \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrWikiAlreadyExist represents a "WikiAlreadyExist" kind of error.
|
2015-11-27 12:20:38 +05:30
|
|
|
type ErrWikiAlreadyExist struct {
|
|
|
|
Title string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrWikiAlreadyExist checks if an error is a ErrWikiAlreadyExist.
|
2015-11-27 12:20:38 +05:30
|
|
|
func IsErrWikiAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrWikiAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrWikiAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("wiki page already exists [title: %s]", err.Title)
|
|
|
|
}
|
|
|
|
|
2015-08-06 20:18:11 +05:30
|
|
|
// __________ ___. .__ .__ ____ __.
|
|
|
|
// \______ \__ _\_ |__ | | |__| ____ | |/ _|____ ___.__.
|
|
|
|
// | ___/ | \ __ \| | | |/ ___\ | <_/ __ < | |
|
|
|
|
// | | | | / \_\ \ |_| \ \___ | | \ ___/\___ |
|
|
|
|
// |____| |____/|___ /____/__|\___ > |____|__ \___ > ____|
|
|
|
|
// \/ \/ \/ \/\/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrKeyUnableVerify represents a "KeyUnableVerify" kind of error.
|
2015-11-19 07:51:47 +05:30
|
|
|
type ErrKeyUnableVerify struct {
|
|
|
|
Result string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrKeyUnableVerify checks if an error is a ErrKeyUnableVerify.
|
2015-11-19 07:51:47 +05:30
|
|
|
func IsErrKeyUnableVerify(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyUnableVerify)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyUnableVerify) Error() string {
|
|
|
|
return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrKeyNotExist represents a "KeyNotExist" kind of error.
|
2015-08-06 20:18:11 +05:30
|
|
|
type ErrKeyNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrKeyNotExist checks if an error is a ErrKeyNotExist.
|
2015-08-06 20:18:11 +05:30
|
|
|
func IsErrKeyNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyNotExist) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("public key does not exist [id: %d]", err.ID)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrKeyAlreadyExist represents a "KeyAlreadyExist" kind of error.
|
2015-08-06 20:18:11 +05:30
|
|
|
type ErrKeyAlreadyExist struct {
|
2017-02-14 11:42:52 +05:30
|
|
|
OwnerID int64
|
|
|
|
Fingerprint string
|
|
|
|
Content string
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrKeyAlreadyExist checks if an error is a ErrKeyAlreadyExist.
|
2015-08-06 20:18:11 +05:30
|
|
|
func IsErrKeyAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyAlreadyExist) Error() string {
|
2017-02-14 11:42:52 +05:30
|
|
|
return fmt.Sprintf("public key already exists [owner_id: %d, finter_print: %s, content: %s]",
|
|
|
|
err.OwnerID, err.Fingerprint, err.Content)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrKeyNameAlreadyUsed represents a "KeyNameAlreadyUsed" kind of error.
|
2015-08-06 20:18:11 +05:30
|
|
|
type ErrKeyNameAlreadyUsed struct {
|
|
|
|
OwnerID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrKeyNameAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
|
2015-08-06 20:18:11 +05:30
|
|
|
func IsErrKeyNameAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyNameAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyNameAlreadyUsed) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2017-04-26 18:40:43 +05:30
|
|
|
// ErrGPGEmailNotFound represents a "ErrGPGEmailNotFound" kind of error.
|
|
|
|
type ErrGPGEmailNotFound struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrGPGEmailNotFound checks if an error is a ErrGPGEmailNotFound.
|
|
|
|
func IsErrGPGEmailNotFound(err error) bool {
|
|
|
|
_, ok := err.(ErrGPGEmailNotFound)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrGPGEmailNotFound) Error() string {
|
|
|
|
return fmt.Sprintf("failed to found email or is not confirmed : %s", err.Email)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrGPGKeyParsing represents a "ErrGPGKeyParsing" kind of error.
|
|
|
|
type ErrGPGKeyParsing struct {
|
|
|
|
ParseError error
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrGPGKeyParsing checks if an error is a ErrGPGKeyParsing.
|
|
|
|
func IsErrGPGKeyParsing(err error) bool {
|
|
|
|
_, ok := err.(ErrGPGKeyParsing)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrGPGKeyParsing) Error() string {
|
|
|
|
return fmt.Sprintf("failed to parse gpg key %s", err.ParseError.Error())
|
|
|
|
}
|
|
|
|
|
2017-03-16 06:57:35 +05:30
|
|
|
// ErrGPGKeyNotExist represents a "GPGKeyNotExist" kind of error.
|
|
|
|
type ErrGPGKeyNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrGPGKeyNotExist checks if an error is a ErrGPGKeyNotExist.
|
|
|
|
func IsErrGPGKeyNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrGPGKeyNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrGPGKeyNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("public gpg key does not exist [id: %d]", err.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrGPGKeyIDAlreadyUsed represents a "GPGKeyIDAlreadyUsed" kind of error.
|
|
|
|
type ErrGPGKeyIDAlreadyUsed struct {
|
|
|
|
KeyID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrGPGKeyIDAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
|
|
|
|
func IsErrGPGKeyIDAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrGPGKeyIDAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrGPGKeyIDAlreadyUsed) Error() string {
|
|
|
|
return fmt.Sprintf("public key already exists [key_id: %s]", err.KeyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrGPGKeyAccessDenied represents a "GPGKeyAccessDenied" kind of Error.
|
|
|
|
type ErrGPGKeyAccessDenied struct {
|
|
|
|
UserID int64
|
|
|
|
KeyID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrGPGKeyAccessDenied checks if an error is a ErrGPGKeyAccessDenied.
|
|
|
|
func IsErrGPGKeyAccessDenied(err error) bool {
|
|
|
|
_, ok := err.(ErrGPGKeyAccessDenied)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error pretty-prints an error of type ErrGPGKeyAccessDenied.
|
|
|
|
func (err ErrGPGKeyAccessDenied) Error() string {
|
|
|
|
return fmt.Sprintf("user does not have access to the key [user_id: %d, key_id: %d]",
|
|
|
|
err.UserID, err.KeyID)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrKeyAccessDenied represents a "KeyAccessDenied" kind of error.
|
2015-12-03 10:54:37 +05:30
|
|
|
type ErrKeyAccessDenied struct {
|
|
|
|
UserID int64
|
|
|
|
KeyID int64
|
|
|
|
Note string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrKeyAccessDenied checks if an error is a ErrKeyAccessDenied.
|
2015-12-03 10:54:37 +05:30
|
|
|
func IsErrKeyAccessDenied(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyAccessDenied)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyAccessDenied) Error() string {
|
|
|
|
return fmt.Sprintf("user does not have access to the key [user_id: %d, key_id: %d, note: %s]",
|
|
|
|
err.UserID, err.KeyID, err.Note)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrDeployKeyNotExist represents a "DeployKeyNotExist" kind of error.
|
2015-11-19 07:51:47 +05:30
|
|
|
type ErrDeployKeyNotExist struct {
|
|
|
|
ID int64
|
|
|
|
KeyID int64
|
|
|
|
RepoID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrDeployKeyNotExist checks if an error is a ErrDeployKeyNotExist.
|
2015-11-19 07:51:47 +05:30
|
|
|
func IsErrDeployKeyNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrDeployKeyNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrDeployKeyAlreadyExist represents a "DeployKeyAlreadyExist" kind of error.
|
2015-08-06 20:18:11 +05:30
|
|
|
type ErrDeployKeyAlreadyExist struct {
|
|
|
|
KeyID int64
|
|
|
|
RepoID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrDeployKeyAlreadyExist checks if an error is a ErrDeployKeyAlreadyExist.
|
2015-08-06 20:18:11 +05:30
|
|
|
func IsErrDeployKeyAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrDeployKeyAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrDeployKeyAlreadyExist) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrDeployKeyNameAlreadyUsed represents a "DeployKeyNameAlreadyUsed" kind of error.
|
2015-08-06 20:18:11 +05:30
|
|
|
type ErrDeployKeyNameAlreadyUsed struct {
|
|
|
|
RepoID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrDeployKeyNameAlreadyUsed checks if an error is a ErrDeployKeyNameAlreadyUsed.
|
2015-08-06 20:18:11 +05:30
|
|
|
func IsErrDeployKeyNameAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrDeployKeyNameAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrDeployKeyNameAlreadyUsed) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name)
|
2015-08-06 20:18:11 +05:30
|
|
|
}
|
|
|
|
|
2015-09-02 12:10:15 +05:30
|
|
|
// _____ ___________ __
|
|
|
|
// / _ \ ____ ____ ____ ______ _____\__ ___/___ | | __ ____ ____
|
|
|
|
// / /_\ \_/ ___\/ ___\/ __ \ / ___// ___/ | | / _ \| |/ // __ \ / \
|
|
|
|
// / | \ \__\ \__\ ___/ \___ \ \___ \ | |( <_> ) <\ ___/| | \
|
|
|
|
// \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| /
|
|
|
|
// \/ \/ \/ \/ \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrAccessTokenNotExist represents a "AccessTokenNotExist" kind of error.
|
2015-09-02 12:10:15 +05:30
|
|
|
type ErrAccessTokenNotExist struct {
|
|
|
|
SHA string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrAccessTokenNotExist checks if an error is a ErrAccessTokenNotExist.
|
2015-09-02 12:10:15 +05:30
|
|
|
func IsErrAccessTokenNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrAccessTokenNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrAccessTokenNotExist) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA)
|
2015-09-02 12:10:15 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrAccessTokenEmpty represents a "AccessTokenEmpty" kind of error.
|
2016-06-27 14:32:39 +05:30
|
|
|
type ErrAccessTokenEmpty struct {
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrAccessTokenEmpty checks if an error is a ErrAccessTokenEmpty.
|
2016-06-27 14:32:39 +05:30
|
|
|
func IsErrAccessTokenEmpty(err error) bool {
|
|
|
|
_, ok := err.(ErrAccessTokenEmpty)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrAccessTokenEmpty) Error() string {
|
|
|
|
return fmt.Sprintf("access token is empty")
|
|
|
|
}
|
|
|
|
|
2015-03-18 07:21:39 +05:30
|
|
|
// ________ .__ __ .__
|
|
|
|
// \_____ \_______ _________ ____ |__|____________ _/ |_|__| ____ ____
|
|
|
|
// / | \_ __ \/ ___\__ \ / \| \___ /\__ \\ __\ |/ _ \ / \
|
|
|
|
// / | \ | \/ /_/ > __ \| | \ |/ / / __ \| | | ( <_> ) | \
|
|
|
|
// \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
|
|
|
|
// \/ /_____/ \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrLastOrgOwner represents a "LastOrgOwner" kind of error.
|
2015-03-18 07:21:39 +05:30
|
|
|
type ErrLastOrgOwner struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrLastOrgOwner checks if an error is a ErrLastOrgOwner.
|
2015-03-18 07:21:39 +05:30
|
|
|
func IsErrLastOrgOwner(err error) bool {
|
|
|
|
_, ok := err.(ErrLastOrgOwner)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrLastOrgOwner) Error() string {
|
2015-11-04 05:10:52 +05:30
|
|
|
return fmt.Sprintf("user is the last member of owner team [uid: %d]", err.UID)
|
2015-03-18 07:21:39 +05:30
|
|
|
}
|
|
|
|
|
2015-03-16 13:34:27 +05:30
|
|
|
// __________ .__ __
|
|
|
|
// \______ \ ____ ______ ____ _____|__|/ |_ ___________ ___.__.
|
|
|
|
// | _// __ \\____ \ / _ \/ ___/ \ __\/ _ \_ __ < | |
|
|
|
|
// | | \ ___/| |_> > <_> )___ \| || | ( <_> ) | \/\___ |
|
|
|
|
// |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____|
|
|
|
|
// \/ \/|__| \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrRepoNotExist represents a "RepoNotExist" kind of error.
|
2015-03-16 13:34:27 +05:30
|
|
|
type ErrRepoNotExist struct {
|
|
|
|
ID int64
|
|
|
|
UID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrRepoNotExist checks if an error is a ErrRepoNotExist.
|
2015-03-16 13:34:27 +05:30
|
|
|
func IsErrRepoNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name)
|
|
|
|
}
|
2015-08-05 15:56:18 +05:30
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrRepoAlreadyExist represents a "RepoAlreadyExist" kind of error.
|
2015-08-08 14:40:34 +05:30
|
|
|
type ErrRepoAlreadyExist struct {
|
|
|
|
Uname string
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrRepoAlreadyExist checks if an error is a ErrRepoAlreadyExist.
|
2015-08-08 14:40:34 +05:30
|
|
|
func IsErrRepoAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoAlreadyExist) Error() string {
|
2015-08-27 20:36:14 +05:30
|
|
|
return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name)
|
|
|
|
}
|
|
|
|
|
2017-02-05 20:05:03 +05:30
|
|
|
// ErrRepoRedirectNotExist represents a "RepoRedirectNotExist" kind of error.
|
|
|
|
type ErrRepoRedirectNotExist struct {
|
2017-02-14 07:42:03 +05:30
|
|
|
OwnerID int64
|
2017-02-05 20:05:03 +05:30
|
|
|
RepoName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrRepoRedirectNotExist check if an error is an ErrRepoRedirectNotExist
|
|
|
|
func IsErrRepoRedirectNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoRedirectNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoRedirectNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("repository redirect does not exist [uid: %d, name: %s]", err.OwnerID, err.RepoName)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrInvalidCloneAddr represents a "InvalidCloneAddr" kind of error.
|
2015-11-04 05:10:52 +05:30
|
|
|
type ErrInvalidCloneAddr struct {
|
|
|
|
IsURLError bool
|
|
|
|
IsInvalidPath bool
|
|
|
|
IsPermissionDenied bool
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrInvalidCloneAddr checks if an error is a ErrInvalidCloneAddr.
|
2015-11-04 05:10:52 +05:30
|
|
|
func IsErrInvalidCloneAddr(err error) bool {
|
|
|
|
_, ok := err.(ErrInvalidCloneAddr)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrInvalidCloneAddr) Error() string {
|
|
|
|
return fmt.Sprintf("invalid clone address [is_url_error: %v, is_invalid_path: %v, is_permission_denied: %v]",
|
|
|
|
err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrUpdateTaskNotExist represents a "UpdateTaskNotExist" kind of error.
|
2015-11-05 08:27:10 +05:30
|
|
|
type ErrUpdateTaskNotExist struct {
|
|
|
|
UUID string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrUpdateTaskNotExist checks if an error is a ErrUpdateTaskNotExist.
|
2015-11-05 08:27:10 +05:30
|
|
|
func IsErrUpdateTaskNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUpdateTaskNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUpdateTaskNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrReleaseAlreadyExist represents a "ReleaseAlreadyExist" kind of error.
|
2015-11-16 10:22:46 +05:30
|
|
|
type ErrReleaseAlreadyExist struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrReleaseAlreadyExist checks if an error is a ErrReleaseAlreadyExist.
|
2015-11-16 10:22:46 +05:30
|
|
|
func IsErrReleaseAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrReleaseAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrReleaseAlreadyExist) Error() string {
|
2016-07-23 13:29:19 +05:30
|
|
|
return fmt.Sprintf("release tag already exist [tag_name: %s]", err.TagName)
|
2015-11-16 10:22:46 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrReleaseNotExist represents a "ReleaseNotExist" kind of error.
|
2015-11-16 10:22:46 +05:30
|
|
|
type ErrReleaseNotExist struct {
|
2015-11-20 13:08:41 +05:30
|
|
|
ID int64
|
2015-11-16 10:22:46 +05:30
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrReleaseNotExist checks if an error is a ErrReleaseNotExist.
|
2015-11-16 10:22:46 +05:30
|
|
|
func IsErrReleaseNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrReleaseNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrReleaseNotExist) Error() string {
|
2016-07-23 13:29:19 +05:30
|
|
|
return fmt.Sprintf("release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrInvalidTagName represents a "InvalidTagName" kind of error.
|
2016-07-23 13:29:19 +05:30
|
|
|
type ErrInvalidTagName struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrInvalidTagName checks if an error is a ErrInvalidTagName.
|
2016-07-23 13:29:19 +05:30
|
|
|
func IsErrInvalidTagName(err error) bool {
|
|
|
|
_, ok := err.(ErrInvalidTagName)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrInvalidTagName) Error() string {
|
|
|
|
return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName)
|
2015-11-16 10:22:46 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrRepoFileAlreadyExist represents a "RepoFileAlreadyExist" kind of error.
|
2016-08-11 18:18:08 +05:30
|
|
|
type ErrRepoFileAlreadyExist struct {
|
|
|
|
FileName string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrRepoFileAlreadyExist checks if an error is a ErrRepoFileAlreadyExist.
|
2016-08-11 18:18:08 +05:30
|
|
|
func IsErrRepoFileAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoFileAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoFileAlreadyExist) Error() string {
|
2016-08-12 14:59:29 +05:30
|
|
|
return fmt.Sprintf("repository file already exists [file_name: %s]", err.FileName)
|
2016-08-11 18:18:08 +05:30
|
|
|
}
|
|
|
|
|
2016-02-03 03:37:40 +05:30
|
|
|
// __________ .__
|
|
|
|
// \______ \____________ ____ ____ | |__
|
|
|
|
// | | _/\_ __ \__ \ / \_/ ___\| | \
|
|
|
|
// | | \ | | \// __ \| | \ \___| Y \
|
|
|
|
// |______ / |__| (____ /___| /\___ >___| /
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrBranchNotExist represents a "BranchNotExist" kind of error.
|
2016-02-03 03:37:40 +05:30
|
|
|
type ErrBranchNotExist struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrBranchNotExist checks if an error is a ErrBranchNotExist.
|
2016-02-03 03:37:40 +05:30
|
|
|
func IsErrBranchNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrBranchNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrBranchNotExist) Error() string {
|
2016-07-23 13:29:19 +05:30
|
|
|
return fmt.Sprintf("branch does not exist [name: %s]", err.Name)
|
2016-02-03 03:37:40 +05:30
|
|
|
}
|
|
|
|
|
2015-08-27 20:36:14 +05:30
|
|
|
// __ __ ___. .__ __
|
|
|
|
// / \ / \ ____\_ |__ | |__ ____ ____ | | __
|
|
|
|
// \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ /
|
|
|
|
// \ /\ ___/| \_\ \ Y ( <_> | <_> ) <
|
|
|
|
// \__/\ / \___ >___ /___| /\____/ \____/|__|_ \
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrWebhookNotExist represents a "WebhookNotExist" kind of error.
|
2015-08-27 20:36:14 +05:30
|
|
|
type ErrWebhookNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrWebhookNotExist checks if an error is a ErrWebhookNotExist.
|
2015-08-27 20:36:14 +05:30
|
|
|
func IsErrWebhookNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrWebhookNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrWebhookNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("webhook does not exist [id: %d]", err.ID)
|
2015-08-08 14:40:34 +05:30
|
|
|
}
|
|
|
|
|
2015-08-12 14:34:23 +05:30
|
|
|
// .___
|
|
|
|
// | | ______ ________ __ ____
|
|
|
|
// | |/ ___// ___/ | \_/ __ \
|
|
|
|
// | |\___ \ \___ \| | /\ ___/
|
|
|
|
// |___/____ >____ >____/ \___ >
|
|
|
|
// \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrIssueNotExist represents a "IssueNotExist" kind of error.
|
2015-08-12 14:34:23 +05:30
|
|
|
type ErrIssueNotExist struct {
|
|
|
|
ID int64
|
|
|
|
RepoID int64
|
|
|
|
Index int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrIssueNotExist checks if an error is a ErrIssueNotExist.
|
2015-08-12 14:34:23 +05:30
|
|
|
func IsErrIssueNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrIssueNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrIssueNotExist) Error() string {
|
2015-08-20 02:01:28 +05:30
|
|
|
return fmt.Sprintf("issue does not exist [id: %d, repo_id: %d, index: %d]", err.ID, err.RepoID, err.Index)
|
|
|
|
}
|
|
|
|
|
2015-09-02 04:37:02 +05:30
|
|
|
// __________ .__ .__ __________ __
|
|
|
|
// \______ \__ __| | | |\______ \ ____ ________ __ ____ _______/ |_
|
|
|
|
// | ___/ | \ | | | | _// __ \/ ____/ | \_/ __ \ / ___/\ __\
|
|
|
|
// | | | | / |_| |_| | \ ___< <_| | | /\ ___/ \___ \ | |
|
|
|
|
// |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__|
|
|
|
|
// \/ \/ |__| \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrPullRequestNotExist represents a "PullRequestNotExist" kind of error.
|
2015-09-02 14:39:12 +05:30
|
|
|
type ErrPullRequestNotExist struct {
|
|
|
|
ID int64
|
2015-10-23 00:17:24 +05:30
|
|
|
IssueID int64
|
2015-09-02 14:39:12 +05:30
|
|
|
HeadRepoID int64
|
|
|
|
BaseRepoID int64
|
2017-01-05 06:20:34 +05:30
|
|
|
HeadBranch string
|
2015-09-02 14:39:12 +05:30
|
|
|
BaseBranch string
|
2015-09-02 04:37:02 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrPullRequestNotExist checks if an error is a ErrPullRequestNotExist.
|
2015-09-02 14:39:12 +05:30
|
|
|
func IsErrPullRequestNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrPullRequestNotExist)
|
2015-09-02 04:37:02 +05:30
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2015-09-02 14:39:12 +05:30
|
|
|
func (err ErrPullRequestNotExist) Error() string {
|
2015-10-23 00:17:24 +05:30
|
|
|
return fmt.Sprintf("pull request does not exist [id: %d, issue_id: %d, head_repo_id: %d, base_repo_id: %d, head_branch: %s, base_branch: %s]",
|
2017-01-05 06:20:34 +05:30
|
|
|
err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBranch, err.BaseBranch)
|
2015-09-02 04:37:02 +05:30
|
|
|
}
|
|
|
|
|
2016-12-02 16:40:39 +05:30
|
|
|
// ErrPullRequestAlreadyExists represents a "PullRequestAlreadyExists"-error
|
|
|
|
type ErrPullRequestAlreadyExists struct {
|
|
|
|
ID int64
|
|
|
|
IssueID int64
|
|
|
|
HeadRepoID int64
|
|
|
|
BaseRepoID int64
|
|
|
|
HeadBranch string
|
|
|
|
BaseBranch string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrPullRequestAlreadyExists checks if an error is a ErrPullRequestAlreadyExists.
|
|
|
|
func IsErrPullRequestAlreadyExists(err error) bool {
|
|
|
|
_, ok := err.(ErrPullRequestAlreadyExists)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error does pretty-printing :D
|
|
|
|
func (err ErrPullRequestAlreadyExists) Error() string {
|
|
|
|
return fmt.Sprintf("pull request already exists for these targets [id: %d, issue_id: %d, head_repo_id: %d, base_repo_id: %d, head_branch: %s, base_branch: %s]",
|
|
|
|
err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBranch, err.BaseBranch)
|
|
|
|
}
|
|
|
|
|
2015-08-20 02:01:28 +05:30
|
|
|
// _________ __
|
|
|
|
// \_ ___ \ ____ _____ _____ ____ _____/ |_
|
|
|
|
// / \ \/ / _ \ / \ / \_/ __ \ / \ __\
|
|
|
|
// \ \___( <_> ) Y Y \ Y Y \ ___/| | \ |
|
|
|
|
// \______ /\____/|__|_| /__|_| /\___ >___| /__|
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrCommentNotExist represents a "CommentNotExist" kind of error.
|
2015-08-20 02:01:28 +05:30
|
|
|
type ErrCommentNotExist struct {
|
2016-08-27 02:10:53 +05:30
|
|
|
ID int64
|
|
|
|
IssueID int64
|
2015-08-20 02:01:28 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrCommentNotExist checks if an error is a ErrCommentNotExist.
|
2015-08-20 02:01:28 +05:30
|
|
|
func IsErrCommentNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrCommentNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrCommentNotExist) Error() string {
|
2016-08-27 02:10:53 +05:30
|
|
|
return fmt.Sprintf("comment does not exist [id: %d, issue_id: %d]", err.ID, err.IssueID)
|
2015-08-12 14:34:23 +05:30
|
|
|
}
|
|
|
|
|
2015-08-10 12:12:50 +05:30
|
|
|
// .____ ___. .__
|
|
|
|
// | | _____ \_ |__ ____ | |
|
|
|
|
// | | \__ \ | __ \_/ __ \| |
|
|
|
|
// | |___ / __ \| \_\ \ ___/| |__
|
|
|
|
// |_______ (____ /___ /\___ >____/
|
|
|
|
// \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrLabelNotExist represents a "LabelNotExist" kind of error.
|
2015-08-10 12:12:50 +05:30
|
|
|
type ErrLabelNotExist struct {
|
2016-08-04 00:21:22 +05:30
|
|
|
LabelID int64
|
|
|
|
RepoID int64
|
2015-08-10 12:12:50 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrLabelNotExist checks if an error is a ErrLabelNotExist.
|
2015-08-10 12:12:50 +05:30
|
|
|
func IsErrLabelNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrLabelNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrLabelNotExist) Error() string {
|
2016-08-04 00:21:22 +05:30
|
|
|
return fmt.Sprintf("label does not exist [label_id: %d, repo_id: %d]", err.LabelID, err.RepoID)
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
|
2015-08-05 15:56:18 +05:30
|
|
|
// _____ .__.__ __
|
|
|
|
// / \ |__| | ____ _______/ |_ ____ ____ ____
|
|
|
|
// / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
|
|
|
|
// / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
|
|
|
|
// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrMilestoneNotExist represents a "MilestoneNotExist" kind of error.
|
2015-08-05 15:56:18 +05:30
|
|
|
type ErrMilestoneNotExist struct {
|
2015-08-10 16:27:57 +05:30
|
|
|
ID int64
|
|
|
|
RepoID int64
|
2015-08-05 15:56:18 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrMilestoneNotExist checks if an error is a ErrMilestoneNotExist.
|
2015-08-05 15:56:18 +05:30
|
|
|
func IsErrMilestoneNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrMilestoneNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrMilestoneNotExist) Error() string {
|
2015-08-10 16:27:57 +05:30
|
|
|
return fmt.Sprintf("milestone does not exist [id: %d, repo_id: %d]", err.ID, err.RepoID)
|
2015-08-05 15:56:18 +05:30
|
|
|
}
|
2015-08-11 20:54:40 +05:30
|
|
|
|
|
|
|
// _____ __ __ .__ __
|
|
|
|
// / _ \_/ |__/ |______ ____ | |__ _____ ____ _____/ |_
|
|
|
|
// / /_\ \ __\ __\__ \ _/ ___\| | \ / \_/ __ \ / \ __\
|
|
|
|
// / | \ | | | / __ \\ \___| Y \ Y Y \ ___/| | \ |
|
|
|
|
// \____|__ /__| |__| (____ /\___ >___| /__|_| /\___ >___| /__|
|
|
|
|
// \/ \/ \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrAttachmentNotExist represents a "AttachmentNotExist" kind of error.
|
2015-08-11 20:54:40 +05:30
|
|
|
type ErrAttachmentNotExist struct {
|
|
|
|
ID int64
|
|
|
|
UUID string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrAttachmentNotExist checks if an error is a ErrAttachmentNotExist.
|
2015-08-11 20:54:40 +05:30
|
|
|
func IsErrAttachmentNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrAttachmentNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrAttachmentNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
|
|
|
|
}
|
2015-12-06 03:43:13 +05:30
|
|
|
|
2016-08-31 13:26:10 +05:30
|
|
|
// .____ .__ _________
|
|
|
|
// | | ____ ____ |__| ____ / _____/ ____ __ _________ ____ ____
|
|
|
|
// | | / _ \ / ___\| |/ \ \_____ \ / _ \| | \_ __ \_/ ___\/ __ \
|
|
|
|
// | |__( <_> ) /_/ > | | \ / ( <_> ) | /| | \/\ \__\ ___/
|
|
|
|
// |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ >
|
|
|
|
// \/ /_____/ \/ \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrLoginSourceNotExist represents a "LoginSourceNotExist" kind of error.
|
2016-08-31 13:26:10 +05:30
|
|
|
type ErrLoginSourceNotExist struct {
|
2015-12-06 03:43:13 +05:30
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrLoginSourceNotExist checks if an error is a ErrLoginSourceNotExist.
|
2016-08-31 13:26:10 +05:30
|
|
|
func IsErrLoginSourceNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrLoginSourceNotExist)
|
2015-12-06 03:43:13 +05:30
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2016-08-31 13:26:10 +05:30
|
|
|
func (err ErrLoginSourceNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrLoginSourceAlreadyExist represents a "LoginSourceAlreadyExist" kind of error.
|
2016-08-31 13:26:10 +05:30
|
|
|
type ErrLoginSourceAlreadyExist struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrLoginSourceAlreadyExist checks if an error is a ErrLoginSourceAlreadyExist.
|
2016-08-31 13:26:10 +05:30
|
|
|
func IsErrLoginSourceAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrLoginSourceAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrLoginSourceAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("login source already exists [name: %s]", err.Name)
|
2016-01-30 03:36:14 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrLoginSourceInUse represents a "LoginSourceInUse" kind of error.
|
2016-08-31 13:52:41 +05:30
|
|
|
type ErrLoginSourceInUse struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrLoginSourceInUse checks if an error is a ErrLoginSourceInUse.
|
2016-08-31 13:52:41 +05:30
|
|
|
func IsErrLoginSourceInUse(err error) bool {
|
|
|
|
_, ok := err.(ErrLoginSourceInUse)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrLoginSourceInUse) Error() string {
|
|
|
|
return fmt.Sprintf("login source is still used by some users [id: %d]", err.ID)
|
|
|
|
}
|
|
|
|
|
2016-01-30 03:36:14 +05:30
|
|
|
// ___________
|
|
|
|
// \__ ___/___ _____ _____
|
|
|
|
// | |_/ __ \\__ \ / \
|
|
|
|
// | |\ ___/ / __ \| Y Y \
|
|
|
|
// |____| \___ >____ /__|_| /
|
|
|
|
// \/ \/ \/
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrTeamAlreadyExist represents a "TeamAlreadyExist" kind of error.
|
2016-01-30 03:36:14 +05:30
|
|
|
type ErrTeamAlreadyExist struct {
|
|
|
|
OrgID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrTeamAlreadyExist checks if an error is a ErrTeamAlreadyExist.
|
2016-01-30 03:36:14 +05:30
|
|
|
func IsErrTeamAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrTeamAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrTeamAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("team already exists [org_id: %d, name: %s]", err.OrgID, err.Name)
|
2015-12-06 03:43:13 +05:30
|
|
|
}
|
2016-08-11 18:18:08 +05:30
|
|
|
|
2017-01-16 07:44:29 +05:30
|
|
|
//
|
|
|
|
// Two-factor authentication
|
|
|
|
//
|
|
|
|
|
|
|
|
// ErrTwoFactorNotEnrolled indicates that a user is not enrolled in two-factor authentication.
|
|
|
|
type ErrTwoFactorNotEnrolled struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrTwoFactorNotEnrolled checks if an error is a ErrTwoFactorNotEnrolled.
|
|
|
|
func IsErrTwoFactorNotEnrolled(err error) bool {
|
|
|
|
_, ok := err.(ErrTwoFactorNotEnrolled)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrTwoFactorNotEnrolled) Error() string {
|
|
|
|
return fmt.Sprintf("user not enrolled in 2FA [uid: %d]", err.UID)
|
|
|
|
}
|
|
|
|
|
2016-08-11 18:18:08 +05:30
|
|
|
// ____ ___ .__ .___
|
|
|
|
// | | \______ | | _________ __| _/
|
|
|
|
// | | /\____ \| | / _ \__ \ / __ |
|
|
|
|
// | | / | |_> > |_( <_> ) __ \_/ /_/ |
|
|
|
|
// |______/ | __/|____/\____(____ /\____ |
|
|
|
|
// |__| \/ \/
|
|
|
|
//
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// ErrUploadNotExist represents a "UploadNotExist" kind of error.
|
2016-08-11 18:18:08 +05:30
|
|
|
type ErrUploadNotExist struct {
|
2016-08-30 17:37:50 +05:30
|
|
|
ID int64
|
|
|
|
UUID string
|
2016-08-11 18:18:08 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 13:50:28 +05:30
|
|
|
// IsErrUploadNotExist checks if an error is a ErrUploadNotExist.
|
2016-08-11 18:18:08 +05:30
|
|
|
func IsErrUploadNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrAttachmentNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUploadNotExist) Error() string {
|
2016-08-30 17:37:50 +05:30
|
|
|
return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
|
2016-08-11 18:18:08 +05:30
|
|
|
}
|
2017-02-22 12:44:37 +05:30
|
|
|
|
|
|
|
// ___________ __ .__ .____ .__ ____ ___
|
|
|
|
// \_ _____/__ ____/ |_ ___________ ____ _____ | | | | ____ ____ |__| ____ | | \______ ___________
|
|
|
|
// | __)_\ \/ /\ __\/ __ \_ __ \/ \\__ \ | | | | / _ \ / ___\| |/ \ | | / ___// __ \_ __ \
|
|
|
|
// | \> < | | \ ___/| | \/ | \/ __ \| |__ | |__( <_> ) /_/ > | | \ | | /\___ \\ ___/| | \/
|
|
|
|
// /_______ /__/\_ \ |__| \___ >__| |___| (____ /____/ |_______ \____/\___ /|__|___| / |______//____ >\___ >__|
|
|
|
|
// \/ \/ \/ \/ \/ \/ /_____/ \/ \/ \/
|
|
|
|
|
|
|
|
// ErrExternalLoginUserAlreadyExist represents a "ExternalLoginUserAlreadyExist" kind of error.
|
|
|
|
type ErrExternalLoginUserAlreadyExist struct {
|
|
|
|
ExternalID string
|
|
|
|
UserID int64
|
|
|
|
LoginSourceID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrExternalLoginUserAlreadyExist checks if an error is a ExternalLoginUserAlreadyExist.
|
|
|
|
func IsErrExternalLoginUserAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrExternalLoginUserAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrExternalLoginUserAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("external login user already exists [externalID: %s, userID: %d, loginSourceID: %d]", err.ExternalID, err.UserID, err.LoginSourceID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrExternalLoginUserNotExist represents a "ExternalLoginUserNotExist" kind of error.
|
|
|
|
type ErrExternalLoginUserNotExist struct {
|
|
|
|
UserID int64
|
|
|
|
LoginSourceID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrExternalLoginUserNotExist checks if an error is a ExternalLoginUserNotExist.
|
|
|
|
func IsErrExternalLoginUserNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrExternalLoginUserNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrExternalLoginUserNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("external login user link does not exists [userID: %d, loginSourceID: %d]", err.UserID, err.LoginSourceID)
|
|
|
|
}
|