| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /*
- * | | | | \ \ / / | | | | / _______|
- * | |____| | \ \/ / | |____| | / /
- * | |____| | \ / | |____| | | | _____
- * | | | | / \ | | | | | | |____ |
- * | | | | / /\ \ | | | | \ \______| |
- * | | | | /_/ \_\ | | | | \_________|
- *
- * Copyright (c) 2011 ~ 2015 Shenzhen HXHG. All rights reserved.
- */
- #import <Foundation/Foundation.h>
- #import <JMessage/JMSGConversation.h>
- /*!
- * 事件
- *
- * #### 事件分类
- *
- * 事件主要区分两类,通知事件、消息事件,两种不同类型的事件是通过不同的监听方法来监听的。
- *
- * #### 通知事件
- *
- * 通知事件就是除群事件之外的,如:当前登录登录状态变更、好友相关、消息撤回、消息透传、入群申请、管理员审批等事件.
- * 上层通过对应类里的相对应的代理方法接收事件,如:JMSGEventDelegate 、JMSGGroupDelegate 等类.
- *
- * #### 消息事件
- *
- * 消息事件就是群事件,如:群加人、踢人、修改群信息、群成员禁言、管理员变更等(即:会展示在消息列表的事件),SDK 依旧作为一个特殊的消息类型下发,上层通过 [JMSGMessageDelegate onReceiveMessage:] 接收消息事件.
- */
- @interface JMSGNotificationEvent : NSObject
- /*!
- * @abstract 事件类型
- * @discussion 参考事件类型的定义 JMSGEventNotificationType
- */
- @property(nonatomic, assign, readonly) JMSGEventNotificationType eventType;
- /*!
- * @abstract 事件的描述信息
- * @discussion 下发事件的文字描述,可能为空
- */
- @property(nonatomic, strong, readonly) NSString *eventDescription;
- @end
- #pragma mark - 用户登录状态改变事件
- /*!
- * @abstract 当前用户登录状态改变事件
- *
- * @discussion 当前登录用户被踢、非客户端修改密码强制登出、登录状态异常、被删除、被禁用、信息变更等通知
- *
- * @since 3.5.0
- */
- @interface JMSGUserLoginStatusChangeEvent: JMSGNotificationEvent
- @end
- #pragma mark - 消息撤回事件
- /*!
- * @abstract 消息撤回事件
- *
- * @discussion 上层通过 JMSGEventDelegate 类中的 [JMSGEventDelegate onReceiveMessageRetractEvent:] 代理方法监听此事件,详见官方文档.
- */
- @interface JMSGMessageRetractEvent : JMSGNotificationEvent
- /// 消息撤回所属会话
- @property(nonatomic, strong, readonly) JMSGConversation *conversation;
- /// 撤回之后的消息
- @property(nonatomic, strong, readonly) JMSGMessage *retractMessage;
- @end
- #pragma mark - 消息已读回执状态变更事件
- /*!
- * @abstract 消息已读回执状态变更事件
- *
- * @discussion 上层通过 JMSGEventDelegate 类中的 [JMSGEventDelegate onReceiveMessageReceiptStatusChangeEvent:] 代理方法监听该事件
- */
- @interface JMSGMessageReceiptStatusChangeEvent : JMSGNotificationEvent
- /// 消息所属会话
- @property(nonatomic, strong, readonly) JMSGConversation *conversation;
- /// 已读回执变更的消息列表
- @property(nonatomic, strong, readonly) NSArray <__kindof JMSGMessage *>*messages;
- @end
- #pragma mark - 消息透传事件
- /*!
- * @abstract 消息透传事件
- *
- * @discussion 上层通过 JMSGEventDelegate 类中的 [JMSGEventDelegate onReceiveMessageTransparentEvent:] 代理方法监听该事件
- */
- @interface JMSGMessageTransparentEvent : JMSGNotificationEvent
- /// 消息透传的类型,单聊、群聊、设备间透传消息
- @property(nonatomic, assign, readonly) JMSGTransMessageType transMessageType;
- /// 透传消息的发送者
- @property(nonatomic, strong, readonly) JMSGUser *sendUser;
- /// 透传消息的目标对象,JMSGUser、JMSGGroup
- @property(nonatomic, strong, readonly) id target;
- /// 透传消息内容
- @property(nonatomic, strong, readonly) NSString *transparentText;
- /*!
- * @abstract 透传消息所属会话
- *
- * @discussion 注意:如果接收到设备间的透传事件,此属性的值为 nil;如果本地并没有创建会话,此属性也为 nil
- */
- @property(nonatomic, strong, readonly) JMSGConversation *conversation;
- @end
- #pragma mark - 申请入群事件
- /*!
- * @abstract 申请入群事件
- *
- * @discussion 上层通过 JMSGGroupDelegate 类中的 [JMSGGroupDelegate onReceiveApplyJoinGroupApprovalEvent:] 代理方法监听该事件
- */
- @interface JMSGApplyJoinGroupEvent : JMSGNotificationEvent
- /// 事件的 id
- @property(nonatomic, strong, readonly) NSString *eventID;
- /// 群 gid
- @property(nonatomic, strong, readonly) NSString *groupID;
- /// 是否是用户主动申请入群,YES:主动申请加入,NO:被邀请加入
- @property(nonatomic, assign, readonly) BOOL isInitiativeApply;
- /// 发起申请的 user
- @property(nonatomic, strong, readonly) JMSGUser *sendApplyUser;
- /// 被邀请入群的 user 数组
- @property(nonatomic, strong, readonly) NSArray JMSG_GENERIC(__kindof JMSGUser *)*joinGroupUsers;
- /// 原因
- @property(nonatomic, strong, readonly) NSString *reason;
- @end
- #pragma mark - 管理员拒绝入群申请事件
- /*!
- * @abstract 管理员拒绝入群申请事件
- *
- * @discussion 上层通过 JMSGGroupDelegate 类中的 [JMSGGroupDelegate onReceiveGroupAdminRejectApplicationEvent:] 代理方法监听该事件
- */
- @interface JMSGGroupAdminRejectApplicationEvent : JMSGNotificationEvent
- /// 群 gid
- @property(nonatomic, strong, readonly) NSString *groupID;
- /// 拒绝原因
- @property(nonatomic, strong, readonly) NSString *rejectReason;
- /// 操作的管理员
- @property(nonatomic, strong, readonly) JMSGUser *groupManager;
- @end
- #pragma mark - 管理员审批事件
- /*!
- * @abstract 管理员审批事件
- *
- * @discussion 管理员同意或者拒绝了某个入群申请,其他管理员会收到该通知,上层通过 [JMSGGroupDelegate onReceiveGroupAdminApprovalEvent:] 代理方法监听该事件
- */
- @interface JMSGGroupAdminApprovalEvent : JMSGNotificationEvent
- /// 管理员是否同意申请,YES:同意,NO:拒绝
- @property(nonatomic, assign, readonly) BOOL isAgreeApply;
- /// 申请入群事件的事件 id
- @property(nonatomic, strong, readonly) NSString *applyEventID;
- /// 群 gid
- @property(nonatomic, strong, readonly) NSString *groupID;
- /// 操作的管理员
- @property(nonatomic, strong, readonly) JMSGUser *groupAdmin;
- /// 申请或被邀请加入群的用户,即:实际入群的用户
- @property(nonatomic, strong, readonly) NSArray JMSG_GENERIC(__kindof JMSGUser *)*users;
- @end
- #pragma mark - 群成员群昵称修改事件
- /*!
- * @abstract 群成员群昵称修改事件
- *
- * @discussion 如果是离线事件, memberInfoList 里会包含群成员每一次的修改记录,上层通过 [JMSGGroupDelegate onReceiveGroupNicknameChangeEvents:] 监听。
- */
- @interface JMSGGroupNicknameChangeEvent : NSObject
- /// 群组
- @property(nonatomic, strong, readonly) JMSGGroup *group;
- /// 修改昵称的群成员
- @property(nonatomic, strong, readonly) JMSGGroupMemberInfo *fromMemberInfo;
- /// 被修改昵称的群成员
- @property(nonatomic, strong, readonly) JMSGGroupMemberInfo *toMemberInfo;
- /// 事件时间
- @property(nonatomic, assign, readonly) UInt64 ctime;
- @end
- #pragma mark - 群公告事件
- /*!
- * @abstract 群公告事件
- *
- * @discussion 收到事件后根据 eventType 判断类型,取相应的数据,上层通过 [JMSGGroupDelegate onReceiveGroupAnnouncementEvents:] 监听。
- */
- @interface JMSGGroupAnnouncementEvent : JMSGNotificationEvent
- /// 群公告
- @property(nonatomic, strong, readonly) JMSGGroupAnnouncement *announcement;
- /// 事件操作者
- @property(nonatomic, strong, readonly) JMSGUser *fromUser;
- /// 群组
- @property(nonatomic, strong, readonly) JMSGGroup *group;
- /// 事件时间
- @property(nonatomic, assign, readonly) UInt64 ctime;
- @end
- #pragma mark - 群黑名单变更事件
- /*!
- * @abstract 群黑名单变更事件
- *
- * @discussion 收到事件后根据 eventType 判断类型,取相应的数据,上层通过 [JMSGGroupDelegate onReceiveGroupBlacklistChangeEvents:] 监听。
- */
- @interface JMSGGroupBlacklistChangeEvent : JMSGNotificationEvent
- /// 群组
- @property(nonatomic, strong, readonly) JMSGGroup *group;
- /// 事件操作者
- @property(nonatomic, strong, readonly) JMSGUser *fromUser;
- /// 被加入/被删除 群组黑名单的用户列表
- @property(nonatomic, strong, readonly) NSArray <__kindof JMSGUser *>*targetList;
- @end
- #pragma mark - 聊天室事件
- @interface JMSGChatRoomEvent : JMSGNotificationEvent
- /// 聊天室
- @property(nonatomic, strong, readonly) JMSGChatRoom *chatRoom;
- /// 事件操作者
- @property(nonatomic, strong, readonly) JMSGUser *fromUser;
- /// 事件作用的用户列表
- @property(nonatomic, strong, readonly) NSArray <__kindof JMSGUser *>*targetList;
- @end
- #pragma mark - 聊天室管理员变更事件
- /*!
- * @abstract 聊天室管理员变更事件
- *
- * @discussion 收到事件后根据 eventType 判断类型,取相应的数据,上层通过 [JMSGEventDelegate onReceiveChatRoomAdminChangeEvents:] 监听。
- */
- @interface JMSGChatRoomAdminChangeEvent : JMSGChatRoomEvent
- @end
- #pragma mark - 聊天室黑名单变更事件
- /*!
- * @abstract 聊天室黑名单变更事件
- *
- * @discussion 收到事件后根据 eventType 判断类型,取相应的数据,上层通过 [JMSGEventDelegate onReceiveChatRoomBlacklistChangeEvents:] 监听。
- */
- @interface JMSGChatRoomBlacklisChangetEvent : JMSGChatRoomEvent
- @end
- #pragma mark - 聊天室禁言事件
- /*!
- * @abstract 聊天室禁言事件
- *
- * @discussion 收到事件后根据 eventType 判断类型,取相应的数据,上层通过 [JMSGEventDelegate onReceiveChatRoomSilenceEvents:] 监听。
- */
- @interface JMSGChatRoomSilenceEvent : JMSGChatRoomEvent
- @end
|