forked from sqlpage/SQLPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path55_request_body.sql
135 lines (107 loc) · 4.09 KB
/
55_request_body.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
INSERT INTO sqlpage_functions (
"name",
"introduced_in_version",
"icon",
"description_md"
)
VALUES (
'request_body',
'0.33.0',
'http-post',
'Returns the raw request body as a string.
A client (like a web browser, mobile app, or another server) can send information to your server in the request body.
This function allows you to read that information in your SQL code,
in order to create or update a resource in your database for instance.
The request body is commonly used when building **REST APIs** (machines-to-machines interfaces)
that receive data from the client.
This is especially useful in:
- `POST` and `PUT` requests for creating or updating resources in your database
- Any API endpoint that needs to receive complex data
### Example: Building a REST API
Here''s an example of building an API endpoint that receives a json object,
and inserts it into a database.
#### `api/create_user.sql`
```sql
-- Get the raw JSON body
set user_data = sqlpage.request_body();
-- Insert the user into database
with parsed_data as (
select
json_extract($user_data, ''$.name'') as name,
json_extract($user_data, ''$.email'') as email
)
insert into users (name, email)
select name, email from parsed_data;
-- Return success response
select ''json'' as component,
json_object(
''status'', ''success'',
''message'', ''User created successfully''
) as contents;
```
### Testing the API
You can test this API using curl:
```bash
curl -X POST http://localhost:8080/api/create_user \
-H "Content-Type: application/json" \
-d ''{"name": "John", "email": "[email protected]"}''
```
## Special cases
### NULL
This function returns NULL if:
- There is no request body
- The request content type is `application/x-www-form-urlencoded` or `multipart/form-data`
(in these cases, use [`sqlpage.variables(''post'')`](?function=variables) instead)
### Binary data
If the request body is not valid text encoded in UTF-8,
invalid characters are replaced with the Unicode replacement character `�` (U+FFFD).
If you need to handle binary data,
use [`sqlpage.request_body_base64()`](?function=request_body_base64) instead.
'
);
INSERT INTO sqlpage_functions (
"name",
"introduced_in_version",
"icon",
"description_md"
)
VALUES (
'request_body_base64',
'0.33.0',
'photo-up',
'Returns the raw request body encoded in base64. This is useful when receiving binary data or when you need to handle non-text content in your API endpoints.
### What is Base64?
Base64 is a way to encode binary data (like images or files) into text that can be safely stored and transmitted. This function automatically converts the incoming request body into this format.
### Example: Handling Binary Data in an API
This example shows how to receive and process an image uploaded directly in the request body:
```sql
-- Assuming this is api/upload_image.sql
-- Client would send a POST request with the raw image data
-- Get the base64-encoded image data
set image_data = sqlpage.request_body_base64();
-- Store the image data in the database
insert into images (data, uploaded_at)
values ($image_data, current_timestamp);
-- Return success response
select ''json'' as component,
json_object(
''status'', ''success'',
''message'', ''Image uploaded successfully''
) as contents;
```
You can test this API using curl:
```bash
curl -X POST http://localhost:8080/api/upload_image.sql \
-H "Content-Type: application/octet-stream" \
--data-binary "@/path/to/image.jpg"
```
This is particularly useful when:
- Working with binary data (images, files, etc.)
- The request body contains non-UTF8 characters
- You need to pass the raw body to another system that expects base64
> Note: Like [`sqlpage.request_body()`](?function=request_body), this function returns NULL if:
> - There is no request body
> - The request content type is `application/x-www-form-urlencoded` or `multipart/form-data`
> (in these cases, use [`sqlpage.variables(''post'')`](?function=variables) instead)
'
);