| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595 |
- //
- // IMAPlatform+IMSDKCallBack.m
- // TIMChat
- //
- // Created by AlexiChen on 16/2/26.
- // Copyright © 2016年 AlexiChen. All rights reserved.
- //
- #import "IMAPlatform+IMSDKCallBack.h"
- #import "BogoNetworkKit.h"
- // 所有回调中的核心逻辑最终都放入到主线程中执行
- @implementation IMAPlatform (IMSDKCallBack)
- #pragma mark - TIMConnListener
- /**
- * 网络连接成功
- */
- - (void)onConnSucc
- {
- self.isConnected = YES;
-
- TCQALNetwork net = [[QalSDKProxy sharedInstance] getNetType];
- [self changeToNetwork:net];
-
- [self.conversationMgr onConnect];
- }
- /**
- * 网络连接失败
- *
- * @param code 错误码
- * @param err 错误描述
- */
- - (void)onConnFailed:(int)code err:(NSString*)err
- {
-
- self.isConnected = NO;
- [self.conversationMgr onDisConnect];
-
- DebugLog(@"网络连接失败");
- }
- /**
- * 网络连接断开
- *
- * @param code 错误码
- * @param err 错误描述
- */
- - (void)onDisconnect:(int)code err:(NSString*)err
- {
-
- self.isConnected = NO;
- [self.conversationMgr onDisConnect];
-
- DebugLog(@"网络连接断开 code = %d, err = %@", code, err);
- }
- /**
- * 连接中
- */
- - (void)onConnecting
- {
- DebugLog(@"连接中");
- }
- - (void)doLogout
- {
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- // 然后退出登录
- [self logout:^{
- #if kSupportH5Shopping
- kNotifPost(@"H5qiut", nil); //需要告诉H5 那边退出
- [[AppDelegate sharedAppDelegate] beginEnterMianUI];
- #else
-
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- #endif
- } fail:^(int code, NSString *msg) {
- #if kSupportH5Shopping
- kNotifPost(@"H5qiut", nil); //需要告诉H5 那边退出
- [[AppDelegate sharedAppDelegate] beginEnterMianUI];
- #else
-
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- #endif
- }];
- });
-
- }
- //- (void)registNotification
- //{
- // if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)
- // {
- // [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
- // [[UIApplication sharedApplication] registerForRemoteNotifications];
- // }
- // else
- // {
- // [[UIApplication sharedApplication] registerForRemoteNotificationTypes: (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];
- // }
- //}
- #pragma mark - TIMUserStatusListener
- /**
- * 踢下线通知
- */
- static BOOL kIsAlertingForceOffline = NO;
- - (void)onForceOffline
- {
-
- if (!kIsAlertingForceOffline)
- {
-
- [[NSNotificationCenter defaultCenter] postNotificationName:KLOGIN_OUT_Notification object:nil];
-
- [[AppDelegate sharedAppDelegate] popToRootViewController];
-
- kIsAlertingForceOffline = YES;
- DebugLog(@"踢下线通知");
-
- FWWeakify(self)
- [IMAPlatform setAutoLogin:NO];
-
- [FanweMessage alert:ASLocalizedString(@"下线通知") message:ASLocalizedString(@"您的账号在其他设备登录,如果不是您的操作,请及时修改密码") isHideTitle:NO destructiveAction:^{
- FWStrongify(self)
- // 退出
- [self logout:^{
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- } fail:^(int code, NSString *msg) {
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- }];
- }];
-
- // [FanweMessage alert:@"下线通知" message:@"您的账号在其他设备登录,如果不是您的操作,请及时修改密码" destructiveAction:^{
- //
- //
- // FWStrongify(self)
- // // 退出
- // [self logout:^{
- // [[AppDelegate sharedAppDelegate] enterLoginUI];
- // } fail:^(int code, NSString *msg) {
- // [[AppDelegate sharedAppDelegate] enterLoginUI];
- // }];
- //
- // kIsAlertingForceOffline = NO;
- //
- //
- // } cancelAction:^{
- //
- //
- // FWStrongify(self)
- //
- //
- //
- // [IMAPlatform setAutoLogin:YES];
- // [self offlineLogin];
- // // 重新登录
- // [self login:self.host.loginParm succ:^{
- //
- // [[AppDelegate sharedAppDelegate] enterMainUI];
- //
- //
- // [self registNotification];
- // } fail:^(int code, NSString *msg) {
- //// [self onLogoutCompletion];
- //// [IMAPlatform setAutoLogin:YES];
- // [[BGHUDHelper sharedInstance] tipMessage:IMALocalizedError(code, msg) delay:1.0];
- //
- // [self logout:^{
- // [[AppDelegate sharedAppDelegate] enterLoginUI];
- // } fail:^(int code, NSString *msg) {
- // [[AppDelegate sharedAppDelegate] enterLoginUI];
- // }];
- //
- //
- // }];
- //
- // kIsAlertingForceOffline = NO;
- //
- // }];
- }
- }
- /**
- * 断线重连失败
- */
- - (void)onReConnFailed:(int)code err:(NSString*)err
- {
- DebugLog(@"断线重连失败");
-
- FWWeakify(self)
- [FanweMessage alert:ASLocalizedString(@"下线通知") message:ASLocalizedString(@"断线重连失败,是否重新登录?") destructiveAction:^{
-
- FWStrongify(self)
- [self offlineLogin];
- // 重新登录
- [self loginTIMSDK:self.host.loginParm succ:^{
-
- [[AppDelegate sharedAppDelegate] enterMainUI];
-
- IMALoginParam *wp = [IMALoginParam loadFromLocal];
- //[[IMAPlatform sharedInstance] configOnLoginSucc:wp];
-
- // [self registNotification];
-
- } fail:^(int code, NSString *msg) {
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- }];
-
- kIsAlertingForceOffline = NO;
-
- } cancelAction:^{
-
- // 退出
- [[IMAPlatform sharedInstance] logout:^{
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- } fail:^(int code, NSString *msg) {
- [[AppDelegate sharedAppDelegate] enterLoginUI];
- }];
-
- kIsAlertingForceOffline = NO;
-
- }];
- }
- /**
- * 用户登录的userSig过期,需要重新登录
- */
- - (void)onUserSigExpired
- {
- [[BGHUDHelper sharedInstance] syncLoading];
- //刷新票据
- [[TLSHelper getInstance] TLSRefreshTicket:[IMAPlatform sharedInstance].host.profile.identifier andTLSRefreshTicketListener:self];
-
-
- }
- - (void)OnRefreshTicketSuccess:(TLSUserInfo *)userInfo
- {
- [[BGHUDHelper sharedInstance] syncStopLoading];
-
- //更新本地票据
- IMALoginParam *param = [IMALoginParam loadFromLocal];
- param.userSig = [[TLSHelper getInstance] getTLSUserSig:userInfo.identifier];
- param.tokenTime = [[NSDate date] timeIntervalSince1970];
-
- [param saveToLocal];
-
- [IMAPlatform sharedInstance].host.loginParm.userSig = param.userSig;
- [[IMAPlatform sharedInstance].host.loginParm saveToLocal];
-
- // 重新登录
- [[TIMManager sharedInstance] login:param succ:^{
- [IMAPlatform setAutoLogin:YES];
- [BogoNetwork shareInstance].uid = param.identifier;
- } fail:^(int code, NSString *msg) {
- DebugLog(@"TIMLogin Failed: code=%d err=%@", code, msg);
- [[BGHUDHelper sharedInstance] tipMessage:ASLocalizedString(@"刷新票据,登录失败")];
- }];
- }
- - (void)OnRefreshTicketFail:(TLSErrInfo *)errInfo
- {
- [[BGHUDHelper sharedInstance] syncStopLoading];
-
- NSString *err = [[NSString alloc] initWithFormat:ASLocalizedString(@"刷新票据失败\ncode:%d, error:%@"), errInfo.dwErrorCode, errInfo.sErrorTitle];
-
- DebugLog(@"%@",err);
-
- [[BGHUDHelper sharedInstance] syncLoading:ASLocalizedString(@"刷新票据失败,正在退出")];
-
- IMALoginParam *param = [IMALoginParam loadFromLocal];
- param.tokenTime = 0;
- [param saveToLocal];
-
- [[IMAPlatform sharedInstance] logout:^{
-
- [[BGHUDHelper sharedInstance] syncStopLoading];
-
- [[AppDelegate sharedAppDelegate] enterLoginUI];
-
- } fail:^(int code, NSString *err) {
-
- [[BGHUDHelper sharedInstance] syncStopLoading];
-
- [[AppDelegate sharedAppDelegate] enterLoginUI];
-
- }];
- }
- - (void)OnRefreshTicketTimeout:(TLSErrInfo *)errInfo
- {
- [self OnRefreshTicketFail:errInfo];
- }
- #pragma mark -TIMRefreshListener
- - (void)onRefresh
- {
- // TODO:重新刷新会话列列
- DebugLog(@"=========>>>>> 刷新会话列表");
- dispatch_async(dispatch_get_main_queue(), ^{
- [self.contactMgr asyncConfigContact];//从以前的OnProxyStatusChange里面移动过来的
- [self.conversationMgr asyncConversationList];
- [[TIMManager sharedInstance] addMessageListener:self.conversationMgr];
- });
-
-
- [self.contactMgr asyncConfigGroup];
- }
- - (void)onRefreshConversations:(NSArray*)conversations
- {
- [self.conversationMgr asyncConversationList];
- }
- @end
- @implementation IMAPlatform (FriendShipListener)
- /**
- * 收到代理状态变更通知
- *
- * @param status 当前状态
- */
- //- (void) OnProxyStatusChange:(TIM_FRIENDSHIP_PROXY_STATUS)status
- //{
- // if (status == TIM_FRIENDSHIP_STATUS_SYNCED)
- // {
- // dispatch_async(dispatch_get_main_queue(), ^{
- // [self.contactMgr asyncConfigContact];
- // });
- // }
- // DebugLog(@"同步状态为:%d", (int)status);
- //}
- /**
- * 添加好友通知
- *
- * @param users 好友列表(TIMUserProfile*)
- */
- - (void)onAddFriends:(NSArray *)users
- {
- NSString *info = [NSString stringWithFormat:@"timchat onaddfriends %@",users];
- [[TIMManager sharedInstance] log:TIM_LOG_DEBUG tag:@"111" msg:info];
- dispatch_async(dispatch_get_main_queue(), ^{
-
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
-
- DebugLog(@"%@", users);
-
- for (TIMUserProfile *u in users)
- {
- IMAUser *user = [[IMAUser alloc] initWithUserInfo:u];
- NSString *fg = nil;
- if (u.friendGroups.count > 0)
- {
- fg = u.friendGroups[0];
- }
-
- IMASubGroup *sg = [self.contactMgr getSubGroupOf:fg];
- [self.contactMgr addUser:user toSubGroup:sg];
- }
- });
- }
- /**
- * 删除好友通知
- *
- * @param identifiers 用户id列表(NSString*)
- */
- - (void)onDelFriends:(NSArray*)identifiers
- {
- DebugLog(@"%@", identifiers);
- dispatch_async(dispatch_get_main_queue(), ^{
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
- for (NSString *uid in identifiers)
- {
- IMAUser *user = [[IMAUser alloc] initWith:uid];
- [self.contactMgr removeUser:user];
- }
- });
- }
- /**
- * 好友资料更新通知
- *
- * @param profiles 资料列表(TIMUserProfile*)
- */
- - (void)onFriendProfileUpdate:(NSArray*)profiles
- {
- DebugLog(@"%@", profiles);
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
- }
- /**
- * 好友申请通知
- *
- * @param reqs 好友申请者id列表(TIMSNSChangeInfo*)
- */
- - (void)onAddFriendReqs:(NSArray*)reqs
- {
- dispatch_async(dispatch_get_main_queue(), ^{
- DebugLog(@"%@", reqs);
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
- });
- }
- /**
- * 添加好友分组通知
- *
- * @param friendgroups 好友分组列表(TIMFriendGroup*)
- */
- - (void)onAddFriendGroups:(NSArray*)friendgroups
- {
- DebugLog(@"%@", friendgroups);
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
- }
- /**
- * 删除好友分组通知
- *
- * @param names 好友分组名称列表(NSString*)
- */
- - (void)onDelFriendGroups:(NSArray*)names
- {
- DebugLog(@"%@", names);
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
- }
- /**
- * 好友分组更新通知
- *
- * @param friendgroups 好友分组列表(TIMFriendGroup*)
- */
- - (void)onFriendGroupUpdate:(NSArray*)friendgroups
- {
- DebugLog(@"%@", friendgroups);
- if (!self.contactMgr.hasNewDependency)
- {
- self.contactMgr.hasNewDependency = YES;
- }
-
- }
- @end
- @implementation IMAPlatform (GroupAssistantListener)
- /**
- * 有新用户加入群时的通知回调
- *
- * @param groupId 群ID
- * @param membersInfo 加群用户的群资料(TIMGroupMemberInfo*)列表
- */
- -(void) onMemberJoin:(NSString *)groupId membersInfo:(NSArray *)membersInfo
- {
- dispatch_async(dispatch_get_main_queue(), ^{
- DebugLog(@"groupId = %@, membersInfo = %@", groupId, membersInfo);
-
- IMAGroup *temp = [[IMAGroup alloc] initWith:groupId];
- IMAGroup *group = (IMAGroup *)[[IMAPlatform sharedInstance].contactMgr isContainUser:temp];
- if (group)
- {
- group.groupInfo.memberNum += (uint32_t)membersInfo.count;
- }
- });
- }
- /**
- * 有群成员退群时的通知回调
- *
- * @param groupId 群ID
- * @param members 退群成员的identifier(NSString*)列表
- */
- -(void) onMemberQuit:(NSString*)groupId members:(NSArray*)members
- {
- dispatch_async(dispatch_get_main_queue(), ^{
- //DebugLog(@"groupId = %@, membersInfo = %@", groupId, members);
-
- IMAGroup *temp = [[IMAGroup alloc] initWith:groupId];
- IMAGroup *group = (IMAGroup *)[[IMAPlatform sharedInstance].contactMgr isContainUser:temp];
-
- if (group)
- {
- group.groupInfo.memberNum -= (uint32_t)members.count;
- }
- });
- }
- /**
- * 群成员信息更新的通知回调
- *
- * @param groupId 群ID
- * @param membersInfo 更新后的群成员资料(TIMGroupMemberInfo*)列表
- */
- -(void) onMemberUpdate:(NSString*)groupId membersInfo:(NSArray*)membersInfo
- {
- //DebugLog(@"groupId = %@, membersInfo = %@", groupId, membersInfo);
- }
- /**
- * 加入群的通知回调
- *
- * @param groupInfo 加入群的群组资料
- */
- -(void) onGroupAdd:(TIMGroupInfo*)groupInfo
- {
- dispatch_async(dispatch_get_main_queue(), ^{
- //DebugLog(@"groupInfo = %@", groupInfo);
- IMAUser *group = (IMAGroup *) [self.contactMgr getUserByGroupId:groupInfo.group];
- if (!group)
- {
- IMAGroup *gr = [[IMAGroup alloc] initWithInfo:groupInfo];
- [self.contactMgr onAddGroup:gr];
-
-
- //注:刚加入群时需要刷新一下会话列表,不然会话列表上显示的是群id,而不是群名称
- IMAConversation *gc = [self.conversationMgr queryConversationWith:gr];
- if (gc)
- {
- //重新设置一下lastMessage就可以更新整个会话了(lastmessage有kvo监听)
- gc.lastMessage = gc.lastMessage;
- }
- }
- });
- }
- /**
- * 解散群的通知回调
- *
- * @param groupId 解散群的群ID
- */
- -(void) onGroupDelete:(NSString*)groupId
- {
- // DebugLog(@"groupInfo = %@", groupId);
- dispatch_async(dispatch_get_main_queue(), ^{
-
- IMAUser *group = (IMAGroup *) [self.contactMgr getUserByGroupId:groupId];
- if (group)
- {
- [self.contactMgr removeUser:group];
- }
- });
- }
- /**
- * 群资料更新的通知回调
- *
- * @param groupInfo 更新后的群资料信息
- */
- - (void)onGroupUpdate:(TIMGroupInfo*)groupInfo
- {
- dispatch_async(dispatch_get_main_queue(), ^{
- // DebugLog(@"groupInfo = %@", groupInfo);
- IMAGroup *group = (IMAGroup *) [self.contactMgr getUserByGroupId:groupInfo.group];
- if (group)
- {
- [group changeGroupInfo:groupInfo];
- }
- });
- }
- @end
|