2018-05-24 12:54:42 +00:00
|
|
|
// Copyright 2018 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 appservice
|
|
|
|
|
|
|
|
import (
|
2018-07-17 16:31:40 +00:00
|
|
|
"context"
|
2018-07-17 14:36:04 +00:00
|
|
|
"net/http"
|
2018-07-05 16:34:59 +00:00
|
|
|
"sync"
|
2018-07-17 14:36:04 +00:00
|
|
|
"time"
|
2018-07-05 16:34:59 +00:00
|
|
|
|
2020-06-08 14:51:07 +00:00
|
|
|
"github.com/gorilla/mux"
|
2018-07-17 14:36:04 +00:00
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
2018-05-24 12:54:42 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice/consumers"
|
2020-06-04 14:43:07 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice/inthttp"
|
2018-07-17 14:36:04 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice/query"
|
2018-07-05 16:34:59 +00:00
|
|
|
"github.com/matrix-org/dendrite/appservice/storage"
|
|
|
|
"github.com/matrix-org/dendrite/appservice/types"
|
|
|
|
"github.com/matrix-org/dendrite/appservice/workers"
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/setup"
|
2018-07-17 14:36:04 +00:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-06-16 16:39:56 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-05-24 12:54:42 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2020-06-08 14:51:07 +00:00
|
|
|
// AddInternalRoutes registers HTTP handlers for internal API calls
|
|
|
|
func AddInternalRoutes(router *mux.Router, queryAPI appserviceAPI.AppServiceQueryAPI) {
|
|
|
|
inthttp.AddRoutes(queryAPI, router)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewInternalAPI returns a concerete implementation of the internal API. Callers
|
|
|
|
// can call functions directly on the returned API or via an HTTP interface using AddInternalRoutes.
|
|
|
|
func NewInternalAPI(
|
2020-06-12 13:55:57 +00:00
|
|
|
base *setup.BaseDendrite,
|
2020-06-16 16:39:56 +00:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2020-05-01 09:48:17 +00:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2018-07-17 14:36:04 +00:00
|
|
|
) appserviceAPI.AppServiceQueryAPI {
|
2018-07-05 16:34:59 +00:00
|
|
|
// Create a connection to the appservice postgres DB
|
2020-08-10 13:18:04 +00:00
|
|
|
appserviceDB, err := storage.NewDatabase(&base.Cfg.AppServiceAPI.Database)
|
2018-07-05 16:34:59 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to appservice db")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap application services in a type that relates the application service and
|
|
|
|
// a sync.Cond object that can be used to notify workers when there are new
|
|
|
|
// events to be sent out.
|
|
|
|
workerStates := make([]types.ApplicationServiceWorkerState, len(base.Cfg.Derived.ApplicationServices))
|
|
|
|
for i, appservice := range base.Cfg.Derived.ApplicationServices {
|
|
|
|
m := sync.Mutex{}
|
|
|
|
ws := types.ApplicationServiceWorkerState{
|
|
|
|
AppService: appservice,
|
|
|
|
Cond: sync.NewCond(&m),
|
|
|
|
}
|
|
|
|
workerStates[i] = ws
|
2018-07-17 16:31:40 +00:00
|
|
|
|
|
|
|
// Create bot account for this AS if it doesn't already exist
|
2020-06-16 16:39:56 +00:00
|
|
|
if err = generateAppServiceAccount(userAPI, appservice); err != nil {
|
2018-07-17 16:31:40 +00:00
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"appservice": appservice.ID,
|
|
|
|
}).WithError(err).Panicf("failed to generate bot account for appservice")
|
|
|
|
}
|
2018-07-05 16:34:59 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 15:17:09 +00:00
|
|
|
// Create appserivce query API with an HTTP client that will be used for all
|
|
|
|
// outbound and inbound requests (inbound only for the internal API)
|
2020-06-04 14:43:07 +00:00
|
|
|
appserviceQueryAPI := &query.AppServiceQueryAPI{
|
2018-08-08 15:17:09 +00:00
|
|
|
HTTPClient: &http.Client{
|
|
|
|
Timeout: time.Second * 30,
|
|
|
|
},
|
|
|
|
Cfg: base.Cfg,
|
2018-07-17 14:36:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-12 14:11:33 +00:00
|
|
|
// Only consume if we actually have ASes to track, else we'll just chew cycles needlessly.
|
|
|
|
// We can't add ASes at runtime so this is safe to do.
|
|
|
|
if len(workerStates) > 0 {
|
|
|
|
consumer := consumers.NewOutputRoomEventConsumer(
|
2020-06-16 16:39:56 +00:00
|
|
|
base.Cfg, base.KafkaConsumer, appserviceDB,
|
2020-06-12 14:11:33 +00:00
|
|
|
rsAPI, workerStates,
|
|
|
|
)
|
|
|
|
if err := consumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start appservice roomserver consumer")
|
|
|
|
}
|
2018-05-24 12:54:42 +00:00
|
|
|
}
|
|
|
|
|
2018-07-05 16:34:59 +00:00
|
|
|
// Create application service transaction workers
|
|
|
|
if err := workers.SetupTransactionWorkers(appserviceDB, workerStates); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start app service transaction workers")
|
|
|
|
}
|
2020-06-04 14:43:07 +00:00
|
|
|
return appserviceQueryAPI
|
2018-05-24 12:54:42 +00:00
|
|
|
}
|
2018-07-17 16:31:40 +00:00
|
|
|
|
|
|
|
// generateAppServiceAccounts creates a dummy account based off the
|
|
|
|
// `sender_localpart` field of each application service if it doesn't
|
|
|
|
// exist already
|
|
|
|
func generateAppServiceAccount(
|
2020-06-16 16:39:56 +00:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2018-07-17 16:31:40 +00:00
|
|
|
as config.ApplicationService,
|
|
|
|
) error {
|
2020-06-16 16:39:56 +00:00
|
|
|
var accRes userapi.PerformAccountCreationResponse
|
|
|
|
err := userAPI.PerformAccountCreation(context.Background(), &userapi.PerformAccountCreationRequest{
|
2020-06-17 10:22:26 +00:00
|
|
|
AccountType: userapi.AccountTypeUser,
|
2020-06-16 16:39:56 +00:00
|
|
|
Localpart: as.SenderLocalpart,
|
|
|
|
AppServiceID: as.ID,
|
|
|
|
OnConflict: userapi.ConflictUpdate,
|
|
|
|
}, &accRes)
|
2018-07-17 16:31:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-06-16 16:39:56 +00:00
|
|
|
var devRes userapi.PerformDeviceCreationResponse
|
|
|
|
err = userAPI.PerformDeviceCreation(context.Background(), &userapi.PerformDeviceCreationRequest{
|
|
|
|
Localpart: as.SenderLocalpart,
|
|
|
|
AccessToken: as.ASToken,
|
|
|
|
DeviceID: &as.SenderLocalpart,
|
|
|
|
DeviceDisplayName: &as.SenderLocalpart,
|
|
|
|
}, &devRes)
|
2018-07-17 16:31:40 +00:00
|
|
|
return err
|
|
|
|
}
|