UMSocialHandler.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. //
  2. // UMSShareDataTypeTableViewController.h
  3. // SocialSDK
  4. //
  5. // Created by umeng on 16/4/14.
  6. // Copyright © 2016年 dongjianxiong. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UMSocialPlatformConfig.h"
  10. #import "UMSocialPlatformProvider.h"
  11. extern NSString *const UMSocialErrorDomain;
  12. extern NSString *const UMSocialShareDataTypeIllegalMessage;
  13. @class UMSocialHandlerConfig;
  14. /**
  15. * 实现所有平台的基类
  16. * @discuss
  17. * 前提条件:需要在主工程配置 other link flag -ObjC
  18. * 所有实现UMSocialHandler对应平台类型子类,需要重写如下方法:
  19. * 1.+(NSArray*) socialPlatformTypes; 返回对应平台的类型的数组,此处用数组是为了在微信和qq的平台是可以有不同的平台类型(微信,朋友圈等)与统一handler公用
  20. * 2.重写load函数:
  21. *
  22. * 代码示例:
  23. * +(void)load
  24. * {
  25. * [super load];//必须调用
  26. * }
  27. *
  28. * 重载后保证调用基类的[UMSocialHandler load]
  29. * 3.重写defaultManager单例类方法,保证运行时能找到defaultManager来获得当前的单例方法,保证其唯一性。
  30. */
  31. @interface UMSocialHandler : NSObject<UMSocialPlatformProvider>
  32. #pragma mark - 子类需要重载的类
  33. +(void)load;
  34. +(NSArray*) socialPlatformTypes;
  35. + (instancetype)defaultManager;
  36. #pragma mark -
  37. @property (nonatomic, copy) NSString *appID;
  38. @property (nonatomic, copy) NSString *appSecret;
  39. @property (nonatomic, copy) NSString *redirectURL;
  40. /**
  41. * 当前ViewController(用于一些特定平台弹出相应的页面,默认使用当前ViewController)
  42. * since 6.3把currentViewController修改为弱引用,防止用户传入后强引用用户传入的UIViewController,导致内存不释放,
  43. * 注意:如果传入currentViewController的时候,一定要保证在(执行对应的分享,授权,获得用户信息的接口需要传入此接口的时候)存在,否则导致弱引用为nil,没有弹出界面的效果。
  44. */
  45. @property (nonatomic, weak) UIViewController *currentViewController;
  46. @property (nonatomic, copy) UMSocialRequestCompletionHandler shareCompletionBlock;
  47. @property (nonatomic, copy) UMSocialRequestCompletionHandler authCompletionBlock;
  48. @property (nonatomic, copy) UMSocialRequestCompletionHandler userinfoCompletionBlock;
  49. -(BOOL)searchForURLSchemeWithPrefix:(NSString *)prefix;
  50. -(void)setAppId:(NSString *)appID appSecret:(NSString *)secret url:(NSString *)url;
  51. -(void)saveuid:(NSString *)uid openid:(NSString *)openid accesstoken:(NSString *)token refreshtoken:(NSString *)retoken expiration:(id )expiration;
  52. #pragma mark - 6.0.3新加入的平台配置类
  53. @property(nonatomic,readonly,strong)UMSocialHandlerConfig* handlerConfig;
  54. @end
  55. /**
  56. * 针对平台限制的类别
  57. */
  58. @interface UMSocialHandler (UMSocialLimit)
  59. /**
  60. * 检查对应平台的数据数据是否超过限制
  61. *
  62. * @param text 源文本
  63. * @param textLimit 限制文本的大小
  64. *
  65. * @return YES 代表没有限制,NO 代表超过限制
  66. */
  67. -(BOOL) checkText:(NSString*)text withTextLimit:(NSUInteger)textLimit;
  68. /**
  69. * 检查对应平台的数据数据是否超过限制
  70. *
  71. * @param data 源文本
  72. * @param dataLimit 限制文本的大小
  73. *
  74. * @return YES 代表没有限制,NO 代表超过限制
  75. */
  76. -(BOOL) checkData:(NSData*)data withDataLimit:(NSUInteger)dataLimit;
  77. /**
  78. * 对应平台超过限制,就截断文本
  79. *
  80. * @param text 源文本
  81. * @param textLimit 限制文本的大小
  82. *
  83. * @return 返回的截断的文本
  84. */
  85. -(NSString*)truncationText:(NSString*)text withTextLimit:(NSUInteger)textLimit;
  86. /**
  87. * 压缩对应平台的图片数据到限制发送的大小
  88. *
  89. * @param imageData 对应的图片数据
  90. * @param imageLimit 限制图片的大小
  91. *
  92. * @return 新的压缩的数据
  93. * @dicuss 当前图片小于对应平台的限制大小就返回本身,反之就压缩到指定大小以下发送
  94. */
  95. -(NSData*)compressImageData:(NSData*)imageData withImageLimit:(NSUInteger)imageLimit;
  96. @end
  97. #pragma mark - 6.0.3新增的配置类,用于限制分享类型和分享的内容
  98. /**
  99. * UMeng 分享类型配置信息的基类
  100. */
  101. @interface UMSocialShareObjectConfig : NSObject
  102. /**
  103. * 标题
  104. * @note 标题的长度依各个平台的要求而定
  105. */
  106. @property (nonatomic, readwrite,assign) NSUInteger titleLimit;
  107. /**
  108. * 描述
  109. * @note 描述内容的长度依各个平台的要求而定
  110. */
  111. @property (nonatomic, readwrite,assign) NSUInteger descrLimit;
  112. /**
  113. * 缩略图数据的大小
  114. */
  115. @property (nonatomic, readwrite,assign) NSUInteger thumbImageDataLimit;
  116. /**
  117. * 缩略图URL的大小
  118. */
  119. @property (nonatomic, readwrite,assign) NSUInteger thumbImageUrlLimit;
  120. /**
  121. * 点击多媒体内容之后呼起第三方应用特定页面的scheme
  122. * @warning 长度小于255
  123. * //sina平台有此字段限制
  124. * @discuss 此字段目前不用
  125. */
  126. //@property (nonatomic, strong) NSString *schemeLimit;
  127. /**
  128. * @note 长度不能超过64字节
  129. * //微信平台有此字段
  130. * @discuss 此字段目前不用
  131. */
  132. //@property (nonatomic, retain) NSString *mediaTagName;
  133. @end
  134. /**
  135. * 分享文本类型的配置
  136. *
  137. */
  138. @interface UMSocialShareTextObjectConfig : UMSocialShareObjectConfig
  139. /**
  140. * 文本内容的限制
  141. */
  142. @property(nonatomic,readwrite,assign)NSUInteger textLimit;
  143. @end
  144. /**
  145. * 分享图片的类型配置
  146. */
  147. @interface UMSocialShareImageObjectConfig : UMSocialShareObjectConfig
  148. /**
  149. * 缩略图数据的大小
  150. */
  151. @property (nonatomic, readwrite,assign) NSUInteger shareImageDataLimit;
  152. /**
  153. * 缩略图数据的URL大小
  154. */
  155. @property (nonatomic, readwrite,assign) NSUInteger shareImageURLLimit;
  156. @end
  157. /**
  158. * 分享音乐的类型配置
  159. */
  160. @interface UMSocialShareMusicObjectConfig : UMSocialShareObjectConfig
  161. /**
  162. * 音乐网页的url地址
  163. */
  164. @property (nonatomic, readwrite,assign)NSUInteger musicUrlLimit;
  165. /**
  166. * 音乐lowband网页的url地址
  167. */
  168. @property (nonatomic, readwrite,assign)NSUInteger musicLowBandUrlLimit;
  169. /**
  170. * 音乐数据url地址
  171. */
  172. @property (nonatomic, readwrite,assign)NSUInteger musicDataUrlLimit;
  173. /**
  174. * 音乐lowband数据url地址
  175. */
  176. @property (nonatomic, readwrite,assign)NSUInteger musicLowBandDataUrlLimit;
  177. @end
  178. /**
  179. * 分享视频的类型配置
  180. */
  181. @interface UMSocialShareVideoObjectConfig : UMSocialShareObjectConfig
  182. /**
  183. * 视频网页的url
  184. */
  185. @property (nonatomic, readwrite,assign) NSUInteger videoUrlLimit;
  186. /**
  187. * 视频lowband网页的url
  188. */
  189. @property (nonatomic, readwrite,assign) NSUInteger videoLowBandUrlLimit;
  190. /**
  191. * 视频数据流url
  192. */
  193. @property (nonatomic, readwrite,assign) NSUInteger videoStreamUrlLimit;
  194. /**
  195. * 视频lowband数据流url
  196. */
  197. @property (nonatomic, readwrite,assign) NSUInteger videoLowBandStreamUrlLimit;
  198. @end
  199. /**
  200. * 分享webURL
  201. */
  202. @interface UMSocialShareWebpageObjectConfig : UMSocialShareObjectConfig
  203. /**
  204. * 网页的url地址
  205. */
  206. @property (nonatomic, readwrite,assign) NSUInteger webpageUrlLimit;
  207. @end
  208. /**
  209. * 分享Email的类型配置
  210. */
  211. @interface UMSocialShareEmailObjectConfig : UMSocialShareObjectConfig
  212. /**
  213. * 接收人
  214. */
  215. @property (nonatomic, readwrite,assign) NSUInteger toRecipientLimit;
  216. /**
  217. * 抄送人
  218. */
  219. @property (nonatomic, readwrite,assign) NSUInteger ccRecipientLimit;
  220. /**
  221. * 密送人
  222. */
  223. @property (nonatomic, readwrite,assign) NSUInteger bccRecipientLimit;
  224. /**
  225. * 文本内容
  226. */
  227. @property (nonatomic, readwrite,assign) NSUInteger emailContentLimit;
  228. /**
  229. * 图片大小
  230. */
  231. @property (nonatomic, readwrite,assign) NSUInteger emailImageDataLimit;
  232. /**
  233. * 图片URL大小
  234. */
  235. @property (nonatomic, readwrite,assign) NSUInteger emailImageUrlLimit;
  236. /**
  237. * 文件(NSData)
  238. */
  239. @property (nonatomic, readwrite,assign) NSUInteger emailSendDataLimit;
  240. /**
  241. * 允许的文件格式
  242. */
  243. @property (nonatomic, readwrite,strong) NSArray *fileType;
  244. /**
  245. * 文件名,(例如图片 imageName.png, 文件名后要跟文件后缀名,否则没法识别,导致类似图片不显示的问题)
  246. */
  247. @property (nonatomic, readwrite,assign) NSUInteger fileNameLimit;
  248. @end
  249. /**
  250. * 分享Email的类型配置
  251. */
  252. @interface UMSocialShareSmsObjectConfig : UMSocialShareObjectConfig
  253. /**
  254. * 接收人
  255. */
  256. @property (nonatomic, readwrite,assign) NSUInteger recipientLimit;
  257. /**
  258. * 文本内容
  259. */
  260. @property (nonatomic, readwrite,assign) NSUInteger smsContentLimit;
  261. /**
  262. * 图片
  263. */
  264. @property (nonatomic, readwrite,assign) NSUInteger smsImageDataLimit;
  265. @property (nonatomic, readwrite,assign) NSUInteger smsImageUrlLimit;
  266. /**
  267. * 文件数据(NSData)
  268. * 必填
  269. */
  270. @property (nonatomic, readwrite,assign) NSUInteger smsSendDataLimit;
  271. /**
  272. * 文件格式
  273. * 必填,必须指定数据格式,如png图片格式应传入@"png"
  274. */
  275. @property (nonatomic, readwrite,strong) NSArray *fileType;
  276. /**
  277. * 文件名,(例如图片 imageName.png, 文件名后要跟文件后缀名,否则没法识别,导致类似图片不显示的问题)
  278. */
  279. @property (nonatomic, readwrite,assign) NSUInteger fileNameLimit;
  280. /**
  281. * 文件地址url
  282. */
  283. @property (nonatomic, readwrite,assign) NSUInteger fileUrlLimit;
  284. @end
  285. /**
  286. * 此配置项是特定平台才有的,比如微信,
  287. */
  288. @interface UMSocialShareEmotionObjectConfig : UMSocialShareObjectConfig
  289. //表情的字节大小限制
  290. @property(nonatomic,readwrite,assign)NSUInteger emotionDataLimit;
  291. @end
  292. /**
  293. * 此配置项是特定平台才有的,比如微信,
  294. */
  295. @interface UMSocialShareFileObjectConfig : UMSocialShareObjectConfig
  296. @property (nonatomic, readwrite,assign) NSUInteger fileExtensionLimit;
  297. @property (nonatomic, readwrite,assign) NSUInteger fileDataLimit;
  298. @end
  299. /**
  300. * 此配置项是特定平台才有的,比如微信
  301. */
  302. @interface UMSocialShareExtendObjectConfig : UMSocialShareObjectConfig
  303. @property (nonatomic, readwrite,assign) NSUInteger urlLimit;
  304. @property (nonatomic, readwrite,assign) NSUInteger extInfoLimit;
  305. @property (nonatomic, readwrite,assign) NSUInteger fileDataLimit;
  306. @end
  307. /**
  308. * 每个平台的配置信息
  309. * 包括如下:
  310. * 1.对分享内容的限制。
  311. *
  312. */
  313. @interface UMSocialHandlerConfig : NSObject
  314. @property(nonatomic,readwrite,strong)UMSocialShareTextObjectConfig* shareTextObjectConfig;
  315. @property(nonatomic,readwrite,strong)UMSocialShareImageObjectConfig* shareImageObjectConfig;
  316. @property(nonatomic,readwrite,strong)UMSocialShareMusicObjectConfig* shareMusicObjectConfig;
  317. @property(nonatomic,readwrite,strong)UMSocialShareVideoObjectConfig* shareVideoObjectConfig;
  318. @property(nonatomic,readwrite,strong)UMSocialShareWebpageObjectConfig* shareWebpageObjectConfig;
  319. @property(nonatomic,readwrite,strong)UMSocialShareEmailObjectConfig* shareEmailObjectConfig;
  320. @property(nonatomic,readwrite,strong)UMSocialShareSmsObjectConfig* shareSmsObjectConfig;
  321. @property(nonatomic,readwrite,strong)UMSocialShareEmotionObjectConfig* shareEmotionObjectConfig;
  322. @property(nonatomic,readwrite,strong)UMSocialShareFileObjectConfig* shareFileObjectConfig;
  323. @property(nonatomic,readwrite,strong)UMSocialShareExtendObjectConfig* shareExtendObjectConfig;
  324. //检查输入的text是否符合对应平台的输入
  325. +(BOOL) checkText:(NSString*)text withTextLimit:(NSUInteger)textLimit;
  326. +(BOOL) checkData:(NSData*)data withDataLimit:(NSUInteger)dataLimit;
  327. +(NSString*) truncationText:(NSString*)text withTextLimit:(NSUInteger)textLimit;
  328. //压缩图片
  329. + (NSData *)compressImageData:(NSData*)imageData toLength:(CGFloat)imageLimit;
  330. + (NSData *)compressImage:(UIImage*)image toLength:(CGFloat)imageLimit;
  331. @end