HighLoad_HomeWork/internal/handlers/postAdd.go

32 lines
802 B
Go

package handlers
import (
"net/http"
"time"
"github.com/codegangsta/martini-contrib/render"
"github.com/tiburon-777/OTUS_HighLoad/internal/application"
"github.com/tiburon-777/OTUS_HighLoad/internal/auth"
)
func GetAddPost(app application.App, r render.Render) {
r.HTML(200, "postadd", nil)
}
func PostAddPost(app application.App, user auth.User, r render.Render, req *http.Request) {
postSubj := req.FormValue("subj")
postBody := req.FormValue("body")
var results, err = app.DBMaster.Query(`INSERT INTO posts (Author, Created, Subject, Body) VALUES (
?, ?, ?, ?)`,
user.(*auth.UserModel).ID,
time.Now().Format("2006-01-02 15:04:05"),
postSubj,
postBody,
)
if err != nil || results == nil {
err500("can't add new post: ", err, r)
}
r.Redirect("/",302)
}