added ability to get single tranx with id
This commit is contained in:
parent
c2f8d2eca0
commit
2bb365206e
19
api.go
19
api.go
@ -4,6 +4,7 @@ import (
|
||||
"encoding/json"
|
||||
"log"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
@ -195,6 +196,8 @@ func (s *Server) tranx(w http.ResponseWriter, req *http.Request) {
|
||||
http.Error(w, string(b), http.StatusBadRequest)
|
||||
return
|
||||
case "GET":
|
||||
searchreq := req.URL.Path[len(prefix["tranx"]):]
|
||||
if len(searchreq) == 0 {
|
||||
tranxs, err := s.db.getTranxs()
|
||||
if err != nil {
|
||||
log.Printf("%+v", err)
|
||||
@ -203,6 +206,22 @@ func (s *Server) tranx(w http.ResponseWriter, req *http.Request) {
|
||||
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])
|
||||
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)
|
||||
|
||||
case "POST":
|
||||
t := tranx{}
|
||||
err := json.NewDecoder(req.Body).Decode(&t)
|
||||
|
21
db.go
21
db.go
@ -127,6 +127,27 @@ func (d *DB) getTranxs() ([]tranx, error) {
|
||||
return results, nil
|
||||
}
|
||||
|
||||
func (d *DB) getTranx(i string) (tranx, error) {
|
||||
result := tranx{}
|
||||
row := d.db.QueryRow("SELECT id, cost, store, info, date, user_id, category_id FROM tranx WHERE id = $1",
|
||||
i,
|
||||
)
|
||||
err := row.Scan(
|
||||
&result.ID,
|
||||
&result.Cost,
|
||||
&result.Store,
|
||||
&result.Info,
|
||||
&result.Date,
|
||||
&result.User_ID,
|
||||
&result.Category_ID,
|
||||
)
|
||||
if err != nil {
|
||||
return tranx{}, err
|
||||
}
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
//func (d *DB) checkOwner(filename, client string) error {
|
||||
// row := d.db.QueryRowx("SELECT client FROM pics WHERE filename = $1", filename)
|
||||
// var owner string
|
||||
|
Loading…
Reference in New Issue
Block a user