sui_indexer_alt_jsonrpc/api/objects/
mod.rsuse filter::SuiObjectResponseQuery;
use futures::future;
use jsonrpsee::{core::RpcResult, proc_macros::rpc};
use sui_json_rpc_types::{
Page, SuiGetPastObjectRequest, SuiObjectDataOptions, SuiObjectResponse, SuiPastObjectResponse,
};
use sui_open_rpc::Module;
use sui_open_rpc_macros::open_rpc;
use sui_types::base_types::{ObjectID, SequenceNumber, SuiAddress};
use crate::{
context::Context,
error::{invalid_params, InternalContext},
};
use super::rpc_module::RpcModule;
use self::error::Error;
mod error;
mod filter;
pub(crate) mod response;
#[open_rpc(namespace = "sui", tag = "Objects API")]
#[rpc(server, namespace = "sui")]
trait ObjectsApi {
#[method(name = "getObject")]
async fn get_object(
&self,
object_id: ObjectID,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<SuiObjectResponse>;
#[method(name = "multiGetObjects")]
async fn multi_get_objects(
&self,
object_ids: Vec<ObjectID>,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<Vec<SuiObjectResponse>>;
#[method(name = "tryGetPastObject")]
async fn try_get_past_object(
&self,
object_id: ObjectID,
version: SequenceNumber,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<SuiPastObjectResponse>;
#[method(name = "tryMultiGetPastObjects")]
async fn try_multi_get_past_objects(
&self,
past_objects: Vec<SuiGetPastObjectRequest>,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<Vec<SuiPastObjectResponse>>;
}
#[open_rpc(namespace = "suix", tag = "Query Objects API")]
#[rpc(server, namespace = "suix")]
trait QueryObjectsApi {
#[method(name = "getOwnedObjects")]
async fn get_owned_objects(
&self,
address: SuiAddress,
query: Option<SuiObjectResponseQuery>,
cursor: Option<String>,
limit: Option<usize>,
) -> RpcResult<Page<SuiObjectResponse, String>>;
}
pub(crate) struct Objects(pub Context);
pub(crate) struct QueryObjects(pub Context);
#[async_trait::async_trait]
impl ObjectsApiServer for Objects {
async fn get_object(
&self,
object_id: ObjectID,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<SuiObjectResponse> {
let Self(ctx) = self;
let options = options.unwrap_or_default();
Ok(response::live_object(ctx, object_id, &options)
.await
.with_internal_context(|| {
format!("Failed to get object {object_id} at latest version")
})?)
}
async fn multi_get_objects(
&self,
object_ids: Vec<ObjectID>,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<Vec<SuiObjectResponse>> {
let Self(ctx) = self;
let config = &ctx.config().objects;
if object_ids.len() > config.max_multi_get_objects {
return Err(invalid_params(Error::TooManyKeys {
requested: object_ids.len(),
max: config.max_multi_get_objects,
})
.into());
}
let options = options.unwrap_or_default();
let obj_futures = object_ids
.iter()
.map(|id| response::live_object(ctx, *id, &options));
Ok(future::join_all(obj_futures)
.await
.into_iter()
.zip(object_ids)
.map(|(r, o)| {
r.with_internal_context(|| format!("Failed to get object {o} at latest version"))
})
.collect::<Result<Vec<_>, _>>()?)
}
async fn try_get_past_object(
&self,
object_id: ObjectID,
version: SequenceNumber,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<SuiPastObjectResponse> {
let Self(ctx) = self;
let options = options.unwrap_or_default();
Ok(response::past_object(ctx, object_id, version, &options)
.await
.with_internal_context(|| {
format!(
"Failed to get object {object_id} at version {}",
version.value()
)
})?)
}
async fn try_multi_get_past_objects(
&self,
past_objects: Vec<SuiGetPastObjectRequest>,
options: Option<SuiObjectDataOptions>,
) -> RpcResult<Vec<SuiPastObjectResponse>> {
let Self(ctx) = self;
let config = &ctx.config().objects;
if past_objects.len() > config.max_multi_get_objects {
return Err(invalid_params(Error::TooManyKeys {
requested: past_objects.len(),
max: config.max_multi_get_objects,
})
.into());
}
let options = options.unwrap_or_default();
let obj_futures = past_objects
.iter()
.map(|obj| response::past_object(ctx, obj.object_id, obj.version, &options));
Ok(future::join_all(obj_futures)
.await
.into_iter()
.zip(past_objects)
.map(|(r, o)| {
let id = o.object_id;
let v = o.version;
r.with_internal_context(|| format!("Failed to get object {id} at version {v}"))
})
.collect::<Result<Vec<_>, _>>()?)
}
}
#[async_trait::async_trait]
impl QueryObjectsApiServer for QueryObjects {
async fn get_owned_objects(
&self,
address: SuiAddress,
query: Option<SuiObjectResponseQuery>,
cursor: Option<String>,
limit: Option<usize>,
) -> RpcResult<Page<SuiObjectResponse, String>> {
let Self(ctx) = self;
let query = query.unwrap_or_default();
let Page {
data: object_ids,
next_cursor,
has_next_page,
} = filter::owned_objects(ctx, address, &query.filter, cursor, limit).await?;
let options = query.options.unwrap_or_default();
let obj_futures = object_ids
.iter()
.map(|id| response::latest_object(ctx, *id, &options));
let data = future::join_all(obj_futures)
.await
.into_iter()
.zip(object_ids)
.map(|(r, id)| {
r.with_internal_context(|| format!("Failed to get object {id} at latest version"))
})
.collect::<Result<Vec<_>, _>>()?;
Ok(Page {
data,
next_cursor,
has_next_page,
})
}
}
impl RpcModule for Objects {
fn schema(&self) -> Module {
ObjectsApiOpenRpc::module_doc()
}
fn into_impl(self) -> jsonrpsee::RpcModule<Self> {
self.into_rpc()
}
}
impl RpcModule for QueryObjects {
fn schema(&self) -> Module {
QueryObjectsApiOpenRpc::module_doc()
}
fn into_impl(self) -> jsonrpsee::RpcModule<Self> {
self.into_rpc()
}
}