File size: 6,448 Bytes
530729e |
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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package fasthttp
import (
"bytes"
"errors"
"io"
"net/http"
"net/url"
"strings"
"github.com/GoAdminGroup/go-admin/adapter"
"github.com/GoAdminGroup/go-admin/context"
"github.com/GoAdminGroup/go-admin/engine"
"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/GoAdminGroup/go-admin/plugins"
"github.com/GoAdminGroup/go-admin/plugins/admin/models"
"github.com/GoAdminGroup/go-admin/plugins/admin/modules/constant"
"github.com/GoAdminGroup/go-admin/template/types"
"github.com/buaazp/fasthttprouter"
"github.com/valyala/fasthttp"
)
// Fasthttp structure value is a Fasthttp GoAdmin adapter.
type Fasthttp struct {
adapter.BaseAdapter
ctx *fasthttp.RequestCtx
app *fasthttprouter.Router
}
func init() {
engine.Register(new(Fasthttp))
}
// User implements the method Adapter.User.
func (fast *Fasthttp) User(ctx interface{}) (models.UserModel, bool) {
return fast.GetUser(ctx, fast)
}
// Use implements the method Adapter.Use.
func (fast *Fasthttp) Use(app interface{}, plugs []plugins.Plugin) error {
return fast.GetUse(app, plugs, fast)
}
// Content implements the method Adapter.Content.
func (fast *Fasthttp) Content(ctx interface{}, getPanelFn types.GetPanelFn, fn context.NodeProcessor, btns ...types.Button) {
fast.GetContent(ctx, getPanelFn, fast, btns, fn)
}
type HandlerFunc func(ctx *fasthttp.RequestCtx) (types.Panel, error)
func Content(handler HandlerFunc) fasthttp.RequestHandler {
return func(ctx *fasthttp.RequestCtx) {
engine.Content(ctx, func(ctx interface{}) (types.Panel, error) {
return handler(ctx.(*fasthttp.RequestCtx))
})
}
}
// SetApp implements the method Adapter.SetApp.
func (fast *Fasthttp) SetApp(app interface{}) error {
var (
eng *fasthttprouter.Router
ok bool
)
if eng, ok = app.(*fasthttprouter.Router); !ok {
return errors.New("fasthttp adapter SetApp: wrong parameter")
}
fast.app = eng
return nil
}
// AddHandler implements the method Adapter.AddHandler.
func (fast *Fasthttp) AddHandler(method, path string, handlers context.Handlers) {
fast.app.Handle(strings.ToUpper(method), path, func(c *fasthttp.RequestCtx) {
httpreq := convertCtx(c)
ctx := context.NewContext(httpreq)
var params = make(map[string]string)
c.VisitUserValues(func(i []byte, i2 interface{}) {
if value, ok := i2.(string); ok {
params[string(i)] = value
}
})
for key, value := range params {
if httpreq.URL.RawQuery == "" {
httpreq.URL.RawQuery += strings.ReplaceAll(key, ":", "") + "=" + value
} else {
httpreq.URL.RawQuery += "&" + strings.ReplaceAll(key, ":", "") + "=" + value
}
}
ctx.SetHandlers(handlers).Next()
for key, head := range ctx.Response.Header {
c.Response.Header.Set(key, head[0])
}
if ctx.Response.Body != nil {
buf := new(bytes.Buffer)
_, _ = buf.ReadFrom(ctx.Response.Body)
_, _ = c.WriteString(buf.String())
}
c.Response.SetStatusCode(ctx.Response.StatusCode)
})
}
func convertCtx(ctx *fasthttp.RequestCtx) *http.Request {
var r http.Request
body := ctx.PostBody()
r.Method = string(ctx.Method())
r.Proto = "HTTP/1.1"
r.ProtoMajor = 1
r.ProtoMinor = 1
r.RequestURI = string(ctx.RequestURI())
r.ContentLength = int64(len(body))
r.Host = string(ctx.Host())
r.RemoteAddr = ctx.RemoteAddr().String()
hdr := make(http.Header)
ctx.Request.Header.VisitAll(func(k, v []byte) {
sk := string(k)
sv := string(v)
switch sk {
case "Transfer-Encoding":
r.TransferEncoding = append(r.TransferEncoding, sv)
default:
hdr.Set(sk, sv)
}
})
r.Header = hdr
r.Body = &netHTTPBody{body}
rURL, err := url.ParseRequestURI(r.RequestURI)
if err != nil {
ctx.Logger().Printf("cannot parse requestURI %q: %s", r.RequestURI, err)
ctx.Error("Internal Server Error", fasthttp.StatusInternalServerError)
return &r
}
r.URL = rURL
return &r
}
type netHTTPBody struct {
b []byte
}
func (r *netHTTPBody) Read(p []byte) (int, error) {
if len(r.b) == 0 {
return 0, io.EOF
}
n := copy(p, r.b)
r.b = r.b[n:]
return n, nil
}
func (r *netHTTPBody) Close() error {
r.b = r.b[:0]
return nil
}
// Name implements the method Adapter.Name.
func (*Fasthttp) Name() string {
return "fasthttp"
}
// SetContext implements the method Adapter.SetContext.
func (*Fasthttp) SetContext(contextInterface interface{}) adapter.WebFrameWork {
var (
ctx *fasthttp.RequestCtx
ok bool
)
if ctx, ok = contextInterface.(*fasthttp.RequestCtx); !ok {
panic("fasthttp adapter SetContext: wrong parameter")
}
return &Fasthttp{ctx: ctx}
}
// Redirect implements the method Adapter.Redirect.
func (fast *Fasthttp) Redirect() {
fast.ctx.Redirect(config.Url(config.GetLoginUrl()), http.StatusFound)
}
// SetContentType implements the method Adapter.SetContentType.
func (fast *Fasthttp) SetContentType() {
fast.ctx.Response.Header.Set("Content-Type", fast.HTMLContentType())
}
// Write implements the method Adapter.Write.
func (fast *Fasthttp) Write(body []byte) {
_, _ = fast.ctx.Write(body)
}
// GetCookie implements the method Adapter.GetCookie.
func (fast *Fasthttp) GetCookie() (string, error) {
return string(fast.ctx.Request.Header.Cookie(fast.CookieKey())), nil
}
// Lang implements the method Adapter.Lang.
func (fast *Fasthttp) Lang() string {
return string(fast.ctx.Request.URI().QueryArgs().Peek("__ga_lang"))
}
// Path implements the method Adapter.Path.
func (fast *Fasthttp) Path() string {
return string(fast.ctx.Path())
}
// Method implements the method Adapter.Method.
func (fast *Fasthttp) Method() string {
return string(fast.ctx.Method())
}
// FormParam implements the method Adapter.FormParam.
func (fast *Fasthttp) FormParam() url.Values {
f, _ := fast.ctx.MultipartForm()
if f != nil {
return f.Value
}
return url.Values{}
}
// IsPjax implements the method Adapter.IsPjax.
func (fast *Fasthttp) IsPjax() bool {
return string(fast.ctx.Request.Header.Peek(constant.PjaxHeader)) == "true"
}
// Query implements the method Adapter.Query.
func (fast *Fasthttp) Query() url.Values {
queryStr := fast.ctx.URI().QueryString()
queryObj, err := url.Parse(string(queryStr))
if err != nil {
return url.Values{}
}
return queryObj.Query()
}
// Request implements the method Adapter.Request.
func (fast *Fasthttp) Request() *http.Request {
return convertCtx(fast.ctx)
} |