2017-05-19 15:06:41 +00: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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-05-25 15:08:28 +00:00
|
|
|
"encoding/base64"
|
2017-05-19 15:06:41 +00:00
|
|
|
"net/http"
|
|
|
|
"os"
|
2017-06-07 13:32:53 +00:00
|
|
|
"strings"
|
2017-05-19 15:06:41 +00:00
|
|
|
"time"
|
|
|
|
|
2017-06-07 13:32:53 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
2017-05-19 15:06:41 +00:00
|
|
|
"github.com/matrix-org/dendrite/common"
|
2017-06-09 17:07:34 +00:00
|
|
|
"github.com/matrix-org/dendrite/common/keydb"
|
2017-05-19 15:06:41 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/config"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/routing"
|
2017-06-07 13:32:53 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2017-05-19 15:06:41 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
bindAddr = os.Getenv("BIND_ADDRESS")
|
|
|
|
logDir = os.Getenv("LOG_DIR")
|
|
|
|
serverName = gomatrixserverlib.ServerName(os.Getenv("SERVER_NAME"))
|
|
|
|
serverKey = os.Getenv("SERVER_KEY")
|
2017-05-25 15:08:28 +00:00
|
|
|
// Base64 encoded SHA256 TLS fingerprint of the X509 certificate used by
|
|
|
|
// the public federation listener for this server.
|
|
|
|
// Can be generated from a PEM certificate called "server.crt" using:
|
|
|
|
//
|
|
|
|
// openssl x509 -noout -fingerprint -sha256 -inform pem -in server.crt |\
|
|
|
|
// python -c 'print raw_input()[19:].replace(":","").decode("hex").encode("base64").rstrip("=\n")'
|
|
|
|
//
|
2017-06-07 13:32:53 +00:00
|
|
|
tlsFingerprint = os.Getenv("TLS_FINGERPRINT")
|
|
|
|
kafkaURIs = strings.Split(os.Getenv("KAFKA_URIS"), ",")
|
|
|
|
roomserverURL = os.Getenv("ROOMSERVER_URL")
|
|
|
|
roomserverInputTopic = os.Getenv("TOPIC_INPUT_ROOM_EVENT")
|
2017-06-09 17:07:34 +00:00
|
|
|
keyDataSource = os.Getenv("KEY_DATABASE")
|
2017-05-19 15:06:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
common.SetupLogging(logDir)
|
|
|
|
if bindAddr == "" {
|
|
|
|
log.Panic("No BIND_ADDRESS environment variable found.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if serverName == "" {
|
|
|
|
serverName = "localhost"
|
|
|
|
}
|
|
|
|
|
2017-05-25 15:08:28 +00:00
|
|
|
if tlsFingerprint == "" {
|
|
|
|
log.Panic("No TLS_FINGERPRINT environment variable found.")
|
|
|
|
}
|
|
|
|
|
2017-06-07 13:32:53 +00: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 roomserverInputTopic == "" {
|
|
|
|
log.Panic("No TOPIC_INPUT_ROOM_EVENT environment variable found. This should match the roomserver input topic.")
|
|
|
|
}
|
2017-05-19 15:06:41 +00:00
|
|
|
cfg := config.FederationAPI{
|
|
|
|
ServerName: serverName,
|
|
|
|
// TODO: make the validity period configurable.
|
|
|
|
ValidityPeriod: 24 * time.Hour,
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
cfg.KeyID, cfg.PrivateKey, err = common.ReadKey(serverKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to load private key: %s", err)
|
|
|
|
}
|
|
|
|
|
2017-05-25 15:08:28 +00:00
|
|
|
var fingerprintSHA256 []byte
|
|
|
|
if fingerprintSHA256, err = base64.RawStdEncoding.DecodeString(tlsFingerprint); err != nil {
|
|
|
|
log.Panicf("Failed to load TLS fingerprint: %s", err)
|
|
|
|
}
|
|
|
|
cfg.TLSFingerPrints = []gomatrixserverlib.TLSFingerprint{{fingerprintSHA256}}
|
|
|
|
|
2017-06-07 13:32:53 +00:00
|
|
|
federation := gomatrixserverlib.NewFederationClient(cfg.ServerName, cfg.KeyID, cfg.PrivateKey)
|
|
|
|
|
2017-06-09 17:07:34 +00:00
|
|
|
keyDB, err := keydb.NewDatabase(keyDataSource)
|
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to setup key database(%q): %s", keyDataSource, err.Error())
|
|
|
|
}
|
|
|
|
|
2017-06-07 13:32:53 +00:00
|
|
|
keyRing := gomatrixserverlib.KeyRing{
|
|
|
|
KeyFetchers: []gomatrixserverlib.KeyFetcher{
|
|
|
|
// TODO: Use perspective key fetchers for production.
|
|
|
|
&gomatrixserverlib.DirectKeyFetcher{federation.Client},
|
|
|
|
},
|
2017-06-09 17:07:34 +00:00
|
|
|
KeyDatabase: keyDB,
|
2017-06-07 13:32:53 +00:00
|
|
|
}
|
|
|
|
queryAPI := api.NewRoomserverQueryAPIHTTP(roomserverURL, nil)
|
|
|
|
|
|
|
|
roomserverProducer, err := producers.NewRoomserverProducer(kafkaURIs, roomserverInputTopic)
|
|
|
|
if err != nil {
|
|
|
|
log.Panicf("Failed to setup kafka producers(%s): %s", kafkaURIs, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(http.DefaultServeMux, cfg, queryAPI, roomserverProducer, keyRing, federation)
|
2017-05-19 15:06:41 +00:00
|
|
|
log.Fatal(http.ListenAndServe(bindAddr, nil))
|
|
|
|
}
|