mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-16 06:28:27 +02:00
53 lines
1.7 KiB
Swift
53 lines
1.7 KiB
Swift
//
|
|
/*
|
|
* Copyright (c) 2025 BWI GmbH
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
import Foundation
|
|
import MatrixSDK
|
|
|
|
// bwi #7565 has to be a class to be called by Objective C
|
|
// reads user name and displayName from session and stores in shared keychain
|
|
|
|
@objcMembers class MigrationAssistant : NSObject {
|
|
func storeUsername( session: MXSession ) -> Bool {
|
|
|
|
var returnValue = false
|
|
|
|
if let username = session.myUser?.username() {
|
|
let ossStatus = SharedKeychain.save(account: "migration_username", value: String(username))
|
|
returnValue = ossStatus == errSecSuccess
|
|
}
|
|
|
|
return returnValue
|
|
}
|
|
|
|
func storeHomeserver( session: MXSession ) -> Bool {
|
|
var returnValue = false
|
|
|
|
if let homeserver = session.matrixRestClient.homeserver {
|
|
returnValue = SharedKeychain.save(account: "migration_homeserver", value: homeserver) == errSecSuccess
|
|
}
|
|
|
|
return returnValue
|
|
}
|
|
|
|
// BWI #7555 migration part 3
|
|
func loadFinishedFlag() -> String? {
|
|
return SharedKeychain.load(account: "migration_finished")
|
|
}
|
|
// BWI #7555 END
|
|
}
|