aicra/router.go

161 lines
3.8 KiB
Go
Raw Normal View History

package gfw
import (
"encoding/json"
2018-05-30 07:06:26 +00:00
"git.xdrm.io/xdrm-brackets/gfw/config"
2018-06-01 07:09:26 +00:00
"git.xdrm.io/xdrm-brackets/gfw/err"
"git.xdrm.io/xdrm-brackets/gfw/implement"
2018-06-01 08:51:51 +00:00
"git.xdrm.io/xdrm-brackets/gfw/request"
"log"
"net/http"
)
2018-06-01 08:51:51 +00:00
func (s *Server) route(res http.ResponseWriter, httpReq *http.Request) {
/* (1) Build request
---------------------------------------------------------*/
/* (1) Try to build request */
2018-06-01 08:51:51 +00:00
req, err2 := request.Build(httpReq)
2018-06-01 07:09:26 +00:00
if err2 != nil {
2018-06-01 08:51:51 +00:00
log.Fatal(err2)
}
/* (2) Find a controller
---------------------------------------------------------*/
2018-06-01 08:51:51 +00:00
controller := s.findController(req)
/* (3) Check method
---------------------------------------------------------*/
2018-06-01 08:51:51 +00:00
var method *config.Method
if method = controller.Method(httpReq.Method); method == nil {
2018-06-01 07:09:26 +00:00
Json, _ := err.UnknownMethod.MarshalJSON()
res.Header().Add("Content-Type", "application/json")
res.Write(Json)
2018-06-01 07:09:26 +00:00
log.Printf("[err] %s\n", err.UnknownMethod.Reason)
return
}
2018-05-29 17:01:20 +00:00
/* (4) Check parameters
---------------------------------------------------------*/
2018-06-01 07:09:26 +00:00
var paramError err.Error = err.Success
2018-05-29 17:01:20 +00:00
parameters := make(map[string]interface{})
for name, param := range method.Parameters {
/* (1) Rename */
rename := *param.Rename
/* (2) Extract value */
2018-06-01 08:51:51 +00:00
p, isset := req.Data.Set[name]
/* (3) Required & missing */
2018-05-29 17:01:20 +00:00
if !isset && !*param.Optional {
2018-06-01 07:09:26 +00:00
paramError = err.MissingParam
2018-05-29 17:01:20 +00:00
paramError.BindArgument(name)
break
}
/* (4) Optional & missing: set default value */
2018-05-29 17:01:20 +00:00
if !isset {
2018-06-01 08:51:51 +00:00
p = &request.Parameter{
2018-05-29 17:01:20 +00:00
Parsed: true,
File: param.Type == "FILE",
Value: nil,
}
if param.Default != nil {
p.Value = *param.Default
}
// we are done
parameters[rename] = p.Value
continue
}
/* (5) Parse parameter if not file */
2018-06-01 08:51:51 +00:00
if !p.File {
p.Parse()
}
/* (6) Fail on unexpected multipart file */
2018-05-29 17:01:20 +00:00
waitFile, gotFile := param.Type == "FILE", p.File
if gotFile && !waitFile || !gotFile && waitFile {
2018-06-01 07:09:26 +00:00
paramError = err.InvalidParam
paramError.BindArgument(rename)
2018-05-29 17:01:20 +00:00
paramError.BindArgument("FILE")
break
}
/* (7) Do not check if file */
2018-05-29 17:01:20 +00:00
if gotFile {
parameters[rename] = p.Value
2018-05-29 17:01:20 +00:00
continue
}
/* (8) Check type */
2018-05-29 17:01:20 +00:00
if s.Checker.Run(param.Type, p.Value) != nil {
2018-06-01 07:09:26 +00:00
paramError = err.InvalidParam
paramError.BindArgument(rename)
paramError.BindArgument(param.Type)
paramError.BindArgument(p.Value)
break
2018-05-29 17:01:20 +00:00
}
parameters[rename] = p.Value
2018-05-29 17:01:20 +00:00
}
// Fail if argument check failed
2018-06-01 07:09:26 +00:00
if paramError.Code != err.Success.Code {
Json, _ := paramError.MarshalJSON()
res.Header().Add("Content-Type", "application/json")
res.Write(Json)
log.Printf("[err] %s\n", paramError.Reason)
return
}
2018-06-01 07:09:26 +00:00
/* (5) Load controller
---------------------------------------------------------*/
2018-06-01 08:51:51 +00:00
callable, err := req.LoadController(httpReq.Method)
2018-06-01 07:09:26 +00:00
if err != nil {
log.Printf("[err] %s\n", err)
return
}
/* (6) Execute and get response
---------------------------------------------------------*/
/* (1) Execute */
responseBarebone := implement.NewResponse()
response := callable(parameters, responseBarebone)
/* (2) Build JSON response */
formattedResponse := response.Dump()
formattedResponse["error"] = response.Err.Code
formattedResponse["reason"] = response.Err.Reason
if response.Err.Arguments != nil && len(response.Err.Arguments) > 0 {
formattedResponse["args"] = response.Err.Arguments
2018-06-01 07:09:26 +00:00
}
jsonResponse, _ := json.Marshal(formattedResponse)
res.Header().Add("Content-Type", "application/json")
res.Write(jsonResponse)
return
}
2018-06-01 07:09:26 +00:00
2018-06-01 08:51:51 +00:00
func (s *Server) findController(req *request.Request) *config.Controller {
2018-06-01 07:09:26 +00:00
2018-06-01 08:51:51 +00:00
/* (1) Try to browse by URI */
pathi, ctl := s.config.Browse(req.Uri)
2018-06-01 07:09:26 +00:00
2018-06-01 08:51:51 +00:00
/* (2) Set controller uri */
req.Path = make([]string, 0, pathi)
req.Path = append(req.Path, req.Uri[:pathi]...)
2018-06-01 07:09:26 +00:00
/* (3) Extract & store URI params */
2018-06-01 08:51:51 +00:00
req.Data.SetUri(req.Uri[pathi:])
2018-06-01 07:09:26 +00:00
/* (4) Return controller */
return ctl
}