aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2017-02-20 11:28:43 -0800
committerAdam Mathes <adam@trenchant.org>2017-02-20 11:28:43 -0800
commit63923e5de3fea586f892602e6d4b74a49bcc6940 (patch)
treebb5eb2c7452ff51f518e96b980fc6914fff69cf7 /web
parent38a504c2afecb5ec76358a16a03a6cf0a61d0b84 (diff)
downloadneko-63923e5de3fea586f892602e6d4b74a49bcc6940.tar.gz
neko-63923e5de3fea586f892602e6d4b74a49bcc6940.tar.bz2
neko-63923e5de3fea586f892602e6d4b74a49bcc6940.zip
switch to single binary (neko) with standard flags. update config file to use nicer names
Diffstat (limited to 'web')
-rw-r--r--web/web.go40
1 files changed, 23 insertions, 17 deletions
diff --git a/web/web.go b/web/web.go
index 54827e9..4ed1c83 100644
--- a/web/web.go
+++ b/web/web.go
@@ -1,19 +1,20 @@
package web
import (
- "encoding/json"
- "fmt"
- "log"
"adammathes.com/neko/config"
"adammathes.com/neko/models/feed"
"adammathes.com/neko/models/item"
+ "encoding/json"
+ "fmt"
+ "golang.org/x/crypto/bcrypt"
+ "log"
"net/http"
+ "path"
"strconv"
- "golang.org/x/crypto/bcrypt"
)
func indexHandler(w http.ResponseWriter, r *http.Request) {
- http.ServeFile(w, r, "static/ui.html")
+ http.ServeFile(w, r, staticFilePath("ui.html"))
}
func streamHandler(w http.ResponseWriter, r *http.Request) {
@@ -40,7 +41,7 @@ func streamHandler(w http.ResponseWriter, r *http.Request) {
if r.FormValue("starred") != "" {
starred_only = true
}
-
+
var items []*item.Item
items, err := item.Filter(int64(max_id), feed_id, unread_only, starred_only)
if err != nil {
@@ -101,39 +102,39 @@ func feedHandler(w http.ResponseWriter, r *http.Request) {
}
var AuthCookie = "auth"
-var SecondsInAYear = 60*60*24*365
+var SecondsInAYear = 60 * 60 * 24 * 365
func loginHandler(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
- http.ServeFile(w, r, "static/login.html")
+ http.ServeFile(w, r, staticFilePath("login.html"))
case "POST":
- password := r.FormValue("password")
+ password := r.FormValue("password")
if password == config.Config.DigestPassword {
- v,_ := bcrypt.GenerateFromPassword([]byte(password), 0)
- c := http.Cookie{ Name: AuthCookie, Value: string(v), Path: "/", MaxAge: SecondsInAYear, HttpOnly:false }
+ v, _ := bcrypt.GenerateFromPassword([]byte(password), 0)
+ c := http.Cookie{Name: AuthCookie, Value: string(v), Path: "/", MaxAge: SecondsInAYear, HttpOnly: false}
http.SetCookie(w, &c)
http.Redirect(w, r, "/", 307)
} else {
http.Error(w, "bad login", 401)
- }
+ }
default:
http.Error(w, "nope", 500)
}
}
func logoutHandler(w http.ResponseWriter, r *http.Request) {
- c := http.Cookie{ Name: AuthCookie, MaxAge: 0, Path: "/", HttpOnly:false }
+ c := http.Cookie{Name: AuthCookie, MaxAge: 0, Path: "/", HttpOnly: false}
http.SetCookie(w, &c)
fmt.Fprintf(w, "you are logged out")
}
func Authenticated(r *http.Request) bool {
- pc,err := r.Cookie("auth")
+ pc, err := r.Cookie("auth")
if err != nil {
return false
}
- err = bcrypt.CompareHashAndPassword( []byte(pc.Value), []byte(config.Config.DigestPassword) )
+ err = bcrypt.CompareHashAndPassword([]byte(pc.Value), []byte(config.Config.DigestPassword))
if err == nil {
return true
}
@@ -151,7 +152,7 @@ func AuthWrap(wrapped http.HandlerFunc) http.HandlerFunc {
}
func Serve() {
- fs := http.FileServer(http.Dir("static"))
+ fs := http.FileServer(http.Dir(config.Config.StaticDir))
http.Handle("/static/", http.StripPrefix("/static/", fs))
http.HandleFunc("/stream/", AuthWrap(streamHandler))
@@ -163,6 +164,11 @@ func Serve() {
http.HandleFunc("/", AuthWrap(indexHandler))
-
http.ListenAndServe(config.Config.WebServer, nil)
}
+
+// given a path, prepend config.Config.StaticDir
+// TODO: compile these into the binary to remove dependency on the files
+func staticFilePath(p string) string {
+ return path.Join(config.Config.StaticDir, p)
+}