2017-04-21 00:40:52 +02: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 17:05:46 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi"
|
|
|
|
"github.com/matrix-org/dendrite/common/basecomponent"
|
2017-06-09 19:07:34 +02:00
|
|
|
"github.com/matrix-org/dendrite/common/keydb"
|
2018-05-18 11:49:40 +02:00
|
|
|
"github.com/matrix-org/dendrite/common/transactions"
|
2018-08-08 17:17:09 +02:00
|
|
|
"github.com/matrix-org/dendrite/typingserver"
|
|
|
|
"github.com/matrix-org/dendrite/typingserver/cache"
|
2017-04-20 18:15:34 +02:00
|
|
|
)
|
|
|
|
|
2017-02-03 17:05:46 +01:00
|
|
|
func main() {
|
2018-01-02 11:26:56 +01:00
|
|
|
cfg := basecomponent.ParseFlags()
|
2017-07-18 14:40:03 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
base := basecomponent.NewBaseDendrite(cfg, "ClientAPI")
|
|
|
|
defer base.Close() // nolint: errcheck
|
2017-03-10 17:19:23 +01:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
accountDB := base.CreateAccountsDB()
|
|
|
|
deviceDB := base.CreateDeviceDB()
|
|
|
|
keyDB := base.CreateKeyDB()
|
|
|
|
federation := base.CreateFederationClient()
|
2017-11-13 19:39:09 +01:00
|
|
|
keyRing := keydb.CreateKeyRing(federation.Client, keyDB)
|
2017-05-25 17:08:28 +02:00
|
|
|
|
2018-08-20 11:45:17 +02:00
|
|
|
asQuery := base.CreateHTTPAppServiceAPIs()
|
2018-01-02 11:26:56 +01:00
|
|
|
alias, input, query := base.CreateHTTPRoomserverAPIs()
|
2019-10-01 18:09:47 +02:00
|
|
|
fedSenderAPI := base.CreateHTTPFederationSenderAPIs()
|
2018-08-08 17:17:09 +02:00
|
|
|
typingInputAPI := typingserver.SetupTypingServerComponent(base, cache.NewTypingCache())
|
2017-08-03 16:10:39 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
clientapi.SetupClientAPIComponent(
|
|
|
|
base, deviceDB, accountDB, federation, &keyRing,
|
2019-10-01 18:09:47 +02:00
|
|
|
alias, input, query, typingInputAPI, asQuery, transactions.New(), fedSenderAPI,
|
2017-05-25 17:08:28 +02:00
|
|
|
)
|
2017-08-03 16:10:39 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
base.SetupAndServeHTTP(string(base.Cfg.Listen.ClientAPI))
|
2017-02-03 17:05:46 +01:00
|
|
|
}
|