156 lines
4.3 KiB
Rust
Raw Normal View History

2021-12-14 18:04:51 +08:00
use crate::protobuf::ErrorCode as ProtoBufErrorCode;
use flowy_derive::ProtoBuf_Enum;
use protobuf::ProtobufEnum;
use std::convert::{TryFrom, TryInto};
use thiserror::Error;
2021-12-14 18:04:51 +08:00
#[derive(Debug, Clone, ProtoBuf_Enum, PartialEq, Eq, Error)]
2021-12-14 18:04:51 +08:00
pub enum ErrorCode {
#[error("Internal error")]
2022-01-23 12:14:00 +08:00
Internal = 0,
2021-12-14 18:04:51 +08:00
#[error("UserUnauthorized")]
2022-01-23 12:14:00 +08:00
UserUnauthorized = 2,
2021-12-14 18:04:51 +08:00
#[error("RecordNotFound")]
2022-01-23 12:14:00 +08:00
RecordNotFound = 3,
2021-12-14 18:04:51 +08:00
#[error("User id is empty")]
2022-03-19 16:23:34 +08:00
UserIdIsEmpty = 4,
#[error("Workspace name can not be empty or whitespace")]
2021-12-14 18:04:51 +08:00
WorkspaceNameInvalid = 100,
#[error("Workspace id can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
WorkspaceIdInvalid = 101,
2021-12-14 18:04:51 +08:00
#[error("Color style of the App is invalid")]
2021-12-14 18:04:51 +08:00
AppColorStyleInvalid = 102,
#[error("Workspace desc is invalid")]
2021-12-14 18:04:51 +08:00
WorkspaceDescTooLong = 103,
#[error("Workspace description too long")]
2021-12-14 18:04:51 +08:00
WorkspaceNameTooLong = 104,
#[error("App id can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
AppIdInvalid = 110,
2021-12-14 18:04:51 +08:00
#[error("App name can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
AppNameInvalid = 111,
2021-12-14 18:04:51 +08:00
#[error("View name can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
ViewNameInvalid = 120,
2021-12-14 18:04:51 +08:00
#[error("Thumbnail of the view is invalid")]
2021-12-14 18:04:51 +08:00
ViewThumbnailInvalid = 121,
#[error("View id can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
ViewIdInvalid = 122,
2021-12-14 18:04:51 +08:00
#[error("View desc too long")]
2022-01-23 12:14:00 +08:00
ViewDescTooLong = 123,
2021-12-14 18:04:51 +08:00
#[error("View data is invalid")]
2022-01-23 12:14:00 +08:00
ViewDataInvalid = 124,
2021-12-14 18:04:51 +08:00
#[error("View name too long")]
2022-01-23 12:14:00 +08:00
ViewNameTooLong = 125,
2021-12-14 18:04:51 +08:00
#[error("Connection error")]
2022-01-23 12:14:00 +08:00
ConnectError = 200,
2021-12-14 18:04:51 +08:00
#[error("Email can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
EmailIsEmpty = 300,
#[error("Email format is not valid")]
2022-01-23 12:14:00 +08:00
EmailFormatInvalid = 301,
#[error("Email already exists")]
2022-01-23 12:14:00 +08:00
EmailAlreadyExists = 302,
#[error("Password can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
PasswordIsEmpty = 303,
#[error("Password format too long")]
2022-01-23 12:14:00 +08:00
PasswordTooLong = 304,
#[error("Password contains forbidden characters.")]
2021-12-14 18:04:51 +08:00
PasswordContainsForbidCharacters = 305,
#[error("Password should contain a minimum of 6 characters with 1 special 1 letter and 1 numeric")]
2021-12-14 18:04:51 +08:00
PasswordFormatInvalid = 306,
#[error("Password not match")]
2022-01-23 12:14:00 +08:00
PasswordNotMatch = 307,
#[error("User name is too long")]
2022-01-23 12:14:00 +08:00
UserNameTooLong = 308,
#[error("User name contain forbidden characters")]
2021-12-14 18:04:51 +08:00
UserNameContainForbiddenCharacters = 309,
#[error("User name can not be empty or whitespace")]
2022-01-23 12:14:00 +08:00
UserNameIsEmpty = 310,
#[error("user id is empty or whitespace")]
2022-01-23 12:14:00 +08:00
UserIdInvalid = 311,
#[error("User not exist")]
2022-01-23 12:14:00 +08:00
UserNotExist = 312,
#[error("Text is too long")]
2022-03-16 10:02:37 +08:00
TextTooLong = 400,
#[error("Grid id is empty")]
GridIdIsEmpty = 410,
#[error("Grid view id is empty")]
2022-08-16 15:49:54 +08:00
GridViewIdIsEmpty = 411,
#[error("Grid block id is empty")]
BlockIdIsEmpty = 420,
#[error("Row id is empty")]
RowIdIsEmpty = 430,
#[error("Select option id is empty")]
2022-04-05 14:25:07 +08:00
OptionIdIsEmpty = 431,
#[error("Field id is empty")]
FieldIdIsEmpty = 440,
#[error("Field doesn't exist")]
2022-03-27 09:35:10 +08:00
FieldDoesNotExist = 441,
#[error("The name of the option should not be empty")]
2022-03-29 22:58:38 +08:00
SelectOptionNameIsEmpty = 442,
#[error("Field not exists")]
2022-04-07 08:33:10 +08:00
FieldNotExists = 443,
#[error("The operation in this field is invalid")]
2022-04-07 08:33:10 +08:00
FieldInvalidOperation = 444,
#[error("Filter id is empty")]
FilterIdIsEmpty = 445,
#[error("Field is not exist")]
2022-12-20 08:39:46 +08:00
FieldRecordNotFound = 446,
2022-03-27 09:35:10 +08:00
#[error("Field's type-option data should not be empty")]
2022-03-27 09:35:10 +08:00
TypeOptionDataIsEmpty = 450,
#[error("Group id is empty")]
GroupIdIsEmpty = 460,
#[error("Invalid date time format")]
2022-05-13 22:58:49 +08:00
InvalidDateTimeFormat = 500,
#[error("The input string is empty or contains invalid characters")]
2022-06-15 11:43:24 +08:00
UnexpectedEmptyString = 999,
#[error("Invalid data")]
2022-05-13 22:58:49 +08:00
InvalidData = 1000,
#[error("Serde")]
Serde = 1001,
#[error("Protobuf serde")]
2022-11-15 13:04:30 +08:00
ProtobufSerde = 1002,
#[error("Out of bounds")]
OutOfBounds = 10001,
2021-12-14 18:04:51 +08:00
}
impl ErrorCode {
pub fn value(&self) -> i32 {
let code: ProtoBufErrorCode = self.clone().try_into().unwrap();
code.value()
}
pub fn from_i32(value: i32) -> Self {
match ProtoBufErrorCode::from_i32(value) {
None => ErrorCode::Internal,
Some(code) => ErrorCode::try_from(&code).unwrap(),
}
}
}