2015-05-05 01:04:17 +08:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
2015-07-31 02:29:41 +08:00
|
|
|
"io"
|
2015-05-05 01:04:17 +08:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
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"
|
|
|
|
caddylog "github.com/mholt/caddy/middleware/log"
|
2015-06-16 00:17:09 +08:00
|
|
|
"github.com/mholt/caddy/server"
|
2015-05-05 01:04:17 +08:00
|
|
|
)
|
|
|
|
|
2015-05-25 10:52:34 +08:00
|
|
|
// Log sets up the logging middleware.
|
2015-05-05 01:04:17 +08:00
|
|
|
func Log(c *Controller) (middleware.Middleware, error) {
|
|
|
|
rules, err := logParse(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the log files for writing when the server starts
|
|
|
|
c.Startup = append(c.Startup, func() error {
|
|
|
|
for i := 0; i < len(rules); i++ {
|
|
|
|
var err error
|
2015-07-31 02:29:41 +08:00
|
|
|
var file io.Writer
|
2015-05-05 01:04:17 +08:00
|
|
|
|
|
|
|
if rules[i].OutputFile == "stdout" {
|
|
|
|
file = os.Stdout
|
|
|
|
} else if rules[i].OutputFile == "stderr" {
|
|
|
|
file = os.Stderr
|
2015-07-31 02:29:41 +08:00
|
|
|
} else if rules[i].OutputFile == "syslog" {
|
2015-08-03 18:00:17 +08:00
|
|
|
file, err = gsyslog.NewLogger(gsyslog.LOG_INFO, "LOCAL0", "caddy")
|
2015-07-31 02:29:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-05 01:04:17 +08:00
|
|
|
} else {
|
|
|
|
file, err = os.OpenFile(rules[i].OutputFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rules[i].Log = log.New(file, "", 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return func(next middleware.Handler) middleware.Handler {
|
2015-06-16 00:17:09 +08:00
|
|
|
return caddylog.Logger{Next: next, Rules: rules, ErrorFunc: server.DefaultErrorFunc}
|
2015-05-05 01:04:17 +08:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2015-05-25 10:52:34 +08:00
|
|
|
func logParse(c *Controller) ([]caddylog.Rule, error) {
|
|
|
|
var rules []caddylog.Rule
|
2015-05-05 01:04:17 +08:00
|
|
|
|
|
|
|
for c.Next() {
|
|
|
|
args := c.RemainingArgs()
|
|
|
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
// Nothing specified; use defaults
|
2015-05-25 10:52:34 +08:00
|
|
|
rules = append(rules, caddylog.Rule{
|
2015-05-05 01:04:17 +08:00
|
|
|
PathScope: "/",
|
|
|
|
OutputFile: caddylog.DefaultLogFilename,
|
|
|
|
Format: caddylog.DefaultLogFormat,
|
|
|
|
})
|
|
|
|
} else if len(args) == 1 {
|
|
|
|
// Only an output file specified
|
2015-05-25 10:52:34 +08:00
|
|
|
rules = append(rules, caddylog.Rule{
|
2015-05-05 01:04:17 +08:00
|
|
|
PathScope: "/",
|
|
|
|
OutputFile: args[0],
|
|
|
|
Format: caddylog.DefaultLogFormat,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
// Path scope, output file, and maybe a format specified
|
|
|
|
|
|
|
|
format := caddylog.DefaultLogFormat
|
|
|
|
|
|
|
|
if len(args) > 2 {
|
|
|
|
switch args[2] {
|
|
|
|
case "{common}":
|
|
|
|
format = caddylog.CommonLogFormat
|
|
|
|
case "{combined}":
|
|
|
|
format = caddylog.CombinedLogFormat
|
|
|
|
default:
|
|
|
|
format = args[2]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-25 10:52:34 +08:00
|
|
|
rules = append(rules, caddylog.Rule{
|
2015-05-05 01:04:17 +08:00
|
|
|
PathScope: args[0],
|
|
|
|
OutputFile: args[1],
|
|
|
|
Format: format,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rules, nil
|
|
|
|
}
|