//
//  ExtSdkChatMessageWrapper.m
//  im_flutter_sdk
//
//  Created by asterisk on 2022/5/25.
//

#import "ExtSdkChatMessageWrapper.h"
#import "ExtSdkToJson.h"

@implementation ExtSdkChatMessageWrapper

+ (nonnull instancetype)getInstance {
    static ExtSdkChatMessageWrapper *instance = nil;
    static dispatch_once_t predicate;
    dispatch_once(&predicate, ^{
      instance = [[ExtSdkChatMessageWrapper alloc] init];
    });
    return instance;
}

- (void)getReactionList:(NSDictionary *)param
         withMethodType:(NSString *)aChannelName
                 result:(nonnull id<ExtSdkCallbackObjc>)result {
    NSString *msgId = param[@"msgId"];
    AgoraChatMessage *msg =
        [AgoraChatClient.sharedClient.chatManager getMessageWithMessageId:msgId];
    if ([self getMessageParams:result
                withMethodType:aChannelName
                   withMessage:msg]) {
        return;
    }
    NSMutableArray *list = [NSMutableArray array];
    for (AgoraChatMessageReaction *reaction in msg.reactionList) {
        [list addObject:[reaction toJsonObject]];
    }
    [self onResult:result
        withMethodType:aChannelName
             withError:nil
            withParams:list];
}

- (void)getGroupAckCount:(NSDictionary *)param
          withMethodType:(NSString *)aChannelName
                  result:(nonnull id<ExtSdkCallbackObjc>)result {
    NSString *msgId = param[@"msgId"];
    AgoraChatMessage *msg =
        [AgoraChatClient.sharedClient.chatManager getMessageWithMessageId:msgId];
    if ([self getMessageParams:result
                withMethodType:aChannelName
                   withMessage:msg]) {
        return;
    }
    [self onResult:result
        withMethodType:aChannelName
             withError:nil
            withParams:@(msg.groupAckCount ?: 0)];
}

- (void)getMessagePinInfo:(NSDictionary *)param
           withMethodType:(NSString *)aChannelName
                   result:(nonnull id<ExtSdkCallbackObjc>)result {
    NSString *msgId = param[@"msgId"];
    AgoraChatMessage *msg =
        [AgoraChatClient.sharedClient.chatManager getMessageWithMessageId:msgId];
    if ([self getMessageParams:result
                withMethodType:aChannelName
                   withMessage:msg]) {
        return;
    }
    [self onResult:result
        withMethodType:aChannelName
             withError:nil
            withParams:msg.pinnedInfo ? [msg.pinnedInfo toJsonObject] : nil];
}

@end
