2017-02-04 22:33:28 -08:00
|
|
|
package chipmunk
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2017-02-11 21:30:59 -08:00
|
|
|
"fmt"
|
2017-02-04 22:33:28 -08:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2017-02-07 21:28:37 -08:00
|
|
|
"strings"
|
2017-02-04 23:54:18 -08:00
|
|
|
"time"
|
2017-02-04 22:33:28 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func (s *Server) category(w http.ResponseWriter, req *http.Request) {
|
|
|
|
// TODO add back in
|
|
|
|
//w.Header().Set("Content-Type", "application/json")
|
|
|
|
//session, err := store.Get(r, "creds")
|
|
|
|
//if err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
//if loggedIn := session.Values["authenticated"]; loggedIn != true {
|
|
|
|
// http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
switch req.Method {
|
|
|
|
default:
|
|
|
|
b, _ := json.Marshal(NewFailure("Allowed methods: GET, POST, DELETE"))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
case "GET":
|
|
|
|
categories, err := s.db.getCategories()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
2017-02-04 23:24:38 -08:00
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
2017-02-04 22:33:28 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
json.NewEncoder(w).Encode(categories)
|
|
|
|
case "POST":
|
|
|
|
cat := category{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&cat)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = s.db.db.Exec(
|
|
|
|
`INSERT INTO categories (name, budget) VALUES ($1, $2)`,
|
|
|
|
cat.Name,
|
|
|
|
cat.Budget,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
2017-02-04 23:24:38 -08:00
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
2017-02-04 22:33:28 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
case "DELETE":
|
|
|
|
cat := category{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&cat)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = s.db.db.Exec("DELETE FROM categories WHERE name = $1", cat.Name)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-04 23:24:38 -08:00
|
|
|
|
|
|
|
func (s *Server) user(w http.ResponseWriter, req *http.Request) {
|
|
|
|
// TODO add back in
|
|
|
|
//w.Header().Set("Content-Type", "application/json")
|
|
|
|
//session, err := store.Get(r, "creds")
|
|
|
|
//if err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
//if loggedIn := session.Values["authenticated"]; loggedIn != true {
|
|
|
|
// http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
switch req.Method {
|
|
|
|
default:
|
|
|
|
b, _ := json.Marshal(NewFailure("Allowed methods: GET, POST, DELETE"))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
case "GET":
|
|
|
|
users, err := s.db.getUsers()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
json.NewEncoder(w).Encode(users)
|
|
|
|
case "POST":
|
|
|
|
u := user{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&u)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO add back in
|
|
|
|
//// verify current user is an admin
|
|
|
|
//session, err := store.Get(req, "creds")
|
|
|
|
//if err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
//email := ""
|
|
|
|
//if session.Values["uname"] != nil {
|
|
|
|
// email = session.Values["uname"].(string)
|
|
|
|
//}
|
|
|
|
//if !s.db.adminUser(email) {
|
|
|
|
// log.Printf("user is not admin")
|
|
|
|
// b, _ := json.Marshal(NewFailure("not admin"))
|
|
|
|
// http.Error(w, string(b), http.StatusForbidden)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
|
|
|
|
_, err = s.db.db.Exec(
|
|
|
|
`INSERT INTO users (email, admin) VALUES ($1, $2)`,
|
|
|
|
u.Email,
|
|
|
|
u.Admin,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "DELETE":
|
|
|
|
u := user{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&u)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO add back in
|
|
|
|
//// verify current user is an admin
|
|
|
|
//session, err := store.Get(req, "creds")
|
|
|
|
//if err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
//email := ""
|
|
|
|
//if session.Values["uname"] != nil {
|
|
|
|
// email = session.Values["uname"].(string)
|
|
|
|
//}
|
|
|
|
//if !s.db.adminUser(email) {
|
|
|
|
// log.Printf("user is not admin")
|
|
|
|
// b, _ := json.Marshal(NewFailure("not admin"))
|
|
|
|
// http.Error(w, string(b), http.StatusForbidden)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
|
|
|
|
_, err = s.db.db.Exec("DELETE FROM users WHERE email = $1", u.Email)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-04 23:54:18 -08:00
|
|
|
|
|
|
|
func (s *Server) tranx(w http.ResponseWriter, req *http.Request) {
|
|
|
|
// TODO add back in
|
|
|
|
//w.Header().Set("Content-Type", "application/json")
|
|
|
|
//session, err := store.Get(r, "creds")
|
|
|
|
//if err != nil {
|
|
|
|
// http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
//if loggedIn := session.Values["authenticated"]; loggedIn != true {
|
|
|
|
// http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
|
|
|
|
// return
|
|
|
|
//}
|
|
|
|
switch req.Method {
|
|
|
|
default:
|
2017-02-11 21:30:59 -08:00
|
|
|
b, _ := json.Marshal(NewFailure("Allowed methods: GET, POST, PATCH, DELETE"))
|
2017-02-04 23:54:18 -08:00
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
case "GET":
|
2017-02-07 21:28:37 -08:00
|
|
|
searchreq := req.URL.Path[len(prefix["tranx"]):]
|
|
|
|
if len(searchreq) == 0 {
|
|
|
|
tranxs, err := s.db.getTranxs()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
json.NewEncoder(w).Encode(tranxs)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if searchreq[len(searchreq)-1] != '/' {
|
|
|
|
http.Redirect(w, req, prefix["tranx"]+searchreq+"/", http.StatusMovedPermanently)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
searchReqParsed := strings.Split(searchreq, "/")
|
|
|
|
t, err := s.db.getTranx(searchReqParsed[0])
|
2017-02-04 23:54:18 -08:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
2017-02-07 21:28:37 -08:00
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
2017-02-04 23:54:18 -08:00
|
|
|
return
|
|
|
|
}
|
2017-02-11 21:30:59 -08:00
|
|
|
t.User, err = s.db.getUserEmailByID(t.User_ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.Category, err = s.db.getCategoryNameByID(t.Category_ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
2017-02-07 21:28:37 -08:00
|
|
|
json.NewEncoder(w).Encode(t)
|
2017-02-11 21:30:59 -08:00
|
|
|
case "PUT":
|
|
|
|
searchreq := req.URL.Path[len(prefix["tranx"]):]
|
|
|
|
if len(searchreq) == 0 {
|
|
|
|
b, _ := json.Marshal(NewFailure(fmt.Sprint("invalid url path")))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if searchreq[len(searchreq)-1] != '/' {
|
|
|
|
http.Redirect(w, req, prefix["tranx"]+searchreq+"/", http.StatusMovedPermanently)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err := req.ParseForm()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
2017-02-07 21:28:37 -08:00
|
|
|
|
2017-02-11 21:30:59 -08:00
|
|
|
f := map[string]string{}
|
|
|
|
if req.Form("ID") != "" {
|
|
|
|
f["ID"] = req.Form("ID")
|
|
|
|
}
|
|
|
|
if req.Form("Cost") != "" {
|
|
|
|
f["Cost"] = req.Form("Cost")
|
|
|
|
}
|
|
|
|
if req.Form("Store") != "" {
|
|
|
|
f["Store"] = req.Form("Store")
|
|
|
|
}
|
|
|
|
if req.Form("Info") != "" {
|
|
|
|
f["Info"] = req.Form("Info")
|
|
|
|
}
|
|
|
|
if req.Form("Date") != "" {
|
|
|
|
f["Date"] = req.Form("Date")
|
|
|
|
}
|
|
|
|
if req.Form("User") != "" {
|
|
|
|
f["User"] = req.Form("User")
|
|
|
|
}
|
|
|
|
if req.Form("Category") != "" {
|
|
|
|
f["Category"] = req.Form("Category")
|
|
|
|
}
|
|
|
|
|
|
|
|
searchReqParsed := strings.Split(searchreq, "/")
|
|
|
|
old, err := s.db.getTranx(searchReqParsed[0])
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
old.User, err = s.db.getUserEmailByID(t.User_ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
old.Category, err = s.db.getCategoryNameByID(t.Category_ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
in := tranx{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&in)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
json.NewEncoder(w).Encode(t)
|
2017-02-04 23:54:18 -08:00
|
|
|
case "POST":
|
|
|
|
t := tranx{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&t)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
2017-02-05 00:23:42 -08:00
|
|
|
category_id, err := s.db.getCategoryID(t.Category)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user_id, err := s.db.getUserID(t.User)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
2017-02-04 23:54:18 -08:00
|
|
|
_, err = s.db.db.Exec(
|
|
|
|
`INSERT INTO tranx (cost, store, info, date, category_id, user_id) VALUES ($1, $2, $3, $4, $5, $6)`,
|
|
|
|
t.Cost,
|
|
|
|
t.Store,
|
|
|
|
t.Info,
|
|
|
|
time.Now(),
|
2017-02-05 00:23:42 -08:00
|
|
|
category_id,
|
|
|
|
user_id,
|
2017-02-04 23:54:18 -08:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case "DELETE":
|
|
|
|
t := tranx{}
|
|
|
|
err := json.NewDecoder(req.Body).Decode(&t)
|
|
|
|
req.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// TODO need to find better way to delete tranx
|
|
|
|
_, err = s.db.db.Exec("DELETE FROM tranx WHERE store = $1 AND cost = $2", t.Store, t.Cost)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%+v", err)
|
|
|
|
b, _ := json.Marshal(NewFailure(err.Error()))
|
|
|
|
http.Error(w, string(b), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|