2017-04-20 23:40:52 +01:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-02-03 16:05:46 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2017-04-20 17:15:34 +01:00
|
|
|
"strings"
|
2017-02-20 16:14:23 +00:00
|
|
|
|
2017-05-22 16:49:32 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/accounts"
|
2017-05-23 17:43:05 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
2017-03-10 11:32:53 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/config"
|
2017-03-15 13:36:26 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
2017-02-20 16:14:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/routing"
|
2017-04-21 00:43:36 +01:00
|
|
|
"github.com/matrix-org/dendrite/common"
|
2017-03-15 11:22:40 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2017-05-25 16:08:28 +01:00
|
|
|
|
2017-05-19 16:06:41 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-02-03 16:05:46 +00:00
|
|
|
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2017-04-20 17:15:34 +01:00
|
|
|
var (
|
|
|
|
kafkaURIs = strings.Split(os.Getenv("KAFKA_URIS"), ",")
|
|
|
|
bindAddr = os.Getenv("BIND_ADDRESS")
|
|
|
|
logDir = os.Getenv("LOG_DIR")
|
|
|
|
roomserverURL = os.Getenv("ROOMSERVER_URL")
|
|
|
|
clientAPIOutputTopic = os.Getenv("CLIENTAPI_OUTPUT_TOPIC")
|
2017-05-19 16:06:41 +01:00
|
|
|
serverName = gomatrixserverlib.ServerName(os.Getenv("SERVER_NAME"))
|
|
|
|
serverKey = os.Getenv("SERVER_KEY")
|
2017-05-22 15:55:39 +01:00
|
|
|
accountDataSource = os.Getenv("ACCOUNT_DATABASE")
|
2017-04-20 17:15:34 +01:00
|
|
|
)
|
|
|
|
|
2017-02-03 16:05:46 +00:00
|
|
|
func main() {
|
2017-04-21 00:43:36 +01:00
|
|
|
common.SetupLogging(logDir)
|
2017-02-03 16:05:46 +00:00
|
|
|
if bindAddr == "" {
|
|
|
|
log.Panic("No BIND_ADDRESS environment variable found.")
|
|
|
|
}
|
2017-04-20 17:15:34 +01:00
|
|
|
if len(kafkaURIs) == 0 {
|
|
|
|
// the kafka default is :9092
|
|
|
|
kafkaURIs = []string{"localhost:9092"}
|
|
|
|
}
|
|
|
|
if roomserverURL == "" {
|
|
|
|
log.Panic("No ROOMSERVER_URL environment variable found.")
|
|
|
|
}
|
|
|
|
if clientAPIOutputTopic == "" {
|
|
|
|
log.Panic("No CLIENTAPI_OUTPUT_TOPIC environment variable found. This should match the roomserver input topic.")
|
|
|
|
}
|
2017-05-19 16:06:41 +01:00
|
|
|
if serverName == "" {
|
|
|
|
serverName = "localhost"
|
2017-03-10 11:32:53 +00:00
|
|
|
}
|
2017-03-10 16:19:23 +00:00
|
|
|
|
|
|
|
cfg := config.ClientAPI{
|
2017-05-19 16:06:41 +01:00
|
|
|
ServerName: serverName,
|
2017-04-20 17:15:34 +01:00
|
|
|
KafkaProducerURIs: kafkaURIs,
|
|
|
|
ClientAPIOutputTopic: clientAPIOutputTopic,
|
|
|
|
RoomserverURL: roomserverURL,
|
2017-03-10 16:19:23 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 16:06:41 +01:00
|
|
|
var err error
|
|
|
|
cfg.KeyID, cfg.PrivateKey, err = common.ReadKey(serverKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to load private key: %s", err)
|
|
|
|
}
|
|
|
|
|
2017-03-10 16:19:23 +00:00
|
|
|
log.Info("Starting clientapi")
|
|
|
|
|
2017-03-15 13:36:26 +00:00
|
|
|
roomserverProducer, err := producers.NewRoomserverProducer(cfg.KafkaProducerURIs, cfg.ClientAPIOutputTopic)
|
2017-03-10 16:19:23 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to setup kafka producers(%s): %s", cfg.KafkaProducerURIs, err)
|
|
|
|
}
|
2017-03-15 13:36:26 +00:00
|
|
|
|
2017-05-25 16:08:28 +01:00
|
|
|
federation := gomatrixserverlib.NewFederationClient(cfg.ServerName, cfg.KeyID, cfg.PrivateKey)
|
|
|
|
|
2017-03-15 11:22:40 +00:00
|
|
|
queryAPI := api.NewRoomserverQueryAPIHTTP(cfg.RoomserverURL, nil)
|
2017-05-22 16:49:32 +01:00
|
|
|
accountDB, err := accounts.NewDatabase(accountDataSource, serverName)
|
2017-05-22 15:55:39 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to setup account database(%s): %s", accountDataSource, err.Error())
|
|
|
|
}
|
2017-05-25 13:33:50 +01:00
|
|
|
deviceDB, err := devices.NewDatabase(accountDataSource, serverName)
|
2017-05-23 17:43:05 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to setup device database(%s): %s", accountDataSource, err.Error())
|
|
|
|
}
|
2017-03-10 16:19:23 +00:00
|
|
|
|
2017-05-25 16:08:28 +01:00
|
|
|
keyRing := gomatrixserverlib.KeyRing{
|
|
|
|
KeyFetchers: []gomatrixserverlib.KeyFetcher{
|
|
|
|
// TODO: Use perspective key fetchers for production.
|
|
|
|
&gomatrixserverlib.DirectKeyFetcher{federation.Client},
|
|
|
|
},
|
|
|
|
KeyDatabase: &dummyKeyDatabase{},
|
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(
|
|
|
|
http.DefaultServeMux, http.DefaultClient, cfg, roomserverProducer,
|
|
|
|
queryAPI, accountDB, deviceDB, federation, keyRing,
|
|
|
|
)
|
2017-02-03 16:05:46 +00:00
|
|
|
log.Fatal(http.ListenAndServe(bindAddr, nil))
|
|
|
|
}
|
2017-05-25 16:08:28 +01:00
|
|
|
|
|
|
|
// TODO: Implement a proper key database.
|
|
|
|
type dummyKeyDatabase struct{}
|
|
|
|
|
|
|
|
func (d *dummyKeyDatabase) FetchKeys(
|
|
|
|
requests map[gomatrixserverlib.PublicKeyRequest]gomatrixserverlib.Timestamp,
|
|
|
|
) (map[gomatrixserverlib.PublicKeyRequest]gomatrixserverlib.ServerKeys, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *dummyKeyDatabase) StoreKeys(
|
|
|
|
map[gomatrixserverlib.PublicKeyRequest]gomatrixserverlib.ServerKeys,
|
|
|
|
) error {
|
|
|
|
return nil
|
|
|
|
}
|