Files
golib/artifact/gitlab/error.go
Nicolas JUHEL 85090c51d7 PKG Artifact: add new package to manage artifact manager like github, gitlab, s3, ... some other will come after (big matter with jfrog because jfrog has badly code never seens, maybe need to do dedicated lib)
For now artifact is only to get all release, major, minor, latest, major latest, minor latest, artifact link and download. Upload and creation release will be allowed in future
2020-09-11 14:01:37 +02:00

100 lines
3.1 KiB
Go

/*
* MIT License
*
* Copyright (c) 2020 Nicolas JUHEL
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*
*/
package gitlab
import (
err2 "errors"
"github.com/nabbar/golib/artifact"
"github.com/nabbar/golib/errors"
)
const (
ErrorParamsEmpty errors.CodeError = iota + artifact.MIN_ARTIFACT_GITLAB
ErrorURLParse
ErrorClientInit
ErrorGitlabList
ErrorGitlabGetRelease
ErrorGitlabNotFound
ErrorGitlabRequestNew
ErrorGitlabRequestRun
ErrorGitlabResponse
ErrorGitlabIOCopy
ErrorDestinationStat
ErrorDestinationSize
)
var (
isCodeError = false
errResponseCode = err2.New("response status code %s")
errResponseContents = err2.New("response contents is empty")
errResponseBodyEmpty = err2.New("empty body response")
errMisMatchingSize = err2.New("destination size and contentLenght header are not matching")
)
func IsCodeError() bool {
return isCodeError
}
func init() {
isCodeError = errors.ExistInMapMessage(ErrorParamsEmpty)
errors.RegisterIdFctMessage(ErrorParamsEmpty, getMessage)
}
func getMessage(code errors.CodeError) (message string) {
switch code {
case errors.UNK_ERROR:
return ""
case ErrorParamsEmpty:
return "given parameters is empty"
case ErrorURLParse:
return "gitlab endpoint seems to be not valid"
case ErrorClientInit:
return "initialization of gitlab client failed"
case ErrorGitlabList:
return "request the release list to gitlab occurs an error"
case ErrorGitlabGetRelease:
return "request the release data to gitlab occurs an error"
case ErrorGitlabNotFound:
return "the requested constrains to the release are not matching"
case ErrorGitlabRequestNew:
return "error on creating new gitlab http request"
case ErrorGitlabRequestRun:
return "error on running new gitlab http request"
case ErrorGitlabResponse:
return "response error on gitlab http request"
case ErrorGitlabIOCopy:
return "io copy from gitlab response occurs an error"
case ErrorDestinationStat:
return "error occurs on calling destination stats"
case ErrorDestinationSize:
return "mismatching size between downloaded contents and gitlab http response header"
}
return ""
}