Skip to content

Commit a022a00

Browse files
committed
feat(cw-storage): add ObjectData query
1 parent f64bed1 commit a022a00

File tree

1 file changed

+24
-16
lines changed
  • contracts/cw-storage/src

1 file changed

+24
-16
lines changed

contracts/cw-storage/src/msg.rs

+24-16
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub enum ExecuteMsg {
2525
/// The object is referenced by the hash of its content and this value is returned.
2626
/// If the object is already stored, this is a no-op.
2727
/// If pin is true, the object is pinned for the sender.
28-
StoreObject { object: Binary, pin: bool },
28+
StoreObject { data: Binary, pin: bool },
2929

3030
/// # ForgetObject
3131
/// ForgetObject first unpin the object from the bucket for the considered sender, then remove
@@ -51,18 +51,18 @@ pub enum ExecuteMsg {
5151
#[cw_serde]
5252
#[derive(QueryResponses)]
5353
pub enum QueryMsg {
54-
/// # Object
55-
/// Object returns the object information with the given id.
56-
#[returns(ObjectResponse)]
57-
Object {
54+
/// # ObjectInfo
55+
/// ObjectInfo returns the object information with the given id.
56+
#[returns(ObjectInfoResponse)]
57+
ObjectInfo {
5858
/// The id of the object to get.
5959
id: ObjectId,
6060
},
6161

62-
/// # Objects
63-
/// Objects returns the list of objects in the bucket with support for pagination.
64-
#[returns(ObjectsResponse)]
65-
Objects {
62+
/// # ObjectsInfo
63+
/// ObjectsInfo returns the list of objects in the bucket with support for pagination.
64+
#[returns(ObjectsInfoResponse)]
65+
ObjectsInfo {
6666
/// The owner of the objects to get.
6767
address: Option<String>,
6868
/// The number of objects to return.
@@ -71,6 +71,14 @@ pub enum QueryMsg {
7171
after: Option<Cursor>,
7272
},
7373

74+
/// # ObjectData
75+
/// ObjectData returns the content of the object with the given id.
76+
#[returns(Binary)]
77+
ObjectData {
78+
/// The id of the object to get.
79+
id: ObjectId,
80+
},
81+
7482
/// # ObjectPins
7583
/// ObjectPins returns the list of addresses that pinned the object with the given id with
7684
/// support for pagination.
@@ -95,22 +103,22 @@ pub struct PageInfo {
95103
pub end_cursor: Cursor,
96104
}
97105

98-
/// # ObjectResponse
99-
/// ObjectResponse is the response of the GetObject query.
106+
/// # ObjectInfoResponse
107+
/// ObjectInfoResponse is the response of the ObjectInfo query.
100108
#[cw_serde]
101-
pub struct ObjectResponse {
109+
pub struct ObjectInfoResponse {
102110
pub id: ObjectId,
103111
pub owner: String,
104112
pub is_pinned: bool,
105113
pub size: Uint128,
106114
}
107115

108-
/// # ObjectsResponse
109-
/// GetObjectsResponse is the response of the GetObjects query.
116+
/// # ObjectsInfoResponse
117+
/// ObjectsInfoResponse is the response of the ObjectsInfo query.
110118
#[cw_serde]
111-
pub struct ObjectsResponse {
119+
pub struct ObjectsInfoResponse {
112120
/// The list of objects in the bucket.
113-
pub data: Vec<ObjectResponse>,
121+
pub data: Vec<ObjectInfoResponse>,
114122
pub page_info: PageInfo,
115123
}
116124

0 commit comments

Comments
 (0)