@@ -31,6 +31,7 @@ library LibBucket {
31
31
uint64 internal constant METHOD_DELETE_OBJECT = 4237275016 ;
32
32
uint64 internal constant METHOD_GET_OBJECT = 1894890866 ;
33
33
uint64 internal constant METHOD_LIST_OBJECTS = 572676265 ;
34
+ uint64 internal constant METHOD_UPDATE_OBJECT_METADATA = 540229491 ;
34
35
35
36
/// @dev Decode a CBOR encoded list.
36
37
/// @param data The CBOR encoded list.
@@ -152,7 +153,7 @@ library LibBucket {
152
153
/// @param params The add params.
153
154
/// @return encoded The CBOR encoded add params.
154
155
function encodeAddObjectParams (AddObjectParams memory params ) internal pure returns (bytes memory ) {
155
- bytes [] memory encoded = new bytes [](8 );
156
+ bytes [] memory encoded = new bytes [](9 );
156
157
encoded[0 ] = params.source.encodeCborBlobHashOrNodeId ();
157
158
encoded[1 ] = params.key.encodeCborBytes ();
158
159
encoded[2 ] = params.blobHash.encodeCborBlobHashOrNodeId ();
@@ -165,6 +166,18 @@ library LibBucket {
165
166
encoded[5 ] = params.ttl == 0 ? LibWasm.encodeCborNull () : params.ttl.encodeCborUint64 ();
166
167
encoded[6 ] = params.metadata.encodeCborKeyValueMap ();
167
168
encoded[7 ] = params.overwrite.encodeCborBool ();
169
+ encoded[8 ] = params.from.encodeCborAddress ();
170
+ return encoded.encodeCborArray ();
171
+ }
172
+
173
+ /// @dev Encode a CBOR encoded delete object params.
174
+ /// @param key The key of the object to delete.
175
+ /// @param from The address of the account that is deleting the object.
176
+ /// @return encoded The CBOR encoded delete object params.
177
+ function encodeDeleteObjectParams (string memory key , address from ) internal pure returns (bytes memory ) {
178
+ bytes [] memory encoded = new bytes [](2 );
179
+ encoded[0 ] = key.encodeCborBytes ();
180
+ encoded[1 ] = from.encodeCborAddress ();
168
181
return encoded.encodeCborArray ();
169
182
}
170
183
@@ -188,6 +201,23 @@ library LibBucket {
188
201
return encoded.encodeCborArray ();
189
202
}
190
203
204
+ /// @dev Encode a CBOR encoded update object metadata params.
205
+ /// @param key The key of the object to update.
206
+ /// @param metadata The metadata.
207
+ /// @param from The address of the account that is updating the metadata.
208
+ /// @return encoded The CBOR encoded update object metadata params.
209
+ function encodeUpdateObjectMetadataParams (string memory key , KeyValue[] memory metadata , address from )
210
+ internal
211
+ pure
212
+ returns (bytes memory )
213
+ {
214
+ bytes [] memory encoded = new bytes [](3 );
215
+ encoded[0 ] = key.encodeCborBytes ();
216
+ encoded[1 ] = metadata.encodeCborKeyValueMap ();
217
+ encoded[2 ] = from.encodeCborAddress ();
218
+ return encoded.encodeCborArray ();
219
+ }
220
+
191
221
/// @dev Convert a kind to a string.
192
222
/// @param kind The kind.
193
223
/// @return string The string representation of the kind.
@@ -246,12 +276,26 @@ library LibBucket {
246
276
/// @dev Delete an object from the bucket.
247
277
/// @param bucket The bucket.
248
278
/// @param key The object key.
249
- function deleteObject (address bucket , string memory key ) external {
279
+ /// @param from The address of the account that is deleting the object.
280
+ function deleteObject (address bucket , string memory key , address from ) external {
250
281
uint64 bucketAddr = bucket.addressToActorId ();
251
- bytes memory params = key. encodeCborBytes ( );
282
+ bytes memory params = encodeDeleteObjectParams (key, from );
252
283
LibWasm.writeToWasmActor (bucketAddr, METHOD_DELETE_OBJECT, params);
253
284
}
254
285
286
+ /// @dev Update the metadata of an object.
287
+ /// @param bucket The bucket.
288
+ /// @param key The object key.
289
+ /// @param metadata The metadata.
290
+ /// @param from The address of the account that is updating the metadata.
291
+ function updateObjectMetadata (address bucket , string memory key , KeyValue[] memory metadata , address from )
292
+ external
293
+ {
294
+ uint64 bucketAddr = bucket.addressToActorId ();
295
+ bytes memory params = encodeUpdateObjectMetadataParams (key, metadata, from);
296
+ LibWasm.writeToWasmActor (bucketAddr, METHOD_UPDATE_OBJECT_METADATA, params);
297
+ }
298
+
255
299
/// @dev Get an object from the bucket.
256
300
/// @param bucket The bucket.
257
301
/// @param key The object key.
0 commit comments