func FetchTag(w http.ResponseWriter, r *http.Request, cfg config.Configuration, ctx model.Context) { params := mux.Vars(r) t := model.Tag{} err := t.SetTag(params["tag"]) if err != nil { ctx.Log.Println(err) http.Error(w, "Invalid tag", 400) return } t.SetTagDir(cfg.Filedir) t.CalculateExpiration(cfg.Expiration) if t.TagDirExists() { expired, err := t.IsExpired(cfg.Expiration) if err != nil { ctx.Log.Println(err) http.Error(w, "Internal server error", 500) return } if expired { ctx.Log.Println("Expired: " + t.ExpirationReadable) http.Error(w, "This tag has expired.", 410) return } err = t.StatInfo() if err != nil { ctx.Log.Println(err) http.Error(w, "Internal Server Error", 500) return } err = t.List(cfg.Baseurl) if err != nil { ctx.Log.Println(err) http.Error(w, "Error reading the tag contents.", 404) return } } w.Header().Set("Vary", "Content-Type") w.Header().Set("Cache-Control", "s-maxage=3600") var status = 200 if r.Header.Get("Content-Type") == "application/json" { w.Header().Set("Content-Type", "application/json") output.JSONresponse(w, status, t, ctx) return } else { if len(t.Files) == 0 { output.HTMLresponse(w, "newtag", status, t, ctx) } else { output.HTMLresponse(w, "viewtag", status, t, ctx) } return } }
func FetchAlbum(w http.ResponseWriter, r *http.Request, cfg config.Configuration, ctx model.Context) { t := model.Tag{} params := mux.Vars(r) err := t.SetTag(params["tag"]) if err != nil { ctx.Log.Println(err) http.Error(w, "Invalid tag", 400) return } t.SetTagDir(cfg.Filedir) t.CalculateExpiration(cfg.Expiration) if t.TagDirExists() { expired, err := t.IsExpired(cfg.Expiration) if err != nil { ctx.Log.Println(err) http.Error(w, "Internal server error", 500) return } if expired { ctx.Log.Println("Expired: " + t.ExpirationReadable) http.Error(w, "This tag has expired.", 410) return } err = t.StatInfo() if err != nil { ctx.Log.Println(err) http.Error(w, "Internal Server Error", 500) return } err = t.List(cfg.Baseurl) if err != nil { ctx.Log.Println(err) http.Error(w, "Error reading the tag contents.", 404) return } } else { // The tag does not exist http.Error(w, "Not found", 404) return } w.Header().Set("Cache-Control", "s-maxage=3600") var status = 200 output.HTMLresponse(w, "viewalbum", status, t, ctx) return }