Skip to content

Commit

Permalink
Rename portal_*RecursiveFindContent to portal_*GetContent (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhartnett authored Oct 14, 2024
1 parent 845f0e6 commit 9fd0b22
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 24 deletions.
14 changes: 8 additions & 6 deletions jsonrpc/src/content/results.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"schema": {
"title": "FindContentResult",
"type": "object",
"oneOf" :[
"oneOf": [
{
"title": "ContentInfo",
"type": "object",
Expand All @@ -58,7 +58,9 @@
"title": "ENRs",
"description": "List of ENR records of nodes that are closer than the recipient is to the requested content",
"type": "object",
"required": ["enrs"],
"required": [
"enrs"
],
"properties": {
"enrs": {
"type": "array",
Expand Down Expand Up @@ -164,8 +166,8 @@
}
}
},
"RecursiveFindContentResult": {
"name": "RecursiveFindContentResult",
"GetContentResult": {
"name": "GetContentResult",
"description": "Returns the hex encoded content value and utp transfer flag. If the content is not available, returns \"0x\"",
"schema": {
"type": "object",
Expand All @@ -185,8 +187,8 @@
}
}
},
"TraceRecursiveFindContentResult": {
"name": "TraceRecursiveFindContentResult",
"TraceGetContentResult": {
"name": "TraceGetContentResult",
"description": "Returns the hex encoded content value and trace data object. If the content is not available, returns \"0x\"",
"schema": {
"type": "object",
Expand Down
12 changes: 6 additions & 6 deletions jsonrpc/src/methods/beacon.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,30 +133,30 @@
}
},
{
"name": "portal_beaconRecursiveFindContent",
"summary": "Look up a target content key in the network",
"name": "portal_beaconGetContent",
"summary": "Get content from the local database if it exists, otherwise look up the target content key in the network. After fetching from the network the content is validated and stored in the local database if storage criteria is met before being returned.",
"params": [
{
"$ref": "#/components/contentDescriptors/ContentKey"
}
],
"result": {
"$ref": "#/components/contentDescriptors/RecursiveFindContentResult"
"$ref": "#/components/contentDescriptors/GetContentResult"
},
"errors":[{
"$ref": "#/components/errors/ContentNotFoundError"
}]
},
{
"name": "portal_beaconTraceRecursiveFindContent",
"summary": "Look up a target content key in the network and get tracing data",
"name": "portal_beaconTraceGetContent",
"summary": "Get content as defined in portal_beaconGetContent and get additional tracing data",
"params": [
{
"$ref": "#/components/contentDescriptors/ContentKey"
}
],
"result": {
"$ref": "#/components/contentDescriptors/TraceRecursiveFindContentResult"
"$ref": "#/components/contentDescriptors/TraceGetContentResult"
},
"errors":[{
"$ref": "#/components/errors/ContentNotFoundErrorWithTrace"
Expand Down
12 changes: 6 additions & 6 deletions jsonrpc/src/methods/history.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,30 +125,30 @@
}
},
{
"name": "portal_historyRecursiveFindContent",
"summary": "Look up a target content key in the network",
"name": "portal_historyGetContent",
"summary": "Get content from the local database if it exists, otherwise look up the target content key in the network. After fetching from the network the content is validated and stored in the local database if storage criteria is met before being returned.",
"params": [
{
"$ref": "#/components/contentDescriptors/ContentKey"
}
],
"result": {
"$ref": "#/components/contentDescriptors/RecursiveFindContentResult"
"$ref": "#/components/contentDescriptors/GetContentResult"
},
"errors":[{
"$ref": "#/components/errors/ContentNotFoundError"
}]
},
{
"name": "portal_historyTraceRecursiveFindContent",
"summary": "Look up a target content key in the network and get tracing data",
"name": "portal_historyTraceGetContent",
"summary": "Get content as defined in portal_historyGetContent and get additional tracing data",
"params": [
{
"$ref": "#/components/contentDescriptors/ContentKey"
}
],
"result": {
"$ref": "#/components/contentDescriptors/TraceRecursiveFindContentResult"
"$ref": "#/components/contentDescriptors/TraceGetContentResult"
},
"errors":[{
"$ref": "#/components/errors/ContentNotFoundErrorWithTrace"
Expand Down
12 changes: 6 additions & 6 deletions jsonrpc/src/methods/state.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,30 +125,30 @@
}
},
{
"name": "portal_stateRecursiveFindContent",
"summary": "Look up a target content key in the network",
"name": "portal_stateGetContent",
"summary": "Get content from the local database if it exists, otherwise look up the target content key in the network. After fetching from the network the content is validated and stored in the local database if storage criteria is met before being returned.",
"params": [
{
"$ref": "#/components/contentDescriptors/ContentKey"
}
],
"result": {
"$ref": "#/components/contentDescriptors/RecursiveFindContentResult"
"$ref": "#/components/contentDescriptors/GetContentResult"
},
"errors":[{
"$ref": "#/components/errors/ContentNotFoundError"
}]
},
{
"name": "portal_stateTraceRecursiveFindContent",
"summary": "Look up a target content key in the network and get tracing data",
"name": "portal_stateTraceGetContent",
"summary": "Get content as defined in portal_stateGetContent and get additional tracing data",
"params": [
{
"$ref": "#/components/contentDescriptors/ContentKey"
}
],
"result": {
"$ref": "#/components/contentDescriptors/TraceRecursiveFindContentResult"
"$ref": "#/components/contentDescriptors/TraceGetContentResult"
},
"errors":[{
"$ref": "#/components/errors/ContentNotFoundErrorWithTrace"
Expand Down

0 comments on commit 9fd0b22

Please sign in to comment.