Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Drone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Drone
Commits
a051fe7c
Unverified
Commit
a051fe7c
authored
1 year ago
by
Emre
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
support both int, and string in the ID field
parent
b3a39c77
No related branches found
Branches containing commit
No related tags found
1 merge request
!1
New caching system plus various other fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main.rs
+14
-5
14 additions, 5 deletions
src/main.rs
with
14 additions
and
5 deletions
src/main.rs
+
14
−
5
View file @
a051fe7c
...
...
@@ -47,11 +47,20 @@ enum APICall {
Batch
(
Vec
<
APIRequest
>
),
}
// Enum for id in JSONRPC body.
#[derive(Serialize,
Deserialize,
Debug,
Clone)]
#[serde(untagged)]
enum
ID
{
Str
(
String
),
Int
(
u32
),
}
// Structure for API calls.
#[derive(Serialize,
Deserialize,
Debug)]
struct
APIRequest
{
jsonrpc
:
String
,
id
:
String
,
id
:
ID
,
method
:
String
,
#[serde(skip_serializing_if
=
"Option::is_none"
)]
params
:
Option
<
Value
>
,
...
...
@@ -79,7 +88,7 @@ impl Serialize for ErrorField {
#[derive(Serialize,
Deserialize,
Debug)]
struct
ErrorStructure
{
jsonrpc
:
String
,
id
:
String
,
id
:
ID
,
code
:
i32
,
message
:
String
,
error
:
ErrorField
,
...
...
@@ -95,7 +104,7 @@ enum Endpoints {
struct
APICallResponse
{
jsonrpc
:
String
,
result
:
Value
,
id
:
String
,
id
:
ID
,
cached
:
bool
,
}
...
...
@@ -315,7 +324,7 @@ async fn api_call(
Err
(
_
)
=>
{
return
HttpResponse
::
InternalServerError
()
.json
(
ErrorStructure
{
jsonrpc
:
"2.0"
.to_string
(),
id
:
"0"
.to_string
(
),
id
:
ID
::
Int
(
0
),
code
:
-
32000
,
message
:
"Internal Server Error"
.to_string
(),
error
:
ErrorField
::
Message
(
"Invalid Cloudflare Proxy Header."
.to_string
()),
...
...
@@ -343,7 +352,7 @@ async fn api_call(
if
requests
.len
()
>
100
{
return
HttpResponse
::
InternalServerError
()
.json
(
ErrorStructure
{
jsonrpc
:
"2.0"
.to_string
(),
id
:
"0"
.to_string
(
),
id
:
ID
::
Int
(
0
),
code
:
-
32600
,
message
:
"Request parameter error."
.to_string
(),
error
:
ErrorField
::
Message
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment