2015-05-05 01:04:17 +08:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
2015-06-23 10:19:48 +08:00
|
|
|
"fmt"
|
2015-07-31 02:29:41 +08:00
|
|
|
"io"
|
2015-05-05 01:04:17 +08:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strconv"
|
|
|
|
|
2015-07-31 02:29:41 +08:00
|
|
|
"github.com/hashicorp/go-syslog"
|
2015-05-05 01:04:17 +08:00
|
|
|
"github.com/mholt/caddy/middleware"
|
|
|
|
"github.com/mholt/caddy/middleware/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Errors configures a new gzip middleware instance.
|
|
|
|
func Errors(c *Controller) (middleware.Middleware, error) {
|
|
|
|
handler, err := errorsParse(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the log file for writing when the server starts
|
|
|
|
c.Startup = append(c.Startup, func() error {
|
|
|
|
var err error
|
2015-09-02 21:13:31 +08:00
|
|
|
var writer io.Writer
|
2015-05-05 01:04:17 +08:00
|
|
|
|
|
|
|
if handler.LogFile == "stdout" {
|
2015-09-02 21:13:31 +08:00
|
|
|
writer = os.Stdout
|
2015-05-05 01:04:17 +08:00
|
|
|
} else if handler.LogFile == "stderr" {
|
2015-09-02 21:13:31 +08:00
|
|
|
writer = os.Stderr
|
2015-07-31 02:29:41 +08:00
|
|
|
} else if handler.LogFile == "syslog" {
|
2015-09-02 21:13:31 +08:00
|
|
|
writer, err = gsyslog.NewLogger(gsyslog.LOG_ERR, "LOCAL0", "caddy")
|
2015-07-31 02:29:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-05 01:04:17 +08:00
|
|
|
} else if handler.LogFile != "" {
|
2015-09-02 21:13:31 +08:00
|
|
|
var file *os.File
|
|
|
|
file, err = os.OpenFile(handler.LogFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
|
2015-05-05 01:04:17 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 21:13:31 +08:00
|
|
|
if handler.LogRoller != nil {
|
|
|
|
file.Close()
|
|
|
|
|
|
|
|
handler.LogRoller.Filename = handler.LogFile
|
|
|
|
|
|
|
|
writer = handler.LogRoller.GetLogWriter()
|
|
|
|
} else {
|
|
|
|
writer = file
|
2015-08-08 22:13:10 +08:00
|
|
|
}
|
2015-05-05 01:04:17 +08:00
|
|
|
}
|
|
|
|
|
2015-09-02 21:13:31 +08:00
|
|
|
handler.Log = log.New(writer, "", 0)
|
2015-05-05 01:04:17 +08:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return func(next middleware.Handler) middleware.Handler {
|
|
|
|
handler.Next = next
|
|
|
|
return handler
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func errorsParse(c *Controller) (*errors.ErrorHandler, error) {
|
|
|
|
// Very important that we make a pointer because the Startup
|
|
|
|
// function that opens the log file must have access to the
|
|
|
|
// same instance of the handler, not a copy.
|
|
|
|
handler := &errors.ErrorHandler{ErrorPages: make(map[int]string)}
|
|
|
|
|
|
|
|
optionalBlock := func() (bool, error) {
|
|
|
|
var hadBlock bool
|
|
|
|
|
|
|
|
for c.NextBlock() {
|
|
|
|
hadBlock = true
|
|
|
|
|
|
|
|
what := c.Val()
|
|
|
|
if !c.NextArg() {
|
|
|
|
return hadBlock, c.ArgErr()
|
|
|
|
}
|
|
|
|
where := c.Val()
|
|
|
|
|
|
|
|
if what == "log" {
|
|
|
|
handler.LogFile = where
|
2015-09-02 21:13:31 +08:00
|
|
|
if c.NextArg() {
|
|
|
|
if c.Val() == "{" {
|
|
|
|
c.IncrNest()
|
|
|
|
logRoller, err := parseRoller(c)
|
|
|
|
if err != nil {
|
|
|
|
return hadBlock, err
|
|
|
|
}
|
|
|
|
handler.LogRoller = logRoller
|
|
|
|
}
|
|
|
|
}
|
2015-05-05 01:04:17 +08:00
|
|
|
} else {
|
|
|
|
// Error page; ensure it exists
|
|
|
|
where = path.Join(c.Root, where)
|
|
|
|
f, err := os.Open(where)
|
|
|
|
if err != nil {
|
2015-06-23 10:19:48 +08:00
|
|
|
fmt.Println("Warning: Unable to open error page '" + where + "': " + err.Error())
|
2015-05-05 01:04:17 +08:00
|
|
|
}
|
|
|
|
f.Close()
|
|
|
|
|
|
|
|
whatInt, err := strconv.Atoi(what)
|
|
|
|
if err != nil {
|
|
|
|
return hadBlock, c.Err("Expecting a numeric status code, got '" + what + "'")
|
|
|
|
}
|
|
|
|
handler.ErrorPages[whatInt] = where
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hadBlock, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
for c.Next() {
|
2015-09-02 21:13:31 +08:00
|
|
|
// weird hack to avoid having the handler values overwritten.
|
|
|
|
if c.Val() == "}" {
|
|
|
|
continue
|
|
|
|
}
|
2015-05-05 01:04:17 +08:00
|
|
|
// Configuration may be in a block
|
|
|
|
hadBlock, err := optionalBlock()
|
|
|
|
if err != nil {
|
|
|
|
return handler, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, the only argument would be an error log file name
|
|
|
|
if !hadBlock {
|
|
|
|
if c.NextArg() {
|
|
|
|
handler.LogFile = c.Val()
|
|
|
|
} else {
|
|
|
|
handler.LogFile = errors.DefaultLogFilename
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler, nil
|
|
|
|
}
|