diff options
Diffstat (limited to 'api/routes.go')
| -rw-r--r-- | api/routes.go | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/api/routes.go b/api/routes.go index edb5a02..655d18b 100644 --- a/api/routes.go +++ b/api/routes.go @@ -3,8 +3,29 @@ package api import ( "fmt" "net/http" + + "github.com/jackyzha0/ctrl-v/db" + + log "github.com/sirupsen/logrus" ) func healthCheckFunc(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf(w, "status ok") + fmt.Fprint(w, "status ok") +} + +func insertFunc(w http.ResponseWriter, r *http.Request) { + // get content + _ = r.ParseMultipartForm(0) + content := r.FormValue("content") + + // get ip + ip, _ := getIP(r) + + log.Infof("got content `%s` and ip %s", content, ip) + + // insert content + err := db.New(ip, content) + if err != nil { + fmt.Fprintf(w, "got err: %s", err.Error()) + } } |