Skip to content

Commit fd84699

Browse files
committed
📦 updates HDK for v0.4.2
1 parent bffab37 commit fd84699

File tree

9 files changed

+78
-0
lines changed

9 files changed

+78
-0
lines changed
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
tinygo build -o redis-db.wasm \
3+
-scheduler=none \
4+
--no-debug \
5+
-target wasi ./main.go
6+
ls -lh *.wasm
7+
8+
echo "📦 Building capsule-cli..."
9+
cd ../..
10+
go build -ldflags="-s -w" -o capsule
11+
ls -lh capsule
12+
mv capsule ./functions/redis-db

capsule-cli/functions/redis-db/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ func main() {
1212
// Handle function
1313
func Handle(params []byte) ([]byte, error) {
1414

15+
capsule.RedisSet("one", []byte("👋"))
1516
capsule.RedisSet("one", []byte("👋"))
1617
capsule.RedisSet("two", []byte("hello"))
1718
capsule.RedisSet("three", []byte("world"))

capsule-cli/functions/redis-db/run.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
REDIS_URI="" \
3+
./capsule --wasm=./redis-db.wasm
4+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
capsule-http-*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
tinygo build -o hello-redis-web.wasm \
3+
-scheduler=none \
4+
--no-debug \
5+
-target wasi ./main.go
6+
ls -lh *.wasm
7+
8+
echo "📦 Building capsule-http..."
9+
cd ../..
10+
go build -ldflags="-s -w" -o capsule-http
11+
ls -lh capsule-http
12+
mv capsule-http ./functions/hello-redis-web
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module hello-redis-web
2+
3+
go 1.20
4+
5+
require github.com/bots-garden/capsule-module-sdk v0.0.6
6+
7+
require github.com/valyala/fastjson v1.6.4 // indirect
8+
9+
replace github.com/bots-garden/capsule-module-sdk => ../../../../capsule-module-sdk
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
2+
github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Package main
2+
package main
3+
4+
import (
5+
//"errors"
6+
7+
"errors"
8+
9+
"github.com/bots-garden/capsule-module-sdk"
10+
)
11+
12+
func main() {
13+
14+
capsule.SetHandleHTTP(func(param capsule.HTTPRequest) (capsule.HTTPResponse, error) {
15+
16+
// get values from Redis
17+
message, errMsg := capsule.RedisGet("message")
18+
xHandle, errHandle := capsule.RedisGet("x_handle")
19+
errs := errors.Join(errMsg, errHandle)
20+
21+
if errs != nil {
22+
capsule.Log("😡 " + errs.Error())
23+
}
24+
25+
response := capsule.HTTPResponse{
26+
JSONBody: `{"message": "` + string(message) + `", "xHandle": "` + string(xHandle) + `"}`,
27+
Headers: `{"Content-Type": "application/json; charset=utf-8"}`,
28+
StatusCode: 200,
29+
}
30+
31+
return response, errs
32+
33+
})
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
REDIS_URI="" \
3+
./capsule-http --wasm=./hello-redis-web.wasm --httpPort=8080

0 commit comments

Comments
 (0)