MailHog/mailhog/http/api/v1.go

73 lines
2.2 KiB
Go
Raw Normal View History

2014-04-20 18:49:05 +00:00
package api
import (
"log"
"encoding/json"
"net/http"
"regexp"
"github.com/ian-kent/MailHog/mailhog"
"github.com/ian-kent/MailHog/mailhog/storage"
"github.com/ian-kent/MailHog/mailhog/http/handler"
)
type APIv1 struct {
config *mailhog.Config
exitChannel chan int
server *http.Server
2014-04-20 19:33:42 +00:00
mongo *storage.MongoDB
2014-04-20 18:49:05 +00:00
}
2014-04-20 19:33:42 +00:00
func CreateAPIv1(exitCh chan int, conf *mailhog.Config, server *http.Server, mongo *storage.MongoDB) *APIv1 {
2014-04-20 18:49:05 +00:00
log.Println("Creating API v1")
apiv1 := &APIv1{
config: conf,
exitChannel: exitCh,
server: server,
2014-04-20 19:33:42 +00:00
mongo: mongo,
2014-04-20 18:49:05 +00:00
}
2014-04-20 19:01:53 +00:00
server.Handler.(*handler.RegexpHandler).HandleFunc(regexp.MustCompile("^/api/v1/messages/?$"), apiv1.messages)
server.Handler.(*handler.RegexpHandler).HandleFunc(regexp.MustCompile("^/api/v1/messages/delete/?$"), apiv1.delete_all)
server.Handler.(*handler.RegexpHandler).HandleFunc(regexp.MustCompile("^/api/v1/messages/([0-9a-f]+)/?$"), apiv1.message)
server.Handler.(*handler.RegexpHandler).HandleFunc(regexp.MustCompile("^/api/v1/messages/([0-9a-f]+)/delete/?$"), apiv1.delete_one)
2014-04-20 18:49:05 +00:00
return apiv1
}
func (apiv1 *APIv1) messages(w http.ResponseWriter, r *http.Request, route *handler.Route) {
log.Println("[APIv1] GET /api/v1/messages")
// TODO start, limit
2014-04-20 19:33:42 +00:00
messages, _ := apiv1.mongo.List(0, 1000)
2014-04-20 18:49:05 +00:00
bytes, _ := json.Marshal(messages)
w.Header().Set("Content-Type", "text/json")
w.Write(bytes)
}
2014-04-20 19:01:53 +00:00
func (apiv1 *APIv1) message(w http.ResponseWriter, r *http.Request, route *handler.Route) {
match := route.Pattern.FindStringSubmatch(r.URL.Path)
id := match[1]
log.Printf("[APIv1] GET /api/v1/messages/%s\n", id)
2014-04-20 19:33:42 +00:00
message, _ := apiv1.mongo.Load(id)
2014-04-20 19:01:53 +00:00
bytes, _ := json.Marshal(message)
w.Header().Set("Content-Type", "text/json")
w.Write(bytes)
}
2014-04-20 18:49:05 +00:00
func (apiv1 *APIv1) delete_all(w http.ResponseWriter, r *http.Request, route *handler.Route) {
log.Println("[APIv1] POST /api/v1/messages/delete")
w.Header().Set("Content-Type", "text/json")
2014-04-20 19:33:42 +00:00
apiv1.mongo.DeleteAll()
2014-04-20 18:49:05 +00:00
}
func (apiv1 *APIv1) delete_one(w http.ResponseWriter, r *http.Request, route *handler.Route) {
match := route.Pattern.FindStringSubmatch(r.URL.Path)
id := match[1]
log.Printf("[APIv1] POST /api/v1/messages/%s/delete\n", id)
w.Header().Set("Content-Type", "text/json")
2014-04-20 19:33:42 +00:00
apiv1.mongo.DeleteOne(id)
2014-04-20 18:49:05 +00:00
}