Skip to content

Commit 0cc7e90

Browse files
committed
📦 updates MDK for v0.0.5
1 parent 9f5e76f commit 0cc7e90

File tree

5 files changed

+71
-12
lines changed

5 files changed

+71
-12
lines changed

Taskfile.yml

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

capsule.dk.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// Package capsule SDK for WASM plugin
22
package capsule
33

4-
import "errors"
4+
import (
5+
"errors"
6+
)
57

68
const isFailure = rune('F')
79
const isSuccess = rune('S')

docs/index.md

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

33
!!! info "What's new?"
4+
- `v0.0.5`: ✨ Add 2 new helpers: `GetHeaders` (transform a JSON string to a map[string]string) and `SetHeaders` (transform a map[string]string to a JSON string)
45
- `v0.0.4`: ✨ Add the `Success` and `Failure` functions (public functions to call `success` and `failure`) and the `StringifyHTTPResponse` function
56
- `v0.0.3`: ✨ Encode `retValue.TextBody` to avoid special characters in jsonString
67
- `v0.0.2`: ✨ Redis support

hostfunc.http.go

-8
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ func HTTP(request HTTPRequest) (HTTPResponse, error) {
3838
body=""
3939
}
4040

41-
4241
// TODO: we can only have one Body...
4342
var jsonHTTPRequest string
4443
/*
@@ -57,8 +56,6 @@ func HTTP(request HTTPRequest) (HTTPResponse, error) {
5756
jsonHTTPRequest = `{"JSONBody":{},"TextBody":"` + body + `","URI":"` + request.URI + `","Headers":` + request.Headers + `,"Method":"` + request.Method + `"}`
5857
}
5958

60-
61-
6259
jsonHTTPRequestPosition, jsonHTTPRequestSize := getBufferPosSize([]byte(jsonHTTPRequest))
6360

6461
// This will be use to get the response from the host
@@ -126,8 +123,3 @@ func HTTP(request HTTPRequest) (HTTPResponse, error) {
126123
}, nil
127124
}
128125

129-
/* Documentation
130-
131-
132-
133-
*/

models.go

+63
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package capsule
22

3+
import "strings"
4+
35
// HTTPRequest is the data of the http request
46
type HTTPRequest struct {
57
Body string
@@ -18,3 +20,64 @@ type HTTPResponse struct {
1820
Headers string
1921
StatusCode int
2022
}
23+
24+
// strSeparator is use to create a string from a slice
25+
// ex: "Content-Type":"application/json; charset=utf-8","PRIVATE-TOKEN":"glpat-mmysLDdMx532zxHgsgzF"
26+
const strSeparator = ","
27+
// fieldSeparator is used to create a slice from a map
28+
// ex: "PRIVATE-TOKEN":"glpat-mmysLDdMx532zxHgsgzF"
29+
const fieldSeparator = ":"
30+
// quote is used to create a slice from a map
31+
// to add double quote before and after a fieldname or a value
32+
const quote = "\""
33+
34+
35+
// createStringFromSlice creates a string from a slice of strings
36+
func createStringFromSlice(strSlice []string, separator string) string {
37+
return strings.Join(strSlice[:], separator)
38+
}
39+
40+
// createSliceFromMap creates a slice of strings from a maps of strings
41+
func createSliceFromMap(strMap map[string]string) []string {
42+
var strSlice []string
43+
for field, value := range strMap {
44+
strSlice = append(strSlice, quote+field+quote+fieldSeparator+quote+value+quote)
45+
}
46+
return strSlice
47+
}
48+
49+
// createSliceFromString creates a slice of string from a string
50+
func createSliceFromString(str string, separator string) []string {
51+
return strings.Split(str, separator)
52+
}
53+
// createMapFromSlice creates a map from a slice of string
54+
func createMapFromSlice(strSlice []string, separator string, remove string) map[string]string {
55+
strMap := make(map[string]string)
56+
for _, item := range strSlice {
57+
58+
item = strings.ReplaceAll(item, remove, "")
59+
res := strings.Split(item, separator)
60+
61+
if len(res) >= 2 { // for example: "https://gitlab.com" and separator is ":"
62+
strMap[res[0]] = strings.Join(res[1:], separator)
63+
} else {
64+
if len(res) > 1 {
65+
strMap[res[0]] = res[1]
66+
}
67+
}
68+
}
69+
return strMap
70+
}
71+
72+
// GetHeaders return a map of headers from a string of headers
73+
// transform a JSON string to a map[string]string
74+
func GetHeaders(headers string) map[string]string {
75+
return createMapFromSlice(createSliceFromString(headers, ","), ":", `"`)
76+
}
77+
78+
// SetHeaders return a string of headers from a map of headers
79+
// transform a map[string]string to a JSON string
80+
func SetHeaders(headers map[string]string) string {
81+
return "{"+createStringFromSlice(createSliceFromMap(headers), strSeparator)+"}"
82+
}
83+

0 commit comments

Comments
 (0)