Skip to content

Commit a87ac10

Browse files
authored
feat: include from param in bucket & blob methods (#81)
Closes #80
1 parent f043144 commit a87ac10

11 files changed

+155
-35
lines changed

README.md

+19-8
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- [Methods](#methods-1)
2727
- [Examples](#examples-1)
2828
- [Query objects](#query-objects)
29+
- [Update object metadata](#update-object-metadata)
2930
- [Blobs contract](#blobs-contract)
3031
- [Methods](#methods-2)
3132
- [Testing](#testing)
@@ -635,13 +636,13 @@ The following methods are available on the credit contract, shown with their fun
635636
metadata.
636637
- `listBuckets()`: List all buckets for the sender.
637638
- `listBuckets(address)`: List all buckets for the specified address.
638-
- `addObject(address,string,string,string,uint64)`: Add an object to a bucket and associated object
639-
upload parameters. The first value is the bucket address, the subsequent values are all of the
640-
"required" values in `AddObjectParams` (`source` node ID, `key`, `blobHash`, and `size`).
641-
- `addObject(address,(string,string,string,string,uint64,uint64,(string,string)[],bool))`: Add an
642-
object to a bucket (first value) and associated object upload parameters (second value) as the
643-
`AddObjectParams` struct, described in more detail below.
644-
- `deleteObject(address,string)`: Remove an object from a bucket.
639+
- `addObject(address,string,string,string,uint64,address)`: Add an object to a bucket and associated
640+
object upload parameters. The first value is the bucket address, the subsequent values are all of
641+
the "required" values in `AddObjectParams` (`source` node ID, `key`, `blobHash`, and `size`).
642+
- `addObject(address,(string,string,string,string,uint64,uint64,(string,string)[],bool,address))`:
643+
Add an object to a bucket (first value) and associated object upload parameters (second value) as
644+
the `AddObjectParams` struct, described in more detail below.
645+
- `deleteObject(address,string,address)`: Remove an object from a bucket.
645646
- `getObject(address,string)`: Get an object from a bucket.
646647
- `queryObjects(address)`: Query the bucket (hex address) with no prefix (defaults to `/` delimiter
647648
and the default offset and limit in the underlying WASM layer).
@@ -653,6 +654,8 @@ The following methods are available on the credit contract, shown with their fun
653654
limit.
654655
- `queryObjects(address,string,string,uint64,uint64)`: Query the bucket with a prefix, delimiter,
655656
offset, and limit.
657+
- `updateObjectMetadata(address,string,(string,string)[],address)`: Update the metadata of an
658+
object.
656659

657660
#### Examples
658661

@@ -914,6 +917,14 @@ struct KeyValue {
914917
}
915918
```
916919

920+
#### Update object metadata
921+
922+
You can update the metadata of an existing object with the following command:
923+
924+
```sh
925+
cast send --rpc-url $ETH_RPC_URL $BUCKETS "updateObjectMetadata(address,string,(string,string)[],address)" $BUCKET_ADDR "hello/world" '[("alias","foo")]' $EVM_ADDRESS --private-key $PRIVATE_KEY
926+
```
927+
917928
### Blobs contract
918929

919930
You can interact with the existing blobs contract on the testnet via the address above. If you're
@@ -941,7 +952,7 @@ accepts "optional" arguments. All of the method parameters and return types can
941952
- `addBlob(AddBlobParams memory params)`: Store a blob directly on the network. This is described in
942953
more detail below, and it involves a two-step approach with first staging data with the blob
943954
storage node, and then passing related values onchain.
944-
- `deleteBlob(address,string,string)`: Delete a blob from the network, passing the sponsor's
955+
- `deleteBlob(address,string,string,address)`: Delete a blob from the network, passing the sponsor's
945956
address, the blob hash, and the subscription ID (either `""` if none was originally provided, or
946957
the string that was chosen during `addBlob`).
947958
- `overwriteBlob(string,AddBlobParams memory)`: Overwrite a blob from the network, passing the old

src/interfaces/IBlobManager.sol

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ interface IBlobManager {
7070
/// @param subscriber The address of the subscriber.
7171
/// @param blobHash Blob blake3 hash to delete.
7272
/// @param subscriptionId Identifier used to differentiate blob additions for the same subscriber.
73-
function deleteBlob(address subscriber, string memory blobHash, string memory subscriptionId) external;
73+
/// @param from The address of the account that is deleting the blob.
74+
function deleteBlob(address subscriber, string memory blobHash, string memory subscriptionId, address from)
75+
external;
7476

7577
/// @dev Overwrite a blob in storage.
7678
/// @param oldHash The blake3 hash of the blob to be deleted.

src/interfaces/IBucketManager.sol

+19-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ interface IBucketManager {
2424
/// @param key The object key.
2525
event DeleteObject(address indexed owner, address indexed bucket, string key);
2626

27+
/// @dev Emitted when the metadata of an object is updated.
28+
/// @param owner The owner.
29+
/// @param bucket The bucket's robust t2 address.
30+
/// @param key The object key.
31+
event UpdateObjectMetadata(address indexed owner, address indexed bucket, string key);
32+
2733
/// @dev Create a bucket. Uses the sender as the owner.
2834
function createBucket() external;
2935

@@ -52,13 +58,15 @@ interface IBucketManager {
5258
/// @param blobHash The object blake3 hash.
5359
/// @param recoveryHash Blake3 hash of the metadata to use for object recovery.
5460
/// @param size The object size.
61+
/// @param from The address of the account that is adding the object.
5562
function addObject(
5663
address bucket,
5764
string memory source,
5865
string memory key,
5966
string memory blobHash,
6067
string memory recoveryHash,
61-
uint64 size
68+
uint64 size,
69+
address from
6270
) external;
6371

6472
/// @dev Add an object to a bucket.
@@ -69,7 +77,16 @@ interface IBucketManager {
6977
/// @dev Delete an object from a bucket.
7078
/// @param bucket The bucket.
7179
/// @param key The key.
72-
function deleteObject(address bucket, string memory key) external;
80+
/// @param from The address of the account that is deleting the object.
81+
function deleteObject(address bucket, string memory key, address from) external;
82+
83+
/// @dev Update the metadata of an object.
84+
/// @param bucket The bucket.
85+
/// @param key The key.
86+
/// @param metadata The metadata.
87+
/// @param from The address of the account that is updating the metadata.
88+
function updateObjectMetadata(address bucket, string memory key, KeyValue[] memory metadata, address from)
89+
external;
7390

7491
/// @dev Get an object from a bucket.
7592
/// @param bucket The bucket.

src/types/BlobTypes.sol

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ struct StorageStats {
141141
/// @param size Blob size.
142142
/// @param ttl Blob time-to-live epochs. If not specified, the auto-debitor maintains about one hour of credits as an
143143
/// ongoing commitment.
144+
/// @param from Address of the entity adding the blob.
144145
struct AddBlobParams {
145146
address sponsor;
146147
string source;

src/types/BucketTypes.sol

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ struct Machine {
8282
/// @param ttl (uint64): The object time-to-live epochs.
8383
/// @param metadata (KeyValue[]): The object metadata.
8484
/// @param overwrite (bool): Whether to overwrite a key if it already exists.
85+
/// @param from (address): Account address that initiated the call
8586
struct AddObjectParams {
8687
string source;
8788
string key;
@@ -91,4 +92,5 @@ struct AddObjectParams {
9192
uint64 ttl;
9293
KeyValue[] metadata;
9394
bool overwrite;
95+
address from;
9496
}

src/wrappers/BlobManager.sol

+4-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ contract BlobManager is IBlobManager {
6262
}
6363

6464
/// @dev See {IBlobManager-deleteBlob}.
65-
function deleteBlob(address subscriber, string memory blobHash, string memory subscriptionId) external {
66-
LibBlob.deleteBlob(subscriber, blobHash, subscriptionId);
65+
function deleteBlob(address subscriber, string memory blobHash, string memory subscriptionId, address from)
66+
external
67+
{
68+
LibBlob.deleteBlob(subscriber, blobHash, subscriptionId, from);
6769
emit DeleteBlob(msg.sender, subscriber, blobHash, subscriptionId);
6870
}
6971

src/wrappers/BucketManager.sol

+14-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ contract BucketManager is IBucketManager {
4646
string memory key,
4747
string memory blobHash,
4848
string memory recoveryHash,
49-
uint64 size
49+
uint64 size,
50+
address from
5051
) external {
5152
AddObjectParams memory params = AddObjectParams({
5253
source: source,
@@ -56,7 +57,8 @@ contract BucketManager is IBucketManager {
5657
size: size,
5758
ttl: 0, // No expiration
5859
metadata: new KeyValue[](0), // No metadata
59-
overwrite: false // Do not overwrite
60+
overwrite: false, // Do not overwrite
61+
from: from
6062
});
6163
LibBucket.addObject(bucket, params);
6264
emit AddObject(msg.sender, bucket, key);
@@ -69,11 +71,19 @@ contract BucketManager is IBucketManager {
6971
}
7072

7173
/// @dev See {IBucketManager-deleteObject}.
72-
function deleteObject(address bucket, string memory key) external {
73-
LibBucket.deleteObject(bucket, key);
74+
function deleteObject(address bucket, string memory key, address from) external {
75+
LibBucket.deleteObject(bucket, key, from);
7476
emit DeleteObject(msg.sender, bucket, key);
7577
}
7678

79+
/// @dev See {IBucketManager-updateObjectMetadata}.
80+
function updateObjectMetadata(address bucket, string memory key, KeyValue[] memory metadata, address from)
81+
external
82+
{
83+
LibBucket.updateObjectMetadata(bucket, key, metadata, from);
84+
emit UpdateObjectMetadata(msg.sender, bucket, key);
85+
}
86+
7787
/// @dev See {IBucketManager-getObject}.
7888
function getObject(address bucket, string memory key) external view returns (ObjectValue memory) {
7989
return LibBucket.getObject(bucket, key);

src/wrappers/LibBlob.sol

+6-8
Original file line numberDiff line numberDiff line change
@@ -447,12 +447,6 @@ library LibBlob {
447447
return decodeBlob(data);
448448
}
449449

450-
function getBlob2(string memory blobHash) external view returns (bytes memory data) {
451-
bytes memory params = blobHash.encodeCborBlobHashOrNodeId();
452-
data = LibWasm.readFromWasmActor(ACTOR_ID, METHOD_GET_BLOB, params);
453-
return data;
454-
}
455-
456450
/// @dev Get the status of a blob.
457451
/// @param subscriber The address of the subscriber.
458452
/// @param blobHash The hash of the blob.
@@ -565,11 +559,15 @@ library LibBlob {
565559
/// @param subscriber The address of the subscriber.
566560
/// @param blobHash The hash of the blob.
567561
/// @param subscriptionId The subscription ID.
568-
function deleteBlob(address subscriber, string memory blobHash, string memory subscriptionId) external {
569-
bytes[] memory encoded = new bytes[](3);
562+
/// @param from Account address that initiated the deletion.
563+
function deleteBlob(address subscriber, string memory blobHash, string memory subscriptionId, address from)
564+
external
565+
{
566+
bytes[] memory encoded = new bytes[](4);
570567
encoded[0] = subscriber == address(0) ? LibWasm.encodeCborNull() : subscriber.encodeCborAddress();
571568
encoded[1] = blobHash.encodeCborBlobHashOrNodeId();
572569
encoded[2] = encodeSubscriptionId(subscriptionId);
570+
encoded[3] = from.encodeCborAddress();
573571
bytes memory params = encoded.encodeCborArray();
574572
// Note: response bytes are always empty
575573
LibWasm.writeToWasmActor(ACTOR_ID, METHOD_DELETE_BLOB, params);

src/wrappers/LibBucket.sol

+47-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ library LibBucket {
3131
uint64 internal constant METHOD_DELETE_OBJECT = 4237275016;
3232
uint64 internal constant METHOD_GET_OBJECT = 1894890866;
3333
uint64 internal constant METHOD_LIST_OBJECTS = 572676265;
34+
uint64 internal constant METHOD_UPDATE_OBJECT_METADATA = 540229491;
3435

3536
/// @dev Decode a CBOR encoded list.
3637
/// @param data The CBOR encoded list.
@@ -152,7 +153,7 @@ library LibBucket {
152153
/// @param params The add params.
153154
/// @return encoded The CBOR encoded add params.
154155
function encodeAddObjectParams(AddObjectParams memory params) internal pure returns (bytes memory) {
155-
bytes[] memory encoded = new bytes[](8);
156+
bytes[] memory encoded = new bytes[](9);
156157
encoded[0] = params.source.encodeCborBlobHashOrNodeId();
157158
encoded[1] = params.key.encodeCborBytes();
158159
encoded[2] = params.blobHash.encodeCborBlobHashOrNodeId();
@@ -165,6 +166,18 @@ library LibBucket {
165166
encoded[5] = params.ttl == 0 ? LibWasm.encodeCborNull() : params.ttl.encodeCborUint64();
166167
encoded[6] = params.metadata.encodeCborKeyValueMap();
167168
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();
168181
return encoded.encodeCborArray();
169182
}
170183

@@ -188,6 +201,23 @@ library LibBucket {
188201
return encoded.encodeCborArray();
189202
}
190203

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+
191221
/// @dev Convert a kind to a string.
192222
/// @param kind The kind.
193223
/// @return string The string representation of the kind.
@@ -246,12 +276,26 @@ library LibBucket {
246276
/// @dev Delete an object from the bucket.
247277
/// @param bucket The bucket.
248278
/// @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 {
250281
uint64 bucketAddr = bucket.addressToActorId();
251-
bytes memory params = key.encodeCborBytes();
282+
bytes memory params = encodeDeleteObjectParams(key, from);
252283
LibWasm.writeToWasmActor(bucketAddr, METHOD_DELETE_OBJECT, params);
253284
}
254285

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+
255299
/// @dev Get an object from the bucket.
256300
/// @param bucket The bucket.
257301
/// @param key The object key.

test/LibBucket.t.sol

+20-2
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,13 @@ contract LibBucketTest is Test {
147147
size: 6,
148148
ttl: 0, // Null value
149149
metadata: metadata,
150-
overwrite: false
150+
overwrite: false,
151+
from: 0x90F79bf6EB2c4f870365E785982E1f101E93b906
151152
});
152153
bytes memory encoded = LibBucket.encodeAddObjectParams(params);
153154
assertEq(
154155
encoded,
155-
hex"889820160618a818c918670a18791827184118ef18c818bd18ea1879187918b518cc189b18181827181a18ee18cc100718c418f308189f18dd188418d34b68656c6c6f2f776f726c649820188e184c187c181b189918db18fd185018e718a91851188518fe18ad185e18e11844188f18a90418a218fd18d7187818ea18f518f218db18fd1862189a18999820000000000000000000000000000000000000000000000000000000000000000006f6a16c636f6e74656e742d7479706578186170706c69636174696f6e2f6f637465742d73747265616df4"
156+
hex"899820160618a818c918670a18791827184118ef18c818bd18ea1879187918b518cc189b18181827181a18ee18cc100718c418f308189f18dd188418d34b68656c6c6f2f776f726c649820188e184c187c181b189918db18fd185018e718a91851188518fe18ad185e18e11844188f18a90418a218fd18d7187818ea18f518f218db18fd1862189a18999820000000000000000000000000000000000000000000000000000000000000000006f6a16c636f6e74656e742d7479706578186170706c69636174696f6e2f6f637465742d73747265616df456040a90f79bf6eb2c4f870365e785982e1f101e93b906"
156157
);
157158
}
158159

@@ -165,4 +166,21 @@ contract LibBucketTest is Test {
165166
bytes memory encoded = LibBucket.encodeCreateBucketParams(params);
166167
assertEq(encoded, hex"8356040a90f79bf6eb2c4f870365e785982e1f101e93b906664275636b6574a0");
167168
}
169+
170+
function testEncodeDeleteObjectParams() public pure {
171+
bytes memory encoded =
172+
LibBucket.encodeDeleteObjectParams("hello/world", 0x90F79bf6EB2c4f870365E785982E1f101E93b906);
173+
assertEq(encoded, hex"824b68656c6c6f2f776f726c6456040a90f79bf6eb2c4f870365e785982e1f101e93b906");
174+
}
175+
176+
function testEncodeUpdateObjectMetadataParams() public pure {
177+
KeyValue[] memory metadata = new KeyValue[](1);
178+
metadata[0] = KeyValue("alias", "foo");
179+
bytes memory encoded = LibBucket.encodeUpdateObjectMetadataParams(
180+
"hello/world", metadata, 0x90F79bf6EB2c4f870365E785982E1f101E93b906
181+
);
182+
assertEq(
183+
encoded, hex"834b68656c6c6f2f776f726c64a165616c69617363666f6f56040a90f79bf6eb2c4f870365e785982e1f101e93b906"
184+
);
185+
}
168186
}

0 commit comments

Comments
 (0)