mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 22:26:59 +02:00
86 lines
2.6 KiB
Objective-C
86 lines
2.6 KiB
Objective-C
/*
|
|
Copyright 2017 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.
|
|
*/
|
|
|
|
#import "MXSession+Riot.h"
|
|
|
|
#import "MXRoom+Riot.h"
|
|
#import "Riot-Swift.h"
|
|
|
|
@implementation MXSession (Riot)
|
|
|
|
- (NSUInteger)riot_missedDiscussionsCount
|
|
{
|
|
NSUInteger missedDiscussionsCount = 0;
|
|
|
|
// Sum all the rooms with missed notifications.
|
|
for (MXRoomSummary *roomSummary in self.roomsSummaries)
|
|
{
|
|
NSUInteger notificationCount = roomSummary.notificationCount;
|
|
|
|
// Ignore the regular notification count if the room is in 'mentions only" mode at the Riot level.
|
|
if (roomSummary.room.isMentionsOnly)
|
|
{
|
|
// Only the highlighted missed messages must be considered here.
|
|
notificationCount = roomSummary.highlightCount;
|
|
}
|
|
|
|
if (notificationCount)
|
|
{
|
|
missedDiscussionsCount++;
|
|
}
|
|
}
|
|
|
|
// Add the invites count
|
|
missedDiscussionsCount += [self invitedRooms].count;
|
|
|
|
return missedDiscussionsCount;
|
|
}
|
|
|
|
- (MXHTTPOperation*)canEnableE2EByDefaultInNewRoomWithUsers:(NSArray<NSString*>*)userIds
|
|
success:(void (^)(BOOL canEnableE2E))success
|
|
failure:(void (^)(NSError *error))failure
|
|
{
|
|
MXHTTPOperation *operation;
|
|
if (RiotSettings.shared.enableCrossSigning)
|
|
{
|
|
// Check whether all users have uploaded device keys before.
|
|
// If so, encryption can be enabled in the new room
|
|
operation = [self.crypto downloadKeys:userIds forceDownload:NO success:^(MXUsersDevicesMap<MXDeviceInfo *> *usersDevicesInfoMap, NSDictionary<NSString *,MXCrossSigningInfo *> *crossSigningKeysMap) {
|
|
|
|
BOOL allUsersHaveDeviceKeys = YES;
|
|
for (NSString *userId in userIds)
|
|
{
|
|
if ([usersDevicesInfoMap deviceIdsForUser:userId].count == 0)
|
|
{
|
|
allUsersHaveDeviceKeys = NO;
|
|
break;
|
|
}
|
|
}
|
|
|
|
success(allUsersHaveDeviceKeys);
|
|
|
|
} failure:failure];
|
|
}
|
|
else
|
|
{
|
|
success(NO);
|
|
}
|
|
|
|
return operation;
|
|
}
|
|
|
|
@end
|