-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
126 lines (104 loc) · 3 KB
/
main.go
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
package main
import (
"log"
"mime/multipart"
"net/http"
"time"
"github.com/fourcels/rest"
"github.com/golang-jwt/jwt/v5"
echojwt "github.com/labstack/echo-jwt/v4"
"github.com/labstack/echo/v4"
)
var signingKey = []byte("secret")
func main() {
s := rest.NewService("/api")
s.OpenAPI.Info.WithTitle("Advance Example")
s.WithTags("Login", "Empty")
s.WithHttpBearerSecurity("bearerAuth")
s.POST("/login", login())
s.POST("/upload", upload())
s.GET("/empty", empty())
admin := s.Group("/admin", rest.WithTags("Admin"), rest.WithSecurity("bearerAuth"))
admin.Use(echojwt.JWT(signingKey))
admin.GET("/hello", hello())
// Swagger UI endpoint at /docs.
s.Docs("/docs", map[string]any{
"persistAuthorization": true,
})
// Start server.
log.Println("http://localhost:1323/api/docs")
s.Start(":1323")
}
type jwtCustomClaims struct {
Name string `json:"name"`
Admin bool `json:"admin"`
jwt.RegisteredClaims
}
func login() rest.Interactor {
// Declare input port type.
type input struct {
Username string `json:"username ,omitempty" minLength:"3"`
Password string `json:"password,omitempty" minLength:"3" default:"a12345"`
Username2 string `json:"username2,omitempty"`
}
// Declare output port type.
type output struct {
Token string `json:"token"`
}
// jwtCustomClaims are custom claims extending default ones.
// See https://github.com/golang-jwt/jwt for more examples
return rest.NewHandler(func(c echo.Context, in input, out *output) error {
username := in.Username
password := in.Password
// Throws unauthorized error
if username != "admin" || password != "a12345" {
return echo.NewHTTPError(http.StatusBadRequest, "Incorrect username or password")
}
// Set custom claims
claims := &jwtCustomClaims{
"Jon Snow",
true,
jwt.RegisteredClaims{
ExpiresAt: jwt.NewNumericDate(time.Now().Add(time.Hour * 72)),
},
}
// Create token with claims
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
// Generate encoded token and send it as response.
t, err := token.SignedString(signingKey)
if err != nil {
return err
}
out.Token = t
return nil
}, rest.WithSummary("login"), rest.WithTags("Login"))
}
func hello() rest.Interactor {
return rest.NewHandler(func(c echo.Context, in struct{}, out *string) error {
user := c.Get("user").(*jwt.Token)
claims := user.Claims.(jwt.MapClaims)
name := claims["name"].(string)
*out = "Welcome " + name + "!"
return nil
})
}
func upload() rest.Interactor {
// Declare input port type.
type input struct {
Type uint `query:"type"`
File *multipart.FileHeader `formData:"file"`
}
// Declare output port type.
type output struct {
Filename string `json:"filename"`
}
return rest.NewHandler(func(c echo.Context, in input, out *output) error {
out.Filename = in.File.Filename
return nil
}, rest.WithTags("Upload"))
}
func empty() rest.Interactor {
return rest.NewHandler(func(c echo.Context, in struct{}, out *rest.NoContent) error {
return nil
}, rest.WithTags("Empty"))
}