mirror of
https://github.com/caddyserver/caddy.git
synced 2025-04-03 03:49:11 +08:00
Created basic fastcgi middleware layer
This commit is contained in:
parent
fe1978c6f5
commit
a38a2a0e4f
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,7 +1,11 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
_gitignore/
|
_gitignore/
|
||||||
|
Vagrantfile
|
||||||
|
.vagrant/
|
||||||
|
|
||||||
error.log
|
error.log
|
||||||
access.log
|
access.log
|
||||||
|
|
||||||
/*.conf
|
/*.conf
|
||||||
Caddyfile
|
Caddyfile
|
||||||
|
@ -141,11 +141,19 @@ func (d *dispenser) Err(msg string) middleware.Middleware {
|
|||||||
// Args is a convenience function that loads the next arguments
|
// Args is a convenience function that loads the next arguments
|
||||||
// (tokens on the same line) into an arbitrary number of strings
|
// (tokens on the same line) into an arbitrary number of strings
|
||||||
// pointed to in targets. If there are fewer tokens available
|
// pointed to in targets. If there are fewer tokens available
|
||||||
// than string pointers, the remaining strings will not be changed.
|
// than string pointers, the remaining strings will not be changed
|
||||||
func (d *dispenser) Args(targets ...*string) {
|
// and false will be returned. If there were enough tokens available
|
||||||
for i := 0; i < len(targets) && d.NextArg(); i++ {
|
// to fill the arguments, then true will be returned.
|
||||||
|
func (d *dispenser) Args(targets ...*string) bool {
|
||||||
|
enough := true
|
||||||
|
for i := 0; i < len(targets); i++ {
|
||||||
|
if !d.NextArg() {
|
||||||
|
enough = false
|
||||||
|
break
|
||||||
|
}
|
||||||
*targets[i] = d.Val()
|
*targets[i] = d.Val()
|
||||||
}
|
}
|
||||||
|
return enough
|
||||||
}
|
}
|
||||||
|
|
||||||
// Startup registers a function to execute when the server starts.
|
// Startup registers a function to execute when the server starts.
|
||||||
|
111
middleware/fastcgi.go
Normal file
111
middleware/fastcgi.go
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
package middleware
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"bitbucket.org/PinIdea/fcgi_client" // TODO: Inline this dependency. It'll need some work.
|
||||||
|
)
|
||||||
|
|
||||||
|
// FastCGI is middleware that acts as a FastCGI client. Requests
|
||||||
|
// that get forwarded to FastCGI stop the middleware execution
|
||||||
|
// chain. The most common use for this layer is to serve PHP
|
||||||
|
// websites with php-fpm.
|
||||||
|
func FastCGI(p parser) Middleware {
|
||||||
|
root := p.Root()
|
||||||
|
|
||||||
|
var rules []fastCgi
|
||||||
|
for p.Next() {
|
||||||
|
rule := fastCgi{}
|
||||||
|
if !p.Args(&rule.path, &rule.address) {
|
||||||
|
return p.ArgErr()
|
||||||
|
}
|
||||||
|
rules = append(rules, rule)
|
||||||
|
}
|
||||||
|
|
||||||
|
return func(next http.HandlerFunc) http.HandlerFunc {
|
||||||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
|
servedFcgi := false
|
||||||
|
for _, rule := range rules {
|
||||||
|
if Path(r.URL.Path).Matches(rule.path) {
|
||||||
|
servedFcgi = true
|
||||||
|
|
||||||
|
// Get absolute file paths
|
||||||
|
absPath, err := filepath.Abs(root + r.URL.Path)
|
||||||
|
if err != nil {
|
||||||
|
// TODO!
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get absolute file paths
|
||||||
|
absRootPath, err := filepath.Abs(root)
|
||||||
|
if err != nil {
|
||||||
|
// TODO!
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Separate remote IP and port
|
||||||
|
var ip, port string
|
||||||
|
if idx := strings.Index(r.RemoteAddr, ":"); idx > -1 {
|
||||||
|
ip = r.RemoteAddr[idx:]
|
||||||
|
port = r.RemoteAddr[:idx]
|
||||||
|
} else {
|
||||||
|
ip = r.RemoteAddr
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Do we really have to make this map from scratch for each request?
|
||||||
|
env := make(map[string]string)
|
||||||
|
env["SERVER_SOFTWARE"] = "caddy" // TODO: Obtain version info...
|
||||||
|
env["SERVER_PROTOCOL"] = r.Proto
|
||||||
|
env["SCRIPT_FILENAME"] = absPath
|
||||||
|
env["REMOTE_ADDR"] = ip
|
||||||
|
env["REMOTE_PORT"] = port
|
||||||
|
env["REQUEST_METHOD"] = r.Method
|
||||||
|
env["QUERY_STRING"] = r.URL.RawQuery
|
||||||
|
env["DOCUMENT_URI"] = r.URL.Path
|
||||||
|
env["DOCUMENT_ROOT"] = absRootPath
|
||||||
|
|
||||||
|
fcgi, err := fcgiclient.Dial("tcp", rule.address)
|
||||||
|
if err != nil {
|
||||||
|
// TODO!
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := fcgi.Get(env)
|
||||||
|
if err != nil && err != io.EOF {
|
||||||
|
// TODO!
|
||||||
|
}
|
||||||
|
|
||||||
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
// TODO!
|
||||||
|
}
|
||||||
|
|
||||||
|
for key, vals := range resp.Header {
|
||||||
|
for _, val := range vals {
|
||||||
|
w.Header().Add(key, val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(resp.StatusCode)
|
||||||
|
w.Write(body)
|
||||||
|
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !servedFcgi {
|
||||||
|
next(w, r)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type fastCgi struct {
|
||||||
|
path string
|
||||||
|
address string
|
||||||
|
}
|
@ -17,6 +17,7 @@ func init() {
|
|||||||
register("rewrite", Rewrite)
|
register("rewrite", Rewrite)
|
||||||
register("redir", Redirect)
|
register("redir", Redirect)
|
||||||
register("ext", Extensionless)
|
register("ext", Extensionless)
|
||||||
|
register("fastcgi", FastCGI)
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@ -37,7 +38,7 @@ type (
|
|||||||
NextLine() bool
|
NextLine() bool
|
||||||
NextBlock() bool
|
NextBlock() bool
|
||||||
Val() string
|
Val() string
|
||||||
Args(...*string)
|
Args(...*string) bool
|
||||||
ArgErr() Middleware
|
ArgErr() Middleware
|
||||||
Err(string) Middleware
|
Err(string) Middleware
|
||||||
Startup(func() error)
|
Startup(func() error)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user