-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclassfile.go
212 lines (169 loc) · 5.34 KB
/
classfile.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
* Copyright (c) 2023 The GoPlus Authors (goplus.org). All rights reserved.
*
* 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 yap
import (
"context"
"io"
"io/fs"
"net/http"
"github.com/qiniu/x/http/fsx"
)
const (
GopPackage = true
)
// App is project class of YAP classfile (old version).
type App struct {
Engine
}
// Get is a shortcut for router.Route(http.MethodGet, path, handle)
func (p *App) Get(path string, handle func(ctx *Context)) {
p.Route(http.MethodGet, path, handle)
}
// Head is a shortcut for router.Route(http.MethodHead, path, handle)
func (p *App) Head(path string, handle func(ctx *Context)) {
p.Route(http.MethodHead, path, handle)
}
// Options is a shortcut for router.Route(http.MethodOptions, path, handle)
func (p *App) Options(path string, handle func(ctx *Context)) {
p.Route(http.MethodOptions, path, handle)
}
// Post is a shortcut for router.Route(http.MethodPost, path, handle)
func (p *App) Post(path string, handle func(ctx *Context)) {
p.Route(http.MethodPost, path, handle)
}
// Put is a shortcut for router.Route(http.MethodPut, path, handle)
func (p *App) Put(path string, handle func(ctx *Context)) {
p.Route(http.MethodPut, path, handle)
}
// Patch is a shortcut for router.Route(http.MethodPatch, path, handle)
func (p *App) Patch(path string, handle func(ctx *Context)) {
p.Route(http.MethodPatch, path, handle)
}
// Delete is a shortcut for router.Route(http.MethodDelete, path, handle)
func (p *App) Delete(path string, handle func(ctx *Context)) {
p.Route(http.MethodDelete, path, handle)
}
// Static serves static files from a dir (default is "$YapFS/static").
func (p *App) Static__0(pattern string, dir ...fs.FS) {
p.Static(pattern, dir...)
}
// Static serves static files from a http file system scheme (url).
// See https://pkg.go.dev/github.com/qiniu/x/http/fsx for more information.
func (p *App) Static__1(pattern string, ctx context.Context, url string) (closer fsx.Closer, err error) {
fs, closer, err := fsx.Open(ctx, url)
if err == nil {
p.StaticHttp(pattern, fs, false)
}
return
}
// Static serves static files from a http file system.
func (p *App) Static__2(pattern string, fs http.FileSystem, allowRedirect ...bool) {
p.StaticHttp(pattern, fs, allowRedirect...)
}
// AppType represents an abstract of YAP applications.
type AppType interface {
InitYap(fs ...fs.FS)
SetLAS(listenAndServe func(addr string, handler http.Handler) error)
ProtoRoute(method, path string, proto HandlerProto)
ProtoHandle(pattern string, proto HandlerProto)
Run(addr string, mws ...func(h http.Handler) http.Handler) error
}
var (
_ AppType = (*App)(nil)
_ AppType = (*Engine)(nil)
)
// Gopt_App_Main is required by Go+ compiler as the entry of a YAP project.
func Gopt_App_Main(app AppType) {
app.InitYap()
app.(interface{ MainEntry() }).MainEntry()
}
const (
mimeText = "text/plain"
mimeHtml = "text/html"
mimeBinary = "application/octet-stream"
)
func (p *Context) Text__0(code int, mime string, text string) {
p.TEXT(code, mime, text)
}
func (p *Context) Text__1(code int, text string) {
p.TEXT(code, mimeText, text)
}
func (p *Context) Text__2(text string) {
p.TEXT(200, mimeText, text)
}
func (p *Context) Text__3(code int, text []byte) {
p.DATA(code, mimeText, text)
}
func (p *Context) Text__4(text []byte) {
p.DATA(200, mimeText, text)
}
func (p *Context) Binary__0(code int, mime string, data []byte) {
p.DATA(code, mime, data)
}
func (p *Context) Binary__1(code int, data []byte) {
p.DATA(code, mimeBinary, data)
}
func (p *Context) Binary__2(data []byte) {
p.DATA(200, mimeBinary, data)
}
func (p *Context) Binary__3(code int, data string) {
p.TEXT(code, mimeBinary, data)
}
func (p *Context) Binary__4(data string) {
p.TEXT(200, mimeBinary, data)
}
func (p *Context) Html__0(code int, text string) {
p.TEXT(code, mimeHtml, text)
}
func (p *Context) Html__1(text string) {
p.TEXT(200, mimeHtml, text)
}
func (p *Context) Html__2(code int, text []byte) {
p.DATA(code, mimeHtml, text)
}
func (p *Context) Html__3(text []byte) {
p.DATA(200, mimeHtml, text)
}
func (p *Context) Json__0(code int, data any) {
p.JSON(code, data)
}
func (p *Context) Json__1(data any) {
p.JSON(200, data)
}
func (p *Context) PrettyJson__0(code int, data any) {
p.PrettyJSON(code, data)
}
func (p *Context) PrettyJson__1(data any) {
p.PrettyJSON(200, data)
}
func (p *Context) Yap__0(code int, yapFile string, data any) {
p.YAP(code, yapFile, data)
}
func (p *Context) Yap__1(yapFile string, data any) {
p.YAP(200, yapFile, data)
}
func (p *Context) Stream__0(code int, mime string, read io.Reader, buf []byte) {
p.STREAM(code, mime, read, buf)
}
func (p *Context) Stream__1(code int, mime string, read io.Reader) {
p.STREAM(code, mime, read, nil)
}
func (p *Context) Stream__2(read io.Reader, buf []byte) {
p.STREAM(200, "", read, buf)
}
func (p *Context) Stream__3(read io.Reader) {
p.STREAM(200, "", read, nil)
}