123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #import "WFCCGroupJoinTypeNotificationContent.h"
- #import "WFCCIMService.h"
- #import "WFCCNetworkService.h"
- #import "Common.h"
- @implementation WFCCGroupJoinTypeNotificationContent
- - (WFCCMessagePayload *)encode {
- WFCCMessagePayload *payload = [super encode];
- payload.contentType = [self.class getContentType];
-
- NSMutableDictionary *dataDict = [NSMutableDictionary dictionary];
- if (self.operatorId) {
- [dataDict setObject:self.operatorId forKey:@"o"];
- }
- if (self.type) {
- [dataDict setObject:self.type forKey:@"n"];
- }
-
- if (self.groupId) {
- [dataDict setObject:self.groupId forKey:@"g"];
- }
-
- payload.binaryContent = [NSJSONSerialization dataWithJSONObject:dataDict
- options:kNilOptions
- error:nil];
-
- return payload;
- }
- - (void)decode:(WFCCMessagePayload *)payload {
- [super decode:payload];
- NSError *__error = nil;
- NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:payload.binaryContent
- options:kNilOptions
- error:&__error];
- if (!__error) {
- self.operatorId = dictionary[@"o"];
- self.type = dictionary[@"n"];
- self.groupId = dictionary[@"g"];
- }
- }
- + (int)getContentType {
- return MESSAGE_CONTENT_TYPE_CHANGE_JOINTYPE;
- }
- + (int)getContentFlags {
- return WFCCPersistFlag_PERSIST;
- }
- + (void)load {
- [[WFCCIMService sharedWFCIMService] registerMessageContent:self];
- }
- - (NSString *)digest:(WFCCMessage *)message {
- return [self formatNotification:message];
- }
- - (NSString *)formatNotification:(WFCCMessage *)message {
- NSString *user = @"你";
- if (![[WFCCNetworkService sharedInstance].userId isEqualToString:self.operatorId]) {
- WFCCUserInfo *userInfo = [[WFCCIMService sharedWFCIMService] getUserInfo:self.operatorId inGroup:self.groupId refresh:NO];
- if (userInfo.friendAlias.length > 0) {
- user = userInfo.friendAlias;
- } else if(userInfo.groupAlias.length > 0) {
- user = userInfo.groupAlias;
- } else if (userInfo.displayName.length > 0) {
- user = userInfo.displayName;
- } else {
- user = [NSString stringWithFormat:@"管理员<%@>", self.operatorId];
- }
- }
-
- if ([self.type isEqualToString:@"0"]) {
- return [NSString stringWithFormat:@"%@开放了加入群组功能", user];
- } else if ([self.type isEqualToString:@"1"]) {
- return [NSString stringWithFormat:@"%@仅允许群成员邀请加入群组", user];
- } else {
- return [NSString stringWithFormat:@"%@关闭了加入群组功能", user];
- }
-
- }
- @end
|