2015-03-16 04:04:27 -04:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-04-17 12:06:35 -04:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-03-16 04:04:27 -04:00
|
|
|
|
|
|
|
package models
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2019-04-17 12:06:35 -04:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2022-10-18 01:50:37 -04:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-04-17 12:06:35 -04:00
|
|
|
)
|
2015-03-16 04:04:27 -04:00
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// ErrUserOwnRepos represents a "UserOwnRepos" kind of error.
|
2015-03-17 21:51:39 -04:00
|
|
|
type ErrUserOwnRepos struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// IsErrUserOwnRepos checks if an error is a ErrUserOwnRepos.
|
2015-03-17 21:51:39 -04:00
|
|
|
func IsErrUserOwnRepos(err error) bool {
|
|
|
|
_, ok := err.(ErrUserOwnRepos)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserOwnRepos) Error() string {
|
2015-11-03 18:40:52 -05:00
|
|
|
return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID)
|
2015-03-17 21:51:39 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// ErrUserHasOrgs represents a "UserHasOrgs" kind of error.
|
2015-03-17 21:51:39 -04:00
|
|
|
type ErrUserHasOrgs struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// IsErrUserHasOrgs checks if an error is a ErrUserHasOrgs.
|
2015-03-17 21:51:39 -04:00
|
|
|
func IsErrUserHasOrgs(err error) bool {
|
|
|
|
_, ok := err.(ErrUserHasOrgs)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserHasOrgs) Error() string {
|
2015-11-03 18:40:52 -05:00
|
|
|
return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID)
|
2015-03-17 21:51:39 -04:00
|
|
|
}
|
|
|
|
|
2022-03-30 04:42:47 -04:00
|
|
|
// ErrUserOwnPackages notifies that the user (still) owns the packages.
|
|
|
|
type ErrUserOwnPackages struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrUserOwnPackages checks if an error is an ErrUserOwnPackages.
|
|
|
|
func IsErrUserOwnPackages(err error) bool {
|
|
|
|
_, ok := err.(ErrUserOwnPackages)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserOwnPackages) Error() string {
|
|
|
|
return fmt.Sprintf("user still has ownership of packages [uid: %d]", err.UID)
|
|
|
|
}
|
|
|
|
|
2021-02-28 19:47:30 -05:00
|
|
|
// ErrNoPendingRepoTransfer is an error type for repositories without a pending
|
|
|
|
// transfer request
|
|
|
|
type ErrNoPendingRepoTransfer struct {
|
|
|
|
RepoID int64
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrNoPendingRepoTransfer) Error() string {
|
|
|
|
return fmt.Sprintf("repository doesn't have a pending transfer [repo_id: %d]", err.RepoID)
|
2021-02-28 19:47:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrNoPendingTransfer is an error type when a repository has no pending
|
|
|
|
// transfers
|
|
|
|
func IsErrNoPendingTransfer(err error) bool {
|
|
|
|
_, ok := err.(ErrNoPendingRepoTransfer)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrNoPendingRepoTransfer) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2021-02-28 19:47:30 -05:00
|
|
|
// ErrRepoTransferInProgress represents the state of a repository that has an
|
|
|
|
// ongoing transfer
|
|
|
|
type ErrRepoTransferInProgress struct {
|
|
|
|
Uname string
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrRepoTransferInProgress checks if an error is a ErrRepoTransferInProgress.
|
|
|
|
func IsErrRepoTransferInProgress(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoTransferInProgress)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoTransferInProgress) Error() string {
|
|
|
|
return fmt.Sprintf("repository is already being transferred [uname: %s, name: %s]", err.Uname, err.Name)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrRepoTransferInProgress) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// ErrInvalidCloneAddr represents a "InvalidCloneAddr" kind of error.
|
2015-11-03 18:40:52 -05:00
|
|
|
type ErrInvalidCloneAddr struct {
|
2021-03-15 17:52:11 -04:00
|
|
|
Host string
|
2015-11-03 18:40:52 -05:00
|
|
|
IsURLError bool
|
|
|
|
IsInvalidPath bool
|
2021-03-15 17:52:11 -04:00
|
|
|
IsProtocolInvalid bool
|
2015-11-03 18:40:52 -05:00
|
|
|
IsPermissionDenied bool
|
2021-03-15 17:52:11 -04:00
|
|
|
LocalPath bool
|
2015-11-03 18:40:52 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// IsErrInvalidCloneAddr checks if an error is a ErrInvalidCloneAddr.
|
2015-11-03 18:40:52 -05:00
|
|
|
func IsErrInvalidCloneAddr(err error) bool {
|
2021-03-15 17:52:11 -04:00
|
|
|
_, ok := err.(*ErrInvalidCloneAddr)
|
2015-11-03 18:40:52 -05:00
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2021-03-15 17:52:11 -04:00
|
|
|
func (err *ErrInvalidCloneAddr) Error() string {
|
|
|
|
if err.IsInvalidPath {
|
|
|
|
return fmt.Sprintf("migration/cloning from '%s' is not allowed: the provided path is invalid", err.Host)
|
|
|
|
}
|
|
|
|
if err.IsProtocolInvalid {
|
|
|
|
return fmt.Sprintf("migration/cloning from '%s' is not allowed: the provided url protocol is not allowed", err.Host)
|
|
|
|
}
|
|
|
|
if err.IsPermissionDenied {
|
|
|
|
return fmt.Sprintf("migration/cloning from '%s' is not allowed.", err.Host)
|
|
|
|
}
|
|
|
|
if err.IsURLError {
|
|
|
|
return fmt.Sprintf("migration/cloning from '%s' is not allowed: the provided url is invalid", err.Host)
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("migration/cloning from '%s' is not allowed", err.Host)
|
2015-11-03 18:40:52 -05:00
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err *ErrInvalidCloneAddr) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// ErrUpdateTaskNotExist represents a "UpdateTaskNotExist" kind of error.
|
2015-11-04 21:57:10 -05:00
|
|
|
type ErrUpdateTaskNotExist struct {
|
|
|
|
UUID string
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// IsErrUpdateTaskNotExist checks if an error is a ErrUpdateTaskNotExist.
|
2015-11-04 21:57:10 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrUpdateTaskNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// ErrInvalidTagName represents a "InvalidTagName" kind of error.
|
2016-07-23 03:59:19 -04:00
|
|
|
type ErrInvalidTagName struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
2016-11-24 03:20:28 -05:00
|
|
|
// IsErrInvalidTagName checks if an error is a ErrInvalidTagName.
|
2016-07-23 03:59:19 -04:00
|
|
|
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-15 23:52:46 -05:00
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrInvalidTagName) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2021-06-25 10:28:55 -04:00
|
|
|
// ErrProtectedTagName represents a "ProtectedTagName" kind of error.
|
|
|
|
type ErrProtectedTagName struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrProtectedTagName checks if an error is a ErrProtectedTagName.
|
|
|
|
func IsErrProtectedTagName(err error) bool {
|
|
|
|
_, ok := err.(ErrProtectedTagName)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrProtectedTagName) Error() string {
|
|
|
|
return fmt.Sprintf("release tag name is protected [tag_name: %s]", err.TagName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrProtectedTagName) Unwrap() error {
|
|
|
|
return util.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrRepoFileAlreadyExists represents a "RepoFileAlreadyExist" kind of error.
|
|
|
|
type ErrRepoFileAlreadyExists struct {
|
|
|
|
Path string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrRepoFileAlreadyExists checks if an error is a ErrRepoFileAlreadyExists.
|
|
|
|
func IsErrRepoFileAlreadyExists(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoFileAlreadyExists)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoFileAlreadyExists) Error() string {
|
|
|
|
return fmt.Sprintf("repository file already exists [path: %s]", err.Path)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrRepoFileAlreadyExists) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrRepoFileDoesNotExist represents a "RepoFileDoesNotExist" kind of error.
|
|
|
|
type ErrRepoFileDoesNotExist struct {
|
|
|
|
Path string
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrRepoFileDoesNotExist checks if an error is a ErrRepoDoesNotExist.
|
|
|
|
func IsErrRepoFileDoesNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoFileDoesNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoFileDoesNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("repository file does not exist [path: %s]", err.Path)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrRepoFileDoesNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrFilenameInvalid represents a "FilenameInvalid" kind of error.
|
|
|
|
type ErrFilenameInvalid struct {
|
|
|
|
Path string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrFilenameInvalid checks if an error is an ErrFilenameInvalid.
|
|
|
|
func IsErrFilenameInvalid(err error) bool {
|
|
|
|
_, ok := err.(ErrFilenameInvalid)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrFilenameInvalid) Error() string {
|
|
|
|
return fmt.Sprintf("path contains a malformed path component [path: %s]", err.Path)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrFilenameInvalid) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrUserCannotCommit represents "UserCannotCommit" kind of error.
|
|
|
|
type ErrUserCannotCommit struct {
|
|
|
|
UserName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrUserCannotCommit checks if an error is an ErrUserCannotCommit.
|
|
|
|
func IsErrUserCannotCommit(err error) bool {
|
|
|
|
_, ok := err.(ErrUserCannotCommit)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserCannotCommit) Error() string {
|
|
|
|
return fmt.Sprintf("user cannot commit to repo [user: %s]", err.UserName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrUserCannotCommit) Unwrap() error {
|
|
|
|
return util.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrFilePathInvalid represents a "FilePathInvalid" kind of error.
|
|
|
|
type ErrFilePathInvalid struct {
|
|
|
|
Message string
|
|
|
|
Path string
|
|
|
|
Name string
|
|
|
|
Type git.EntryMode
|
2016-08-11 08:48:08 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// IsErrFilePathInvalid checks if an error is an ErrFilePathInvalid.
|
|
|
|
func IsErrFilePathInvalid(err error) bool {
|
|
|
|
_, ok := err.(ErrFilePathInvalid)
|
2016-08-11 08:48:08 -04:00
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
func (err ErrFilePathInvalid) Error() string {
|
|
|
|
if err.Message != "" {
|
|
|
|
return err.Message
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("path is invalid [path: %s]", err.Path)
|
2016-08-11 08:48:08 -04:00
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrFilePathInvalid) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2020-03-26 18:26:34 -04:00
|
|
|
// ErrFilePathProtected represents a "FilePathProtected" kind of error.
|
|
|
|
type ErrFilePathProtected struct {
|
|
|
|
Message string
|
|
|
|
Path string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrFilePathProtected checks if an error is an ErrFilePathProtected.
|
|
|
|
func IsErrFilePathProtected(err error) bool {
|
|
|
|
_, ok := err.(ErrFilePathProtected)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrFilePathProtected) Error() string {
|
|
|
|
if err.Message != "" {
|
|
|
|
return err.Message
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("path is protected and can not be changed [path: %s]", err.Path)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrFilePathProtected) Unwrap() error {
|
|
|
|
return util.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
2016-02-02 17:07:40 -05:00
|
|
|
// __________ .__
|
|
|
|
// \______ \____________ ____ ____ | |__
|
|
|
|
// | | _/\_ __ \__ \ / \_/ ___\| | \
|
|
|
|
// | | \ | | \// __ \| | \ \___| Y \
|
|
|
|
// |______ / |__| (____ /___| /\___ >___| /
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
2020-05-29 14:16:20 -04:00
|
|
|
// ErrBranchDoesNotExist represents an error that branch with such name does not exist.
|
|
|
|
type ErrBranchDoesNotExist struct {
|
|
|
|
BranchName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrBranchDoesNotExist checks if an error is an ErrBranchDoesNotExist.
|
|
|
|
func IsErrBranchDoesNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrBranchDoesNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrBranchDoesNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("branch does not exist [name: %s]", err.BranchName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrBranchDoesNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrBranchAlreadyExists represents an error that branch with such name already exists.
|
2017-10-15 15:59:24 -04:00
|
|
|
type ErrBranchAlreadyExists struct {
|
|
|
|
BranchName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrBranchAlreadyExists checks if an error is an ErrBranchAlreadyExists.
|
|
|
|
func IsErrBranchAlreadyExists(err error) bool {
|
|
|
|
_, ok := err.(ErrBranchAlreadyExists)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrBranchAlreadyExists) Error() string {
|
|
|
|
return fmt.Sprintf("branch already exists [name: %s]", err.BranchName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrBranchAlreadyExists) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrBranchNameConflict represents an error that branch name conflicts with other branch.
|
2017-10-15 15:59:24 -04:00
|
|
|
type ErrBranchNameConflict struct {
|
|
|
|
BranchName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrBranchNameConflict checks if an error is an ErrBranchNameConflict.
|
|
|
|
func IsErrBranchNameConflict(err error) bool {
|
|
|
|
_, ok := err.(ErrBranchNameConflict)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrBranchNameConflict) Error() string {
|
|
|
|
return fmt.Sprintf("branch conflicts with existing branch [name: %s]", err.BranchName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrBranchNameConflict) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2019-12-16 01:20:25 -05:00
|
|
|
// ErrBranchesEqual represents an error that branch name conflicts with other branch.
|
|
|
|
type ErrBranchesEqual struct {
|
|
|
|
BaseBranchName string
|
|
|
|
HeadBranchName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrBranchesEqual checks if an error is an ErrBranchesEqual.
|
|
|
|
func IsErrBranchesEqual(err error) bool {
|
|
|
|
_, ok := err.(ErrBranchesEqual)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrBranchesEqual) Error() string {
|
|
|
|
return fmt.Sprintf("branches are equal [head: %sm base: %s]", err.HeadBranchName, err.BaseBranchName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrBranchesEqual) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2022-03-31 10:53:08 -04:00
|
|
|
// ErrDisallowedToMerge represents an error that a branch is protected and the current user is not allowed to modify it.
|
|
|
|
type ErrDisallowedToMerge struct {
|
2018-03-12 23:46:14 -04:00
|
|
|
Reason string
|
|
|
|
}
|
|
|
|
|
2022-03-31 10:53:08 -04:00
|
|
|
// IsErrDisallowedToMerge checks if an error is an ErrDisallowedToMerge.
|
|
|
|
func IsErrDisallowedToMerge(err error) bool {
|
|
|
|
_, ok := err.(ErrDisallowedToMerge)
|
2018-03-12 23:46:14 -04:00
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2022-03-31 10:53:08 -04:00
|
|
|
func (err ErrDisallowedToMerge) Error() string {
|
2018-03-12 23:46:14 -04:00
|
|
|
return fmt.Sprintf("not allowed to merge [reason: %s]", err.Reason)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrDisallowedToMerge) Unwrap() error {
|
|
|
|
return util.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrTagAlreadyExists represents an error that tag with such name already exists.
|
2017-10-15 15:59:24 -04:00
|
|
|
type ErrTagAlreadyExists struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrTagAlreadyExists checks if an error is an ErrTagAlreadyExists.
|
|
|
|
func IsErrTagAlreadyExists(err error) bool {
|
|
|
|
_, ok := err.(ErrTagAlreadyExists)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrTagAlreadyExists) Error() string {
|
|
|
|
return fmt.Sprintf("tag already exists [name: %s]", err.TagName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrTagAlreadyExists) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrSHADoesNotMatch represents a "SHADoesNotMatch" kind of error.
|
|
|
|
type ErrSHADoesNotMatch struct {
|
|
|
|
Path string
|
|
|
|
GivenSHA string
|
|
|
|
CurrentSHA string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrSHADoesNotMatch checks if an error is a ErrSHADoesNotMatch.
|
|
|
|
func IsErrSHADoesNotMatch(err error) bool {
|
|
|
|
_, ok := err.(ErrSHADoesNotMatch)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrSHADoesNotMatch) Error() string {
|
|
|
|
return fmt.Sprintf("sha does not match [given: %s, expected: %s]", err.GivenSHA, err.CurrentSHA)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrSHANotFound represents a "SHADoesNotMatch" kind of error.
|
|
|
|
type ErrSHANotFound struct {
|
|
|
|
SHA string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrSHANotFound checks if an error is a ErrSHANotFound.
|
|
|
|
func IsErrSHANotFound(err error) bool {
|
|
|
|
_, ok := err.(ErrSHANotFound)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrSHANotFound) Error() string {
|
|
|
|
return fmt.Sprintf("sha not found [%s]", err.SHA)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrSHANotFound) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2019-04-17 12:06:35 -04:00
|
|
|
// ErrCommitIDDoesNotMatch represents a "CommitIDDoesNotMatch" kind of error.
|
|
|
|
type ErrCommitIDDoesNotMatch struct {
|
|
|
|
GivenCommitID string
|
|
|
|
CurrentCommitID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrCommitIDDoesNotMatch checks if an error is a ErrCommitIDDoesNotMatch.
|
|
|
|
func IsErrCommitIDDoesNotMatch(err error) bool {
|
|
|
|
_, ok := err.(ErrCommitIDDoesNotMatch)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrCommitIDDoesNotMatch) Error() string {
|
|
|
|
return fmt.Sprintf("file CommitID does not match [given: %s, expected: %s]", err.GivenCommitID, err.CurrentCommitID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrSHAOrCommitIDNotProvided represents a "SHAOrCommitIDNotProvided" kind of error.
|
|
|
|
type ErrSHAOrCommitIDNotProvided struct{}
|
|
|
|
|
|
|
|
// IsErrSHAOrCommitIDNotProvided checks if an error is a ErrSHAOrCommitIDNotProvided.
|
|
|
|
func IsErrSHAOrCommitIDNotProvided(err error) bool {
|
|
|
|
_, ok := err.(ErrSHAOrCommitIDNotProvided)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrSHAOrCommitIDNotProvided) Error() string {
|
2021-07-08 07:38:13 -04:00
|
|
|
return "a SHA or commit ID must be proved when updating a file"
|
2019-04-17 12:06:35 -04:00
|
|
|
}
|
|
|
|
|
2018-01-05 13:56:50 -05:00
|
|
|
// ErrInvalidMergeStyle represents an error if merging with disabled merge strategy
|
|
|
|
type ErrInvalidMergeStyle struct {
|
|
|
|
ID int64
|
2021-12-09 20:27:50 -05:00
|
|
|
Style repo_model.MergeStyle
|
2018-01-05 13:56:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrInvalidMergeStyle checks if an error is a ErrInvalidMergeStyle.
|
|
|
|
func IsErrInvalidMergeStyle(err error) bool {
|
|
|
|
_, ok := err.(ErrInvalidMergeStyle)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrInvalidMergeStyle) Error() string {
|
|
|
|
return fmt.Sprintf("merge strategy is not allowed or is invalid [repo_id: %d, strategy: %s]",
|
|
|
|
err.ID, err.Style)
|
|
|
|
}
|
|
|
|
|
2022-10-18 01:50:37 -04:00
|
|
|
func (err ErrInvalidMergeStyle) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2019-11-10 03:42:51 -05:00
|
|
|
// ErrMergeConflicts represents an error if merging fails with a conflict
|
|
|
|
type ErrMergeConflicts struct {
|
2021-12-09 20:27:50 -05:00
|
|
|
Style repo_model.MergeStyle
|
2019-11-10 03:42:51 -05:00
|
|
|
StdOut string
|
|
|
|
StdErr string
|
|
|
|
Err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrMergeConflicts checks if an error is a ErrMergeConflicts.
|
|
|
|
func IsErrMergeConflicts(err error) bool {
|
|
|
|
_, ok := err.(ErrMergeConflicts)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrMergeConflicts) Error() string {
|
|
|
|
return fmt.Sprintf("Merge Conflict Error: %v: %s\n%s", err.Err, err.StdErr, err.StdOut)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrMergeUnrelatedHistories represents an error if merging fails due to unrelated histories
|
|
|
|
type ErrMergeUnrelatedHistories struct {
|
2021-12-09 20:27:50 -05:00
|
|
|
Style repo_model.MergeStyle
|
2019-11-10 03:42:51 -05:00
|
|
|
StdOut string
|
|
|
|
StdErr string
|
|
|
|
Err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrMergeUnrelatedHistories checks if an error is a ErrMergeUnrelatedHistories.
|
|
|
|
func IsErrMergeUnrelatedHistories(err error) bool {
|
|
|
|
_, ok := err.(ErrMergeUnrelatedHistories)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrMergeUnrelatedHistories) Error() string {
|
|
|
|
return fmt.Sprintf("Merge UnrelatedHistories Error: %v: %s\n%s", err.Err, err.StdErr, err.StdOut)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrRebaseConflicts represents an error if rebase fails with a conflict
|
|
|
|
type ErrRebaseConflicts struct {
|
2021-12-09 20:27:50 -05:00
|
|
|
Style repo_model.MergeStyle
|
2019-11-10 03:42:51 -05:00
|
|
|
CommitSHA string
|
|
|
|
StdOut string
|
|
|
|
StdErr string
|
|
|
|
Err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrRebaseConflicts checks if an error is a ErrRebaseConflicts.
|
|
|
|
func IsErrRebaseConflicts(err error) bool {
|
|
|
|
_, ok := err.(ErrRebaseConflicts)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRebaseConflicts) Error() string {
|
|
|
|
return fmt.Sprintf("Rebase Error: %v: Whilst Rebasing: %s\n%s\n%s", err.Err, err.CommitSHA, err.StdErr, err.StdOut)
|
|
|
|
}
|
|
|
|
|
2019-12-16 01:20:25 -05:00
|
|
|
// ErrPullRequestHasMerged represents a "PullRequestHasMerged"-error
|
|
|
|
type ErrPullRequestHasMerged struct {
|
|
|
|
ID int64
|
|
|
|
IssueID int64
|
|
|
|
HeadRepoID int64
|
|
|
|
BaseRepoID int64
|
|
|
|
HeadBranch string
|
|
|
|
BaseBranch string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrPullRequestHasMerged checks if an error is a ErrPullRequestHasMerged.
|
|
|
|
func IsErrPullRequestHasMerged(err error) bool {
|
|
|
|
_, ok := err.(ErrPullRequestHasMerged)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error does pretty-printing :D
|
|
|
|
func (err ErrPullRequestHasMerged) Error() string {
|
|
|
|
return fmt.Sprintf("pull request has merged [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)
|
|
|
|
}
|