summaryrefslogblamecommitdiff
path: root/api/login.go
blob: ef2195e4582a1906d0165fc7f4d40af03f5f7561 (plain) (tree)





















































                                                                       
package api

import (
	"encoding/json"
	"net/http"

	redqdb "sinanmohd.com/redq/db"
)

type loginAPI struct {
	db   *redqdb.SafeDB
	req  *RequestLogin
	resp *ResponseLogin
}

type RequestLogin struct {
	Account *redqdb.Account
}

type ResponseLogin struct {
	Account *redqdb.Account
}

func newLogin(db *redqdb.SafeDB) *loginAPI {
	a := &loginAPI{}
	a.db = db

	return a
}

func (a *loginAPI) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
	a.req = &RequestLogin{}
	a.resp = &ResponseLogin{}
	err := unmarshal(r.Body, a.req)
	if err != nil {
		handleError(err, rw, http.StatusUnprocessableEntity)
		return
	}

	err = a.req.Account.Login(a.db)
	if err != nil {
		handleError(err, rw, http.StatusUnauthorized)
		return
	}
	a.resp.Account = a.req.Account

	json, err := json.Marshal(a.resp)
	if err != nil {
		handleError(err, rw, http.StatusInternalServerError)
		return
	}

	rw.Write(json)
}