mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
Add stub clientapi webserver with readers/writers packages
As per RL discussion with Mjark
This commit is contained in:
parent
63d1bcd66a
commit
aafaf6ede6
31
src/github.com/matrix-org/dendrite/clientapi/clientapi.go
Normal file
31
src/github.com/matrix-org/dendrite/clientapi/clientapi.go
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
log "github.com/Sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/matrix-org/dendrite/clientapi/readers"
|
||||||
|
"github.com/matrix-org/dendrite/clientapi/writers"
|
||||||
|
"github.com/matrix-org/util"
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
)
|
||||||
|
|
||||||
|
// setup registers HTTP handlers with the given ServeMux. It also supplies the given http.Client
|
||||||
|
// to clients which need to make outbound HTTP requests.
|
||||||
|
func setup(mux *http.ServeMux, httpClient *http.Client) {
|
||||||
|
mux.Handle("/metrics", prometheus.Handler())
|
||||||
|
mux.Handle("/send", prometheus.InstrumentHandler("send_message", util.MakeJSONAPI(&writers.SendMessage{})))
|
||||||
|
mux.Handle("/sync", prometheus.InstrumentHandler("sync", util.MakeJSONAPI(&readers.Sync{})))
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
bindAddr := os.Getenv("BIND_ADDRESS")
|
||||||
|
if bindAddr == "" {
|
||||||
|
log.Panic("No BIND_ADDRESS environment variable found.")
|
||||||
|
}
|
||||||
|
log.Info("Starting clientapi")
|
||||||
|
setup(http.DefaultServeMux, http.DefaultClient)
|
||||||
|
log.Fatal(http.ListenAndServe(bindAddr, nil))
|
||||||
|
}
|
19
src/github.com/matrix-org/dendrite/clientapi/readers/sync.go
Normal file
19
src/github.com/matrix-org/dendrite/clientapi/readers/sync.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
package readers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
log "github.com/Sirupsen/logrus"
|
||||||
|
"github.com/matrix-org/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Sync struct{}
|
||||||
|
|
||||||
|
func (s *Sync) OnIncomingRequest(req *http.Request) (interface{}, *util.HTTPError) {
|
||||||
|
logger := req.Context().Value(util.CtxValueLogger).(*log.Entry)
|
||||||
|
logger.Info("Doing stuff...")
|
||||||
|
return nil, &util.HTTPError{
|
||||||
|
Code: 404,
|
||||||
|
Message: "Not implemented yet",
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package writers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
log "github.com/Sirupsen/logrus"
|
||||||
|
"github.com/matrix-org/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
type SendMessage struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *SendMessage) OnIncomingRequest(req *http.Request) (interface{}, *util.HTTPError) {
|
||||||
|
logger := req.Context().Value(util.CtxValueLogger).(*log.Entry)
|
||||||
|
logger.Info("Doing stuff...")
|
||||||
|
return nil, &util.HTTPError{
|
||||||
|
Code: 404,
|
||||||
|
Message: "Not implemented yet",
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user