feat: small fixes (MESSENGER-7565)

This commit is contained in:
Frank Rotermund
2025-09-25 14:12:00 +02:00
parent be743b6b23
commit 515c286bd8
5 changed files with 44 additions and 17 deletions

View File

@@ -1896,6 +1896,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
return;
// bwi #7565 as we have a session here and its a migration step -> use the migrationAssistant here
// this is called everytime when migration level is >= 1 we should find a better place when level 2 and 3 are implemented
MigrationAssistant *migrationAssistant = [[MigrationAssistant alloc] init];

View File

@@ -622,8 +622,9 @@ class AllChatsViewController: HomeViewController {
// bwi: feature banner cell
if sectionType == .featureBanner {
var username = ""
if let mainSession = self.mainSession {
username = mainSession.myUser.displayname
if let myUsername = self.mainSession.myUser.username() {
// bwi 7565 change to userID
username = myUsername
}
guard let cell = tableView.dequeueReusableCell(withIdentifier: "featureBanner", for: indexPath) as? FeatureBannerViewCell<FeatureBannerView> else {
return UITableViewCell()

View File

@@ -0,0 +1,34 @@
//
/*
* 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 #7576 username is used in several places, create a helper
// we need only the username part of the matrix id
extension MXUser {
func username () -> String? {
if let fullID = self.userId {
let withoutAt = fullID.hasPrefix("@") ? String(fullID.dropFirst()) : fullID
if let username = withoutAt.split(separator: ":").first {
return String(username)
}
}
return nil
}
}

View File

@@ -26,12 +26,9 @@ import MatrixSDK
var returnValue = false
if let fullID = session.myUser.userId {
let withoutAt = fullID.hasPrefix("@") ? String(fullID.dropFirst()) : fullID
if let username = withoutAt.split(separator: ":").first {
let ossStatus = SharedKeychain.save(account: "migration_username", value: String(username))
returnValue = ossStatus == errSecSuccess
}
if let username = session.myUser.username() {
let ossStatus = SharedKeychain.save(account: "migration_username", value: String(username))
returnValue = ossStatus == errSecSuccess
}
return returnValue
@@ -40,8 +37,8 @@ import MatrixSDK
func storeHomeserver( session: MXSession ) -> Bool {
var returnValue = false
if let displayname = session.matrixRestClient.homeserver {
returnValue = SharedKeychain.save(account: "migration_homeserver", value: displayname) == errSecSuccess
if let homeserver = session.matrixRestClient.homeserver {
returnValue = SharedKeychain.save(account: "migration_homeserver", value: homeserver) == errSecSuccess
}
return returnValue

View File

@@ -38,13 +38,7 @@ enum SharedKeychain {
let data = value.data(using: .utf8)!
// Delete existing item first
let deleteQuery: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: account,
kSecAttrService as String: SharedKeychainConfig.service,
kSecAttrAccessGroup as String: SharedKeychainConfig.sharedGroup
]
SecItemDelete(deleteQuery as CFDictionary)
SharedKeychain.delete(account: account)
// Add new value
let addQuery: [String: Any] = [