1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-12-25 23:36:30 +00:00

move the request logger out to the Utility

This commit is contained in:
Vincent Batts 2013-06-17 23:03:59 -04:00
parent 6683ae4498
commit 1ed6696abf
2 changed files with 66 additions and 64 deletions

101
server.go
View file

@ -60,7 +60,7 @@ func initMongo() {
func serverErr(w http.ResponseWriter, r *http.Request, e error) { func serverErr(w http.ResponseWriter, r *http.Request, e error) {
log.Printf("Error: %s", e) log.Printf("Error: %s", e)
LogRequest(r, 503) util.LogRequest(r, 503)
fmt.Fprintf(w, "Error: %s", e) fmt.Fprintf(w, "Error: %s", e)
http.Error(w, "Service Unavailable", 503) http.Error(w, "Service Unavailable", 503)
return return
@ -89,37 +89,10 @@ func chunkURI(uri string) (chunks []string) {
return strings.Split(str, "/") return strings.Split(str, "/")
} }
/* kindof a common log type output */
func LogRequest(r *http.Request, statusCode int) {
var addr string
var user_agent string
user_agent = ""
addr = r.RemoteAddr
for k, v := range r.Header {
if k == "User-Agent" {
user_agent = strings.Join(v, " ")
}
if k == "X-Forwarded-For" {
addr = strings.Join(v, " ")
}
}
fmt.Printf("%s - - [%s] \"%s %s\" \"%s\" %d %d\n",
addr,
time.Now(),
r.Method,
r.URL.String(),
user_agent,
statusCode,
r.ContentLength)
}
func routeViewsGET(w http.ResponseWriter, r *http.Request) { func routeViewsGET(w http.ResponseWriter, r *http.Request) {
uriChunks := chunkURI(r.URL.Path) uriChunks := chunkURI(r.URL.Path)
if len(uriChunks) > 2 { if len(uriChunks) > 2 {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -141,7 +114,7 @@ func routeViewsGET(w http.ResponseWriter, r *http.Request) {
// no filename given, show them the full listing // no filename given, show them the full listing
http.Redirect(w, r, "/all", 302) http.Redirect(w, r, "/all", 302)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
/* /*
@ -154,7 +127,7 @@ func routeFilesGET(w http.ResponseWriter, r *http.Request) {
uriChunks := chunkURI(r.URL.Path) uriChunks := chunkURI(r.URL.Path)
if len(uriChunks) > 2 { if len(uriChunks) > 2 {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -167,11 +140,11 @@ func routeFilesGET(w http.ResponseWriter, r *http.Request) {
// if the Request got here by a delete request, confirm it // if the Request got here by a delete request, confirm it
if (len(r.Form["delete"]) > 0 && r.Form["delete"][0] == "true") && (len(r.Form["confirm"]) > 0 && r.Form["confirm"][0] == "true") { if (len(r.Form["delete"]) > 0 && r.Form["delete"][0] == "true") && (len(r.Form["confirm"]) > 0 && r.Form["confirm"][0] == "true") {
LogRequest(r, 200) util.LogRequest(r, 200)
routeFilesDELETE(w, r) routeFilesDELETE(w, r)
return return
} else if len(r.Form["delete"]) > 0 && r.Form["delete"][0] == "true" { } else if len(r.Form["delete"]) > 0 && r.Form["delete"][0] == "true" {
LogRequest(r, 200) util.LogRequest(r, 200)
err = DeleteFilePage(w, uriChunks[1]) err = DeleteFilePage(w, uriChunks[1])
if err != nil { if err != nil {
serverErr(w, r, err) serverErr(w, r, err)
@ -192,7 +165,7 @@ func routeFilesGET(w http.ResponseWriter, r *http.Request) {
} }
log.Printf("Results for [%s] = %d", uriChunks[1], c) log.Printf("Results for [%s] = %d", uriChunks[1], c)
if c == 0 { if c == 0 {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -213,7 +186,7 @@ func routeFilesGET(w http.ResponseWriter, r *http.Request) {
// no filename given, show them the full listing // no filename given, show them the full listing
http.Redirect(w, r, "/all", 302) http.Redirect(w, r, "/all", 302)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
/* /*
@ -227,7 +200,7 @@ func routeFilesPOST(w http.ResponseWriter, r *http.Request) {
if len(uriChunks) > 2 && if len(uriChunks) > 2 &&
((len(uriChunks) == 2 && len(uriChunks[1]) == 0) && ((len(uriChunks) == 2 && len(uriChunks[1]) == 0) &&
len(r.URL.RawQuery) == 0) { len(r.URL.RawQuery) == 0) {
LogRequest(r, 403) util.LogRequest(r, 403)
http.Error(w, "Not Acceptable", 403) http.Error(w, "Not Acceptable", 403)
return return
} }
@ -332,20 +305,20 @@ func routeFilesPOST(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, fmt.Sprintf("/f/%s\n", filename)) io.WriteString(w, fmt.Sprintf("/f/%s\n", filename))
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
func routeFilesPUT(w http.ResponseWriter, r *http.Request) { func routeFilesPUT(w http.ResponseWriter, r *http.Request) {
// update the file by the name in the path and/or parameter? // update the file by the name in the path and/or parameter?
// update/add keywords from the parameters // update/add keywords from the parameters
// look for an image in the r.Body // look for an image in the r.Body
LogRequest(r, 418) util.LogRequest(r, 418)
} }
func routeFilesDELETE(w http.ResponseWriter, r *http.Request) { func routeFilesDELETE(w http.ResponseWriter, r *http.Request) {
uriChunks := chunkURI(r.URL.Path) uriChunks := chunkURI(r.URL.Path)
if (len(uriChunks) > 2) || (len(uriChunks) == 2 && len(uriChunks[1]) == 0) { if (len(uriChunks) > 2) || (len(uriChunks) == 2 && len(uriChunks[1]) == 0) {
LogRequest(r, 400) util.LogRequest(r, 400)
http.Error(w, "Bad Syntax", 400) http.Error(w, "Bad Syntax", 400)
return return
} }
@ -362,10 +335,10 @@ func routeFilesDELETE(w http.ResponseWriter, r *http.Request) {
serverErr(w, r, err) serverErr(w, r, err)
return return
} }
LogRequest(r, 302) util.LogRequest(r, 302)
http.Redirect(w, r, "/", 302) http.Redirect(w, r, "/", 302)
} else { } else {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
} }
// delete the name in the path and/or parameter? // delete the name in the path and/or parameter?
@ -376,7 +349,7 @@ func routeViews(w http.ResponseWriter, r *http.Request) {
case r.Method == "GET": case r.Method == "GET":
routeViewsGET(w, r) routeViewsGET(w, r)
default: default:
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -393,7 +366,7 @@ func routeFiles(w http.ResponseWriter, r *http.Request) {
case r.Method == "DELETE": case r.Method == "DELETE":
routeFilesDELETE(w, r) routeFilesDELETE(w, r)
default: default:
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -401,7 +374,7 @@ func routeFiles(w http.ResponseWriter, r *http.Request) {
func routeRoot(w http.ResponseWriter, r *http.Request) { func routeRoot(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" { if r.Method != "GET" {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -419,12 +392,12 @@ func routeRoot(w http.ResponseWriter, r *http.Request) {
if err != nil { if err != nil {
log.Printf("error: %s", err) log.Printf("error: %s", err)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
func routeAll(w http.ResponseWriter, r *http.Request) { func routeAll(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" { if r.Method != "GET" {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -442,7 +415,7 @@ func routeAll(w http.ResponseWriter, r *http.Request) {
if err != nil { if err != nil {
log.Printf("error: %s", err) log.Printf("error: %s", err)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
/* /*
@ -459,7 +432,7 @@ func routeKeywords(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" || if r.Method != "GET" ||
len(uriChunks) > 3 || len(uriChunks) > 3 ||
(len(uriChunks) == 3 && uriChunks[2] != "r") { (len(uriChunks) == 3 && uriChunks[2] != "r") {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} else if len(uriChunks) == 1 || (len(uriChunks) == 2 && len(uriChunks[1]) == 0) { } else if len(uriChunks) == 1 || (len(uriChunks) == 2 && len(uriChunks[1]) == 0) {
@ -473,7 +446,7 @@ func routeKeywords(w http.ResponseWriter, r *http.Request) {
if uriChunks[len(uriChunks)-1] == "r" { if uriChunks[len(uriChunks)-1] == "r" {
// TODO determine how to show a random image by keyword ... // TODO determine how to show a random image by keyword ...
log.Println("random isn't built yet") log.Println("random isn't built yet")
LogRequest(r, 404) util.LogRequest(r, 404)
return return
} else if len(uriChunks) == 2 { } else if len(uriChunks) == 2 {
log.Println(uriChunks[1]) log.Println(uriChunks[1])
@ -492,13 +465,13 @@ func routeKeywords(w http.ResponseWriter, r *http.Request) {
log.Printf("error: %s", err) log.Printf("error: %s", err)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
func routeMD5s(w http.ResponseWriter, r *http.Request) { func routeMD5s(w http.ResponseWriter, r *http.Request) {
uriChunks := chunkURI(r.URL.Path) uriChunks := chunkURI(r.URL.Path)
if r.Method != "GET" { if r.Method != "GET" {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} else if len(uriChunks) != 2 { } else if len(uriChunks) != 2 {
@ -518,29 +491,29 @@ func routeMD5s(w http.ResponseWriter, r *http.Request) {
log.Printf("error: %s", err) log.Printf("error: %s", err)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
// Show a page of file extensions, and allow paging by ext // Show a page of file extensions, and allow paging by ext
func routeExt(w http.ResponseWriter, r *http.Request) { func routeExt(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" { if r.Method != "GET" {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
// Show a page of all the uploader's IPs, and the images // Show a page of all the uploader's IPs, and the images
func routeIPs(w http.ResponseWriter, r *http.Request) { func routeIPs(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" { if r.Method != "GET" {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
LogRequest(r, 200) util.LogRequest(r, 200)
} }
/* /*
@ -549,7 +522,7 @@ func routeIPs(w http.ResponseWriter, r *http.Request) {
Set an unruly cache on this path, so the browser does not constantly ask for it Set an unruly cache on this path, so the browser does not constantly ask for it
*/ */
func routeFavIcon(w http.ResponseWriter, r *http.Request) { func routeFavIcon(w http.ResponseWriter, r *http.Request) {
LogRequest(r, 200) util.LogRequest(r, 200)
w.Header().Set("Cache-Control", "max-age=315360000") w.Header().Set("Cache-Control", "max-age=315360000")
} }
@ -563,7 +536,7 @@ func routeGetFromUrl(w http.ResponseWriter, r *http.Request) {
if err != nil { if err != nil {
log.Printf("error: %s", err) log.Printf("error: %s", err)
} }
LogRequest(r, 200) util.LogRequest(r, 200)
return return
} }
@ -599,7 +572,7 @@ func routeGetFromUrl(w http.ResponseWriter, r *http.Request) {
serverErr(w, r, err) serverErr(w, r, err)
return return
} else if len(local_filename) == 0 { } else if len(local_filename) == 0 {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
@ -650,11 +623,11 @@ func routeGetFromUrl(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, fmt.Sprintf("/v/%s", stored_filename), 302) http.Redirect(w, r, fmt.Sprintf("/v/%s", stored_filename), 302)
} else { } else {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
LogRequest(r, 200) // if we make it this far, then log success util.LogRequest(r, 200) // if we make it this far, then log success
} }
/* /*
@ -664,7 +637,7 @@ func routeGetFromUrl(w http.ResponseWriter, r *http.Request) {
func routeUpload(w http.ResponseWriter, r *http.Request) { func routeUpload(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" { if r.Method == "GET" {
// Show the upload form // Show the upload form
LogRequest(r, 200) // if we make it this far, then log success util.LogRequest(r, 200) // if we make it this far, then log success
err := UploadPage(w) err := UploadPage(w)
if err != nil { if err != nil {
log.Printf("error: %s", err) log.Printf("error: %s", err)
@ -737,11 +710,11 @@ func routeUpload(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, fmt.Sprintf("/v/%s", filename), 302) http.Redirect(w, r, fmt.Sprintf("/v/%s", filename), 302)
} else { } else {
LogRequest(r, 404) util.LogRequest(r, 404)
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
LogRequest(r, 200) // if we make it this far, then log success util.LogRequest(r, 200) // if we make it this far, then log success
} }
func routeAssets(w http.ResponseWriter, r *http.Request) { func routeAssets(w http.ResponseWriter, r *http.Request) {

View file

@ -2,11 +2,13 @@ package util
import ( import (
"crypto/tls" "crypto/tls"
"fmt"
"io/ioutil" "io/ioutil"
"log" "log"
"net/http" "net/http"
"os" "os"
"path/filepath" "path/filepath"
"strings"
"time" "time"
) )
@ -53,3 +55,30 @@ func FetchFileFromURL(url string) (filename string, err error) {
// lastly, return // lastly, return
return filepath.Join(os.TempDir(), url_filename), nil return filepath.Join(os.TempDir(), url_filename), nil
} }
/* kindof a common log type output */
func LogRequest(r *http.Request, statusCode int) {
var addr string
var user_agent string
user_agent = ""
addr = r.RemoteAddr
for k, v := range r.Header {
if k == "User-Agent" {
user_agent = strings.Join(v, " ")
}
if k == "X-Forwarded-For" {
addr = strings.Join(v, " ")
}
}
fmt.Printf("%s - - [%s] \"%s %s\" \"%s\" %d %d\n",
addr,
time.Now(),
r.Method,
r.URL.String(),
user_agent,
statusCode,
r.ContentLength)
}