2014-03-19 09:31:38 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"runtime"
|
|
|
|
"time"
|
|
|
|
|
2014-03-30 16:11:28 +00:00
|
|
|
"github.com/go-martini/martini"
|
2014-05-01 22:53:41 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-19 09:31:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var isWindows bool
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
isWindows = runtime.GOOS == "windows"
|
|
|
|
}
|
|
|
|
|
|
|
|
func Logger() martini.Handler {
|
|
|
|
return func(res http.ResponseWriter, req *http.Request, ctx martini.Context, log *log.Logger) {
|
2014-05-26 00:11:25 +00:00
|
|
|
if setting.DisableRouterLog {
|
2014-05-01 22:53:41 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-19 09:31:38 +00:00
|
|
|
start := time.Now()
|
|
|
|
log.Printf("Started %s %s", req.Method, req.URL.Path)
|
|
|
|
|
|
|
|
rw := res.(martini.ResponseWriter)
|
|
|
|
ctx.Next()
|
|
|
|
|
|
|
|
content := fmt.Sprintf("Completed %v %s in %v", rw.Status(), http.StatusText(rw.Status()), time.Since(start))
|
|
|
|
if !isWindows {
|
|
|
|
switch rw.Status() {
|
|
|
|
case 200:
|
2014-03-19 09:35:52 +00:00
|
|
|
content = fmt.Sprintf("\033[1;32m%s\033[0m", content)
|
2014-03-19 09:31:38 +00:00
|
|
|
case 304:
|
2014-03-19 09:35:52 +00:00
|
|
|
content = fmt.Sprintf("\033[1;33m%s\033[0m", content)
|
2014-03-19 09:31:38 +00:00
|
|
|
case 404:
|
2014-03-19 09:35:52 +00:00
|
|
|
content = fmt.Sprintf("\033[1;31m%s\033[0m", content)
|
2014-03-19 11:21:23 +00:00
|
|
|
case 500:
|
|
|
|
content = fmt.Sprintf("\033[1;36m%s\033[0m", content)
|
2014-03-19 09:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Println(content)
|
|
|
|
}
|
|
|
|
}
|