premier commentaires

This commit is contained in:
Jehan Monnier
2021-08-18 15:12:23 +02:00
parent 3f09bddbf5
commit 2a1b1aaa56
4 changed files with 29 additions and 36 deletions

View File

@@ -1,3 +1,5 @@
//FIXME GPL
// Created by QuentinArguillere on 17/08/2020.
// Copyright © 2020 BelledonneCommunications. All rights reserved.
//
@@ -5,20 +7,21 @@
import Foundation
import linphonesw
//FIXME expliquer
func createAndInitializeAccount(core: Core, identity: String, password: String, withVoipPush: Bool = false, withRemotePush: Bool = false) throws -> Account {
let factory = Factory.Instance
let accountParams = try core.createAccountParams()
let address = try factory.createAddress(addr: identity)
let info = try factory.createAuthInfo(username: address.username, userid: "", passwd: password, ha1: "", realm: "", domain: address.domain)
let info = try factory.createAuthInfo(username: address.username, userid: nil, passwd: password, ha1: nil, realm: nil, domain: address.domain)
try accountParams.setIdentityaddress(newValue: address)
try accountParams.setServeraddr(newValue: "sip:" + address.domain + ";transport=tls")
try accountParams.setServeraddr(newValue: "sip:" + address.domain + ";transport=tcp")
accountParams.registerEnabled = true
// This is necessary to register to the server and handle push Notifications. Make sure you have a certificate to match your app's bundle ID.
accountParams.pushNotificationConfig?.provider = "apns.dev"
//FIXME + de coomtaires
accountParams.pushNotificationAllowed = withVoipPush
accountParams.remotePushNotificationAllowed = withRemotePush
core.addAuthInfo(info: info)
@@ -28,35 +31,22 @@ func createAndInitializeAccount(core: Core, identity: String, password: String,
class LoggingUnit
{
class BoolHolder : ObservableObject
{
@Published var value : Bool
init(val : Bool) {
value = val
}
}
var logsEnabled : BoolHolder
var logDelegate : LinphoneLoggingServiceImpl
var log : LoggingService
var logsEnabled : Bool = true {
didSet {
LoggingService.Instance.logLevel = logsEnabled ? LogLevel.Debug: LogLevel.Fatal
}
}
class LinphoneLoggingServiceImpl: LoggingServiceDelegate {
var logsEnabled : BoolHolder!
func onLogMessageWritten(logService: LoggingService, domain: String, level: LogLevel, message: String) {
if (logsEnabled.value) {
print("Linphone logs: \(message)")
}
print("Linphone logs: \(message)")
}
}
init()
{
logsEnabled = BoolHolder(val: true)
logDelegate = LinphoneLoggingServiceImpl()
logDelegate.logsEnabled = logsEnabled;
log = LoggingService.Instance
log.addDelegate(delegate: logDelegate)
log.logLevel = LogLevel.Debug
Factory.Instance.enableLogCollection(state: LogCollectionState.Enabled)
init() {
//FIXME commentaires
LoggingService.Instance.addDelegate(delegate: LinphoneLoggingServiceImpl())
LoggingService.Instance.logLevel = LogLevel.Debug
}
}