-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathroute_option.go
More file actions
129 lines (119 loc) · 3.57 KB
/
route_option.go
File metadata and controls
129 lines (119 loc) · 3.57 KB
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
// Copyright 2025 The Rivaas Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package app
import (
"fmt"
"rivaas.dev/openapi"
)
// RouteOption configures a route.
// Options can configure middleware (before/after), documentation, or combine multiple options.
// This follows the functional options pattern used throughout the framework.
type RouteOption func(*routeConfig)
// routeConfig accumulates all route configuration.
type routeConfig struct {
before []HandlerFunc
after []HandlerFunc
docOpts []openapi.OperationOption
skipDoc bool // Set to true to explicitly skip documentation
validationErrors []error
}
// WithBefore adds pre-handler middleware to the route.
// Middleware added with WithBefore executes before the main handler.
//
// Example:
//
// app.GET("/users/:id", getUser,
// app.WithBefore(authMiddleware, rateLimitMiddleware),
// )
func WithBefore(handlers ...HandlerFunc) RouteOption {
return func(c *routeConfig) {
c.before = append(c.before, handlers...)
}
}
// WithAfter adds post-handler middleware to the route.
// Middleware added with WithAfter executes after the main handler.
//
// Example:
//
// app.GET("/users/:id", getUser,
// app.WithAfter(auditLogMiddleware, metricsMiddleware),
// )
func WithAfter(handlers ...HandlerFunc) RouteOption {
return func(c *routeConfig) {
c.after = append(c.after, handlers...)
}
}
// WithDoc adds OpenAPI documentation to the route.
// Documentation options are provided by the openapi package.
//
// Example:
//
// app.GET("/users/:id", getUser,
// app.WithDoc(
// openapi.Summary("Get user"),
// openapi.Description("Retrieves a user by ID"),
// openapi.Response(200, UserResponse{}),
// openapi.Response(404, ErrorResponse{}),
// openapi.Tags("users"),
// ),
// )
func WithDoc(opts ...openapi.OperationOption) RouteOption {
return func(c *routeConfig) {
c.docOpts = append(c.docOpts, opts...)
}
}
// WithoutDoc explicitly disables documentation for this route.
// This is useful when global documentation is enabled but specific routes should be excluded.
//
// Example:
//
// app.GET("/health", healthCheck,
// app.WithoutDoc(),
// )
func WithoutDoc() RouteOption {
return func(c *routeConfig) {
c.skipDoc = true
}
}
// RouteOptions combines multiple options into a single option.
// This is useful for creating reusable option sets.
//
// Example:
//
// var Authenticated = app.RouteOptions(
// app.WithBefore(authMiddleware),
// app.WithDoc(
// openapi.Security("bearerAuth"),
// openapi.Response(401, UnauthorizedError{}),
// ),
// )
//
// app.GET("/users/:id", getUser,
// Authenticated,
// app.WithDoc(
// openapi.Summary("Get user"),
// openapi.Response(200, UserResponse{}),
// ),
// )
func RouteOptions(opts ...RouteOption) RouteOption {
return func(c *routeConfig) {
for i, opt := range opts {
if opt == nil {
c.validationErrors = append(c.validationErrors, fmt.Errorf("app: route option at index %d cannot be nil", i))
continue
}
opt(c)
}
}
}