@@ -41,6 +41,7 @@ pub fn execute(
41
41
match msg {
42
42
ExecuteMsg :: StoreObject { data, pin } => execute:: store_object ( deps, info, data, pin) ,
43
43
ExecuteMsg :: PinObject { id } => execute:: pin_object ( deps, info, id) ,
44
+ ExecuteMsg :: UnpinObject { id } => execute:: unpin_object ( deps, info, id) ,
44
45
_ => Err ( NotImplemented { } ) ,
45
46
}
46
47
}
@@ -165,6 +166,36 @@ pub mod execute {
165
166
}
166
167
}
167
168
}
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
+ }
168
199
}
169
200
170
201
#[ cfg_attr( not( feature = "library" ) , entry_point) ]
0 commit comments