87 lines
2.4 KiB
Objective-C
87 lines
2.4 KiB
Objective-C
//
|
|
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
#import "OWSStickerPackSyncMessage.h"
|
|
#import <SignalServiceKit/SignalServiceKit-Swift.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSStickerPackSyncMessage ()
|
|
|
|
@property (nonatomic, readonly) NSArray<StickerPackInfo *> *packs;
|
|
@property (nonatomic, readonly) StickerPackOperationType operationType;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSStickerPackSyncMessage
|
|
|
|
- (nullable instancetype)initWithCoder:(NSCoder *)coder
|
|
{
|
|
return [super initWithCoder:coder];
|
|
}
|
|
|
|
- (instancetype)initWithThread:(TSThread *)thread
|
|
packs:(NSArray<StickerPackInfo *> *)packs
|
|
operationType:(StickerPackOperationType)operationType
|
|
transaction:(SDSAnyReadTransaction *)transaction
|
|
{
|
|
self = [super initWithThread:thread transaction:transaction];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_packs = packs;
|
|
_operationType = operationType;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (nullable SSKProtoSyncMessageBuilder *)syncMessageBuilderWithTransaction:(SDSAnyReadTransaction *)transaction
|
|
{
|
|
SSKProtoSyncMessageStickerPackOperationType operationType;
|
|
switch (self.operationType) {
|
|
case StickerPackOperationType_Install:
|
|
operationType = SSKProtoSyncMessageStickerPackOperationTypeInstall;
|
|
break;
|
|
case StickerPackOperationType_Remove:
|
|
operationType = SSKProtoSyncMessageStickerPackOperationTypeRemove;
|
|
break;
|
|
}
|
|
|
|
SSKProtoSyncMessageBuilder *syncMessageBuilder = [SSKProtoSyncMessage builder];
|
|
|
|
for (StickerPackInfo *pack in self.packs) {
|
|
SSKProtoSyncMessageStickerPackOperationBuilder *packOperationBuilder =
|
|
[SSKProtoSyncMessageStickerPackOperation builderWithPackID:pack.packId packKey:pack.packKey];
|
|
[packOperationBuilder setType:operationType];
|
|
|
|
NSError *error;
|
|
SSKProtoSyncMessageStickerPackOperation *_Nullable packOperationProto =
|
|
[packOperationBuilder buildAndReturnError:&error];
|
|
if (error || !packOperationProto) {
|
|
OWSFailDebug(@"could not build protobuf: %@", error);
|
|
return nil;
|
|
}
|
|
[syncMessageBuilder addStickerPackOperation:packOperationProto];
|
|
}
|
|
|
|
return syncMessageBuilder;
|
|
}
|
|
|
|
- (BOOL)isUrgent
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (SealedSenderContentHint)contentHint
|
|
{
|
|
return SealedSenderContentHintImplicit;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|