Skip to content

Commit 94613c5

Browse files
committed
feat(storage): implement unpin object
1 parent 2b9cfa2 commit 94613c5

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

contracts/cw-storage/src/contract.rs

+31
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ pub fn execute(
4141
match msg {
4242
ExecuteMsg::StoreObject { data, pin } => execute::store_object(deps, info, data, pin),
4343
ExecuteMsg::PinObject { id } => execute::pin_object(deps, info, id),
44+
ExecuteMsg::UnpinObject { id } => execute::unpin_object(deps, info, id),
4445
_ => Err(NotImplemented {}),
4546
}
4647
}
@@ -165,6 +166,36 @@ pub mod execute {
165166
}
166167
}
167168
}
169+
170+
pub fn unpin_object(
171+
deps: DepsMut,
172+
info: MessageInfo,
173+
object_id: ObjectId,
174+
) -> Result<Response, ContractError> {
175+
if !pins().has(deps.storage, (object_id.clone(), info.sender.clone())) {
176+
return Ok(Response::new()
177+
.add_attribute("action", "unpin_object")
178+
.add_attribute("id", object_id));
179+
}
180+
181+
objects().update(
182+
deps.storage,
183+
object_id.clone(),
184+
|o| -> Result<Object, StdError> {
185+
o.map(|mut e: Object| -> Object {
186+
e.pin_count -= Uint128::one();
187+
e
188+
})
189+
.ok_or_else(|| StdError::not_found(type_name::<Object>()))
190+
},
191+
)?;
192+
193+
pins().remove(deps.storage, (object_id.clone(), info.sender))?;
194+
195+
Ok(Response::new()
196+
.add_attribute("action", "unpin_object")
197+
.add_attribute("id", object_id))
198+
}
168199
}
169200

170201
#[cfg_attr(not(feature = "library"), entry_point)]

0 commit comments

Comments
 (0)