Skip to content

Commit 6aa9a01

Browse files
committed
📦 updates MDK for v0.0.4
1 parent 948e2bd commit 6aa9a01

File tree

8 files changed

+121
-17
lines changed

8 files changed

+121
-17
lines changed

Taskfile.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ tasks:
2222
env:
2323
#TAG: "v0.0.1"
2424
#TAG: "v0.0.2"
25-
TAG: "v0.0.3" # current release
26-
#TAG: "v0.0.4" # current release
25+
TAG: "v0.0.4" # current release
26+
#TAG: "v0.0.5" # it will be the next release
27+
2728
cmds:
2829
- echo "📦 Generating release..."
2930
- git add .

capsule.dk.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import "errors"
66
const isFailure = rune('F')
77
const isSuccess = rune('S')
88

9-
109
func success(buffer []byte) uint64 {
1110
return copyBufferToMemory(append([]byte(string(isSuccess)), buffer...))
1211
}
@@ -15,6 +14,16 @@ func failure(buffer []byte) uint64 {
1514
return copyBufferToMemory(append([]byte(string(isFailure)), buffer...))
1615
}
1716

17+
// Success function
18+
func Success(buffer []byte) uint64 {
19+
return success(buffer)
20+
}
21+
22+
// Failure function
23+
func Failure(buffer []byte) uint64 {
24+
return failure(buffer)
25+
}
26+
1827
// Result function
1928
func Result(data []byte,) ([]byte, error) {
2029
if data[0] == byte(isSuccess) {

docs/helpers.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# 🧰 Helpers
2+
3+
> 🚧 this is a work in progress
4+
5+
## Success and Failure
6+
> introduced in v0.0.4
7+
8+
`Success` and `Failure` copy an `[]byte` to the shared memory, and return the position and the length of the value "packed" into a single value (`uint64`).
9+
10+
If you use `Success`, the `[]byte` is prefixed by `rune('S')` before being copied to the shared memory.
11+
12+
If you use `Failure`, the `[]byte` is prefixed by `rune('F')` before being copied to the shared memory.
13+
14+
This value will be used by the function `CallHandleFunction` of the [Host SDK](https://github.com/bots-garden/capsule-host-sdk/blob/main/runtime.go) that will use the [`Result` function](https://github.com/bots-garden/capsule-host-sdk/blob/main/capsule.dk.go) to extract the result status (success or failure) and the result value (value or error).
15+
16+
```golang
17+
// Package main
18+
package main
19+
20+
import (
21+
"strconv"
22+
"github.com/bots-garden/capsule-module-sdk"
23+
)
24+
25+
// OnHealthCheck function
26+
//export OnHealthCheck
27+
func OnHealthCheck() uint64 {
28+
capsule.Print("⛑️ OnHealthCheck")
29+
30+
response := capsule.HTTPResponse{
31+
JSONBody: `{"message": "OK"}`,
32+
Headers: `{"Content-Type": "application/json; charset=utf-8"}`,
33+
StatusCode: 200,
34+
}
35+
36+
return capsule.Success([]byte(capsule.StringifyHTTPResponse(response)))
37+
}
38+
39+
func main() {
40+
capsule.SetHandleHTTP(func (param capsule.HTTPRequest) (capsule.HTTPResponse, error) {
41+
return capsule.HTTPResponse{
42+
TextBody: "👋 Hey",
43+
Headers: `{"Content-Type": "text/plain; charset=utf-8"}`,
44+
StatusCode: 200,
45+
}, nil
46+
47+
})
48+
}
49+
```
50+
> 👋 don't forget to export the `OnHealthCheck` function
51+
52+
## StringifyHTTPResponse
53+
> introduced in v0.0.4
54+
55+
`StringifyHTTPResponse` converts a `capsule.HTTPResponse` into a string.
56+
57+
```golang
58+
response := capsule.HTTPResponse{
59+
JSONBody: `{"message": "OK"}`,
60+
Headers: `{"Content-Type": "application/json; charset=utf-8"}`,
61+
StatusCode: 200,
62+
}
63+
64+
str := capsule.StringifyHTTPResponse(response)
65+
```

docs/index.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Capsule Module SDK
22

33
!!! info "What's new?"
4+
- `v0.0.4`: ✨ Add `Success` and `Failure` functions (public functionc to call `success` and `failure`) and `StringifyHTTPResponse`
5+
- `v0.0.3`: ✨ Encode `retValue.TextBody` to avoid special characters in jsonString
46
- `v0.0.2`: ✨ Redis support
57
- `v0.0.1`: 🎉 first release
68

handle.http.go

+31-9
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,40 @@ import (
77
"github.com/valyala/fastjson"
88
)
99

10-
11-
1210
var handleHTTPFunction func(param HTTPRequest) (HTTPResponse, error)
1311

1412
// SetHandleHTTP sets the handle function
1513
func SetHandleHTTP(function func(param HTTPRequest) (HTTPResponse, error)) {
1614
handleHTTPFunction = function
1715
}
1816

17+
// StringifyHTTPResponse converts a HTTPResponse to a string
18+
func StringifyHTTPResponse(response HTTPResponse) string {
19+
20+
var jsonBody string
21+
if len(response.JSONBody) == 0 {
22+
jsonBody = "{}"
23+
} else {
24+
jsonBody = response.JSONBody
25+
}
26+
27+
var textBody string
28+
if len(response.TextBody) == 0 {
29+
textBody = ""
30+
} else {
31+
// avoid special characters in jsonString
32+
textBody = base64.StdEncoding.EncodeToString([]byte(response.TextBody))
33+
//textBody = retValue.TextBody
34+
}
35+
36+
jsonHTTPResponse := `{"JSONBody":` + jsonBody + `,"TextBody":"` + textBody + `","Headers":` + response.Headers + `,"StatusCode":` + strconv.Itoa(response.StatusCode) + `}`
37+
38+
return jsonHTTPResponse
39+
}
40+
1941
//export callHandleHTTP
2042
func callHandleHTTP(JSONDataPos *uint32, JSONDataSize uint32) uint64 {
21-
43+
2244
parser := fastjson.Parser{}
2345

2446
JSONDataBuffer := readBufferFromMemory(JSONDataPos, JSONDataSize)
@@ -30,9 +52,9 @@ func callHandleHTTP(JSONDataPos *uint32, JSONDataSize uint32) uint64 {
3052
Body: string(JSONData.GetStringBytes("Body")),
3153
//JSONBody: string(JSONData.GetStringBytes("JSONBody")), //! to use in the future
3254
//TextBody: string(JSONData.GetStringBytes("TextBody")), //! to use in the future
33-
URI: string(JSONData.GetStringBytes("URI")),
34-
Method: string(JSONData.GetStringBytes("Method")),
35-
Headers: string(JSONData.GetStringBytes("Headers")),
55+
URI: string(JSONData.GetStringBytes("URI")),
56+
Method: string(JSONData.GetStringBytes("Method")),
57+
Headers: string(JSONData.GetStringBytes("Headers")),
3658
}
3759

3860
// call the handle function
@@ -49,7 +71,7 @@ func callHandleHTTP(JSONDataPos *uint32, JSONDataSize uint32) uint64 {
4971
} else {
5072
jsonBody = retValue.JSONBody
5173
}
52-
74+
5375
var textBody string
5476
if len(retValue.TextBody) == 0 {
5577
textBody = ""
@@ -59,9 +81,9 @@ func callHandleHTTP(JSONDataPos *uint32, JSONDataSize uint32) uint64 {
5981
//textBody = retValue.TextBody
6082
}
6183

62-
jsonHTTPResponse := `{"JSONBody":`+jsonBody+`,"TextBody":"`+textBody+`","Headers":`+retValue.Headers+`,"StatusCode":`+strconv.Itoa(retValue.StatusCode)+`}`
84+
jsonHTTPResponse := `{"JSONBody":` + jsonBody + `,"TextBody":"` + textBody + `","Headers":` + retValue.Headers + `,"StatusCode":` + strconv.Itoa(retValue.StatusCode) + `}`
6385

6486
// first byte == 82
6587
return success([]byte(jsonHTTPResponse))
6688

67-
}
89+
}

mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ nav:
1717
- First CLI module: first-cli-module.md
1818
- First HTTP module: first-http-module.md
1919
- 🛠️ Host functions: host-functions.md
20+
- 🧰 Helpers: helpers.md
2021

2122
theme:
2223
name: material

samples/http-say-hello/go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
github.com/bots-garden/capsule-module-sdk v0.0.3 h1:a0TRgwdiJjc+9raOe4zQoWPnzxKegqmInVmwzlaDuug=
2+
github.com/bots-garden/capsule-module-sdk v0.0.3/go.mod h1:DtKYwanz4YvBwSpu0GuuhtkeFE6+jDgEucBOTWVBMy8=
3+
github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
4+
github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=

samples/http-say-hello/main.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ func main() {
1212
capsule.SetHandleHTTP(Handle)
1313
}
1414

15-
// Handle function
15+
// Handle function
1616
func Handle(param capsule.HTTPRequest) (capsule.HTTPResponse, error) {
17-
17+
1818
capsule.Print("📝: " + param.Body)
1919
capsule.Print("🔠: " + param.Method)
2020
capsule.Print("🌍: " + param.URI)
2121
capsule.Print("👒: " + param.Headers)
22-
22+
2323
var p fastjson.Parser
2424
jsonBody, err := p.Parse(param.Body)
2525
if err != nil {
@@ -29,8 +29,8 @@ func Handle(param capsule.HTTPRequest) (capsule.HTTPResponse, error) {
2929
capsule.Log(message)
3030

3131
response := capsule.HTTPResponse{
32-
JSONBody: `{"message": "`+message+`"}`,
33-
Headers: `{"Content-Type": "application/json; charset=utf-8"}`,
32+
JSONBody: `{"message": "` + message + `"}`,
33+
Headers: `{"Content-Type": "application/json; charset=utf-8"}`,
3434
StatusCode: 200,
3535
}
3636

0 commit comments

Comments
 (0)