mirror of https://github.com/1Panel-dev/1Panel
appstorecrontabdatabasedockerdocker-composedocker-containerdocker-imagedocker-uifilemanagerlamplnmppanel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.7 KiB
69 lines
1.7 KiB
package constant |
|
|
|
import ( |
|
"errors" |
|
) |
|
|
|
const ( |
|
CodeSuccess = 200 |
|
CodeErrBadRequest = 400 |
|
CodeErrUnauthorized = 401 |
|
CodeErrUnSafety = 402 |
|
CodeErrForbidden = 403 |
|
CodeErrNotFound = 404 |
|
CodePasswordExpired = 405 |
|
CodeAuth = 406 |
|
CodeErrInternalServer = 500 |
|
CodeErrHeader = 406 |
|
) |
|
|
|
// internal |
|
var ( |
|
ErrCaptchaCode = errors.New("ErrCaptchaCode") |
|
ErrAuth = errors.New("ErrAuth") |
|
ErrRecordExist = errors.New("ErrRecordExist") |
|
ErrRecordNotFound = errors.New("ErrRecordNotFound") |
|
ErrStructTransform = errors.New("ErrStructTransform") |
|
ErrInitialPassword = errors.New("ErrInitialPassword") |
|
ErrNotSupportType = errors.New("ErrNotSupportType") |
|
ErrInvalidParams = errors.New("ErrInvalidParams") |
|
|
|
ErrTokenParse = errors.New("ErrTokenParse") |
|
|
|
ErrPageGenerate = errors.New("generate page info failed") |
|
) |
|
|
|
// api |
|
var ( |
|
ErrTypeInternalServer = "ErrInternalServer" |
|
ErrTypeInvalidParams = "ErrInvalidParams" |
|
ErrTypeToken = "ErrToken" |
|
ErrTypeTokenTimeOut = "ErrTokenTimeOut" |
|
ErrTypeNotLogin = "ErrNotLogin" |
|
ErrTypePasswordExpired = "ErrPasswordExpired" |
|
ErrTypeNotSafety = "ErrNotSafety" |
|
ErrNameIsExist = "ErrNameIsExist" |
|
) |
|
|
|
// app |
|
var ( |
|
ErrPortInUsed = "ErrPortInUsed" |
|
ErrAppLimit = "ErrAppLimit" |
|
ErrAppRequired = "ErrAppRequired" |
|
ErrFileCanNotRead = "ErrFileCanNotRead" |
|
ErrFileToLarge = "ErrFileToLarge" |
|
ErrNotInstall = "ErrNotInstall" |
|
) |
|
|
|
//website |
|
var ( |
|
ErrDomainIsExist = "ErrDomainIsExist" |
|
ErrAliasIsExist = "ErrAliasIsExist" |
|
ErrAppDelete = "ErrAppDelete" |
|
) |
|
|
|
//ssl |
|
var ( |
|
ErrSSLCannotDelete = "ErrSSLCannotDelete" |
|
ErrAccountCannotDelete = "ErrAccountCannotDelete" |
|
)
|
|
|