use async_graphql::{ErrorExtensionValues, ErrorExtensions, Pos, ServerError};
use sui_indexer::errors::IndexerError;
use sui_name_service::NameServiceError;
use crate::types::move_registry::error::MoveRegistryError;
pub(crate) mod code {
pub const BAD_USER_INPUT: &str = "BAD_USER_INPUT";
pub const INTERNAL_SERVER_ERROR: &str = "INTERNAL_SERVER_ERROR";
pub const REQUEST_TIMEOUT: &str = "REQUEST_TIMEOUT";
pub const UNKNOWN: &str = "UNKNOWN";
}
pub(crate) fn graphql_error(code: &str, message: impl Into<String>) -> ServerError {
let mut ext = ErrorExtensionValues::default();
ext.set("code", code);
ServerError {
message: message.into(),
source: None,
locations: vec![],
path: vec![],
extensions: Some(ext),
}
}
pub(crate) fn graphql_error_at_pos(
code: &str,
message: impl Into<String>,
pos: Pos,
) -> ServerError {
let mut ext = ErrorExtensionValues::default();
ext.set("code", code);
ServerError {
message: message.into(),
source: None,
locations: vec![pos],
path: vec![],
extensions: Some(ext),
}
}
#[derive(Clone, Debug, thiserror::Error)]
pub enum Error {
#[error("Unsupported protocol version requested. Min supported: {0}, max supported: {1}")]
ProtocolVersionUnsupported(u64, u64),
#[error(transparent)]
NameService(#[from] NameServiceError),
#[error("'first' and 'last' must not be used together")]
CursorNoFirstLast,
#[error("Connection's page size of {0} exceeds max of {1}")]
PageTooLarge(u64, u32),
#[error("{0}")]
Client(String),
#[error("Internal error occurred while processing request: {0}")]
Internal(String),
#[error(transparent)]
MoveNameRegistry(#[from] MoveRegistryError),
}
impl ErrorExtensions for Error {
fn extend(&self) -> async_graphql::Error {
async_graphql::Error::new(format!("{}", self)).extend_with(|_err, e| match self {
Error::NameService(_)
| Error::MoveNameRegistry(_)
| Error::CursorNoFirstLast
| Error::PageTooLarge(_, _)
| Error::ProtocolVersionUnsupported(_, _)
| Error::Client(_) => {
e.set("code", code::BAD_USER_INPUT);
}
Error::Internal(_) => {
e.set("code", code::INTERNAL_SERVER_ERROR);
}
})
}
}
impl From<IndexerError> for Error {
fn from(e: IndexerError) -> Self {
Error::Internal(e.to_string())
}
}