MiPushSDK.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. //
  2. // MiPushSDK.h
  3. // MiPushSDK
  4. //
  5. // Created by shen yang on 14-3-6.
  6. // Copyright (c) 2014年 Xiaomi. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. #import <UserNotifications/UserNotifications.h>
  11. @protocol MiPushSDKDelegate <NSObject>
  12. @optional
  13. /**
  14. * MiPushSDK 请求结果回调
  15. *
  16. * MiPushSDK的所有请求的为异步操作, 用户需监听此方法.
  17. *
  18. * @param
  19. * selector: 请求的方法
  20. * data: 返回结果字典
  21. */
  22. - (void)miPushRequestSuccWithSelector:(NSString *)selector data:(NSDictionary *)data;
  23. - (void)miPushRequestErrWithSelector:(NSString *)selector error:(int)error data:(NSDictionary *)data;
  24. /**
  25. * 启用长连接后, 当收到消息是就会回调此方法
  26. *
  27. * @param
  28. * type: 消息类型
  29. * data: 返回结果字典, 跟apns的消息格式一样
  30. */
  31. - (void)miPushReceiveNotification:(NSDictionary*)data;
  32. /**
  33. * 长连接状态变化回调
  34. * 网络环境变化,或长连接异常才会触发offline
  35. * 应用前后台切换,不会触发回调
  36. */
  37. - (void)miPushConnectionOnline;
  38. - (void)miPushConnectionOffline;
  39. @end
  40. typedef NS_ENUM(NSUInteger, MiPushSDKRegionType) {
  41. MiPushSDKRegionTypeChina = 0,
  42. MiPushSDKRegionTypeEurope,
  43. MiPushSDKRegionTypeRussia,
  44. MiPushSDKRegionTypeOther,
  45. };
  46. @interface MiPushSDK : NSObject
  47. /**
  48. * 设置 RegionType
  49. * @param
  50. * MiPushSDKRegionType: region 类型,目前支持中国/欧洲/新加坡
  51. */
  52. + (void)setRegionType:(MiPushSDKRegionType)regionType;
  53. /**
  54. * 获取当前 RegionType
  55. */
  56. + (MiPushSDKRegionType)getRegionType;
  57. /**
  58. * 获取当前 RegionType 对应的 string
  59. */
  60. + (NSString *)getRegion;
  61. /**
  62. * 客户端注册设备
  63. * @param
  64. * delegate: 回调函数
  65. * type: apns推送类型. (Badge, Alert, Sound)
  66. * connect: 是否启动长连接, 它跟APNSs是不同的通道(不管是否启动系统推送, app在前台都可以收到在线或离线消息)
  67. */
  68. + (void)registerMiPush:(id<MiPushSDKDelegate, UNUserNotificationCenterDelegate>)delegate;
  69. + (void)registerMiPush:(id<MiPushSDKDelegate, UNUserNotificationCenterDelegate>)delegate type:(UIRemoteNotificationType)type;
  70. + (void)registerMiPush:(id<MiPushSDKDelegate, UNUserNotificationCenterDelegate>)delegate type:(UIRemoteNotificationType)type connect:(BOOL)connect;
  71. /**
  72. * 客户端设备注销
  73. */
  74. + (void)unregisterMiPush;
  75. /**
  76. *
  77. * 配置是否在后台需要长连接,如果需要长连接,需要保证在后台app仍处于活跃状态
  78. * @param
  79. * enable: 是否需要长连接
  80. *
  81. */
  82. + (void)needConnectInBackground:(BOOL)enable;
  83. /**
  84. * 绑定 PushDeviceToken
  85. *
  86. * NOTE: 有时Apple会重新分配token, 所以为保证消息可达,
  87. * 必须在系统application:didRegisterForRemoteNotificationsWithDeviceToken:回调中,
  88. * 重复调用此方法. SDK内部会处理是否重新上传服务器.
  89. *
  90. * @param
  91. * deviceToken: AppDelegate中,PUSH注册成功后,
  92. * 系统回调didRegisterForRemoteNotificationsWithDeviceToken
  93. */
  94. + (void)bindDeviceToken:(NSData *)deviceToken;
  95. /**
  96. * 当同时启动APNs与内部长连接时, 把两处收到的消息合并. 通过miPushReceiveNotification返回
  97. */
  98. + (void)handleReceiveRemoteNotification:(NSDictionary*)userInfo;
  99. /**
  100. * 客户端设置别名
  101. *
  102. * @param
  103. * alias: 别名 (length:128)
  104. */
  105. + (void)setAlias:(NSString *)alias;
  106. /**
  107. * 客户端取消别名
  108. *
  109. * @param
  110. * alias: 别名 (length:128)
  111. */
  112. + (void)unsetAlias:(NSString *)alias;
  113. /**
  114. * 客户端设置帐号
  115. * 多设备设置同一个帐号, 发送消息时多设备可以同时收到
  116. *
  117. * @param
  118. * account: 帐号 (length:128)
  119. */
  120. + (void)setAccount:(NSString *)account;
  121. /**
  122. * 客户端取消帐号
  123. *
  124. * @param
  125. * account: 帐号 (length:128)
  126. */
  127. + (void)unsetAccount:(NSString *)account;
  128. /**
  129. * 客户端设置主题
  130. * 支持同时设置多个topic, 中间使用","分隔
  131. *
  132. * @param
  133. * subscribe: 主题类型描述
  134. */
  135. + (void)subscribe:(NSString *)topics;
  136. /**
  137. * 客户端取消主题
  138. * 支持同时设置多个topic, 中间使用","分隔
  139. *
  140. * @param
  141. * subscribe: 主题类型描述
  142. */
  143. + (void)unsubscribe:(NSString *)topics;
  144. /**
  145. * 统计客户端 通过push开启app行为
  146. * 如果, 你想使用服务器帮你统计你app的点击率请自行调用此方法
  147. * 方法放到:application:didReceiveRemoteNotification:回调中.
  148. * @param
  149. * messageId:Payload里面对应的miid参数
  150. */
  151. + (void)openAppNotify:(NSString *)messageId __deprecated;
  152. /**
  153. * NOTE 废弃. 请使用getAllAliasAsync替换
  154. * 获取客户端所有设置的别名
  155. */
  156. + (NSArray*)getAllAlias __deprecated;
  157. /**
  158. * 获取客户端所有设置的别名
  159. */
  160. + (void)getAllAliasAsync;
  161. /**
  162. * NOTE 废弃. 请使用getAllTopicAsync替换
  163. * 获取客户端所有订阅的主题
  164. */
  165. + (NSArray*)getAllTopic __deprecated;
  166. /**
  167. * 获取客户端所有订阅的主题
  168. */
  169. + (void)getAllTopicAsync;
  170. + (void)getAllAccountAsync;
  171. /**
  172. * 获取SDK版本号
  173. */
  174. + (NSString*)getSDKVersion;
  175. /**
  176. * 获取RegId
  177. * 如果没有RegId返回nil
  178. */
  179. + (NSString*)getRegId;
  180. /**
  181. * 设置自定义bundle path
  182. * 默认为nil,获取当前SDK所在的bundle路径
  183. */
  184. + (void)setBundlePath:(NSString *)path;
  185. /**
  186. * 获取自定义bundle path
  187. * 如果没有返回nil
  188. */
  189. + (NSString*)getBundlePath;
  190. @end