element-ios/Config/AppConfig.swift

118 lines
3.9 KiB
Swift
Raw Normal View History

//
// Copyright 2020 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.
//
2020-07-28 14:53:55 +00:00
import Foundation
import MatrixKit
/// AppConfig is the central point to setup settings for MatrixSDK, MatrixKit and the app.
@objcMembers
final class AppConfig: NSObject {
static let shared = AppConfig()
// MARK: - Global settings
func setupSettings() {
setupMatrixKitSettings()
setupMatrixSDKSettings()
setupAppSettings()
}
private func setupMatrixKitSettings() {
guard let settings = MXKAppSettings.standard() else {
return
}
// Customize the localized string table
Bundle.mxk_customizeLocalizedStringTableName("Vector")
// Disable CallKit
settings.isCallKitEnabled = false
// Enable lazy loading
settings.syncWithLazyLoadOfRoomMembers = true
}
private func setupMatrixSDKSettings() {
let sdkOptions = MXSDKOptions.sharedInstance()
sdkOptions.applicationGroupIdentifier = "group.im.vector"
// Define the media cache version
sdkOptions.mediaCacheAppVersion = 0
// Enable e2e encryption for newly created MXSession
sdkOptions.enableCryptoWhenStartingMXSession = true
sdkOptions.computeE2ERoomSummaryTrust = true
// Disable identicon use
sdkOptions.disableIdenticonUseForUserAvatar = true
// Use UIKit BackgroundTask for handling background tasks in the SDK
sdkOptions.backgroundModeHandler = MXUIKitBackgroundModeHandler()
}
private func setupAppSettings() {
// Enable long press on event in bubble cells
MXKRoomBubbleTableViewCell.disableLongPressGesture(onEvent: false)
// Each room member will be considered as a potential contact.
MXKContactManager.shared().contactManagerMXRoomSource = MXKContactManagerMXRoomSource.all
}
// MARK: - Per matrix session settings
func setupSettings(for matrixSession: MXSession) {
setupCallsSettings(for: matrixSession)
setupWidgetReadReceipts(for: matrixSession)
}
private func setupCallsSettings(for matrixSession: MXSession) {
guard let callManager = matrixSession.callManager else {
// This means nothing happens if the project does not embed a VoIP stack
return
}
// Let's call invite be valid for 1 minute
callManager.inviteLifetime = 60000
if RiotSettings.shared.allowStunServerFallback, let stunServerFallback = RiotSettings.shared.stunServerFallback {
callManager.fallbackSTUNServer = stunServerFallback
}
}
private func setupWidgetReadReceipts(for matrixSession: MXSession) {
2020-07-28 14:53:55 +00:00
// TODO
// var acknowledgableEventTypes = matrixSession.acknowledgableEventTypes ?? []
// acknowledgableEventTypes.append(kWidgetMatrixEventTypeString)
// acknowledgableEventTypes.append(kWidgetModularEventTypeString)
//
// matrixSession.acknowledgableEventTypes = acknowledgableEventTypes
}
// MARK: - Per loaded matrix session settings
func setupSettingsWhenLoaded(for matrixSession: MXSession) {
// Do not warn for unknown devices. We have cross-signing now
matrixSession.crypto.warnOnUnknowDevices = false
}
}