mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
df79fc9ed0
name Switcharoo String+OWS/String+SSK categories to reflect where they live.
133 lines
3.4 KiB
Objective-C
133 lines
3.4 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSDisappearingMessagesConfiguration.h"
|
|
#import "NSString+SSK.h"
|
|
#import <SignalCoreKit/NSDate+OWS.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSDisappearingMessagesConfiguration ()
|
|
|
|
// Transient record lifecycle attributes.
|
|
@property (atomic) NSDictionary *originalDictionaryValue;
|
|
@property (atomic, getter=isNewRecord) BOOL newRecord;
|
|
|
|
@end
|
|
|
|
@implementation OWSDisappearingMessagesConfiguration
|
|
|
|
- (instancetype)initDefaultWithThreadId:(NSString *)threadId
|
|
{
|
|
return [self initWithThreadId:threadId
|
|
enabled:NO
|
|
durationSeconds:OWSDisappearingMessagesConfigurationDefaultExpirationDuration];
|
|
}
|
|
|
|
- (nullable instancetype)initWithCoder:(NSCoder *)coder
|
|
{
|
|
self = [super initWithCoder:coder];
|
|
|
|
_originalDictionaryValue = [self dictionaryValue];
|
|
_newRecord = NO;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithThreadId:(NSString *)threadId enabled:(BOOL)isEnabled durationSeconds:(uint32_t)seconds
|
|
{
|
|
self = [super initWithUniqueId:threadId];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_enabled = isEnabled;
|
|
_durationSeconds = seconds;
|
|
_newRecord = YES;
|
|
_originalDictionaryValue = self.dictionaryValue;
|
|
|
|
return self;
|
|
}
|
|
|
|
+ (instancetype)fetchOrBuildDefaultWithThreadId:(NSString *)threadId
|
|
transaction:(YapDatabaseReadTransaction *)transaction
|
|
{
|
|
OWSDisappearingMessagesConfiguration *savedConfiguration =
|
|
[self fetchObjectWithUniqueID:threadId transaction:transaction];
|
|
if (savedConfiguration) {
|
|
return savedConfiguration;
|
|
} else {
|
|
return [[self alloc] initDefaultWithThreadId:threadId];
|
|
}
|
|
}
|
|
|
|
+ (NSArray<NSNumber *> *)validDurationsSeconds
|
|
{
|
|
return @[
|
|
@(5 * kSecondInterval),
|
|
@(10 * kSecondInterval),
|
|
@(30 * kSecondInterval),
|
|
@(1 * kMinuteInterval),
|
|
@(5 * kMinuteInterval),
|
|
@(30 * kMinuteInterval),
|
|
@(1 * kHourInterval),
|
|
@(6 * kHourInterval),
|
|
@(12 * kHourInterval),
|
|
@(24 * kHourInterval),
|
|
@(1 * kWeekInterval)
|
|
];
|
|
}
|
|
|
|
+ (uint32_t)maxDurationSeconds
|
|
{
|
|
static uint32_t max;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
max = [[self.validDurationsSeconds valueForKeyPath:@"@max.intValue"] unsignedIntValue];
|
|
|
|
// It's safe to update this assert if we add a larger duration
|
|
OWSAssertDebug(max == 1 * kWeekInterval);
|
|
});
|
|
|
|
return max;
|
|
}
|
|
|
|
- (NSUInteger)durationIndex
|
|
{
|
|
return [[self.class validDurationsSeconds] indexOfObject:@(self.durationSeconds)];
|
|
}
|
|
|
|
- (NSString *)durationString
|
|
{
|
|
return [NSString formatDurationSeconds:self.durationSeconds useShortFormat:NO];
|
|
}
|
|
|
|
#pragma mark - Dirty Tracking
|
|
|
|
+ (MTLPropertyStorage)storageBehaviorForPropertyWithKey:(NSString *)propertyKey
|
|
{
|
|
// Don't persist transient properties
|
|
if ([propertyKey isEqualToString:@"originalDictionaryValue"]
|
|
||[propertyKey isEqualToString:@"newRecord"]) {
|
|
return MTLPropertyStorageNone;
|
|
} else {
|
|
return [super storageBehaviorForPropertyWithKey:propertyKey];
|
|
}
|
|
}
|
|
|
|
- (BOOL)dictionaryValueDidChange
|
|
{
|
|
return ![self.originalDictionaryValue isEqual:[self dictionaryValue]];
|
|
}
|
|
|
|
- (void)saveWithTransaction:(YapDatabaseReadWriteTransaction *)transaction
|
|
{
|
|
[super saveWithTransaction:transaction];
|
|
self.originalDictionaryValue = [self dictionaryValue];
|
|
self.newRecord = NO;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|