GT3CaptchaManager.h 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. //
  2. // GTCaptchaManager.h
  3. // GTCaptcha
  4. //
  5. // Created by NikoXu on 8/22/16.
  6. // Copyright © 2016 Geetest. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "GT3Utils.h"
  10. #import "GT3Error.h"
  11. @protocol GT3CaptchaManagerDelegate, GT3CaptchaManagerViewDelegate, GT3CaptchaManagerStatisticDelegate;
  12. @interface GT3CaptchaManager : NSObject
  13. /** SDK版本号 */
  14. + (NSString *)sdkVersion;
  15. /** 验证管理代理 */
  16. @property (nonatomic, weak) id<GT3CaptchaManagerDelegate> delegate;
  17. /** 验证视图代理 */
  18. @property (nonatomic, weak) id<GT3CaptchaManagerViewDelegate> viewDelegate;
  19. /** 验证统计代理 */
  20. @property (nonatomic, weak) id<GT3CaptchaManagerStatisticDelegate> statisticDelegate;
  21. /** 验证状态 */
  22. @property (nonatomic, readonly) GT3CaptchaState captchaState;
  23. /** 图形验证的展示状态 */
  24. @property (nonatomic, readonly) BOOL isShowing;
  25. /** 获取启动验证参数的接口 */
  26. @property (nonatomic, readonly) NSURL *API_1;
  27. /** 进行二次验证的接口 */
  28. @property (nonatomic, readonly) NSURL *API_2;
  29. /** 验证的ID */
  30. @property (nonatomic, readonly, strong) NSString *gt_captcha_id;
  31. /** 验证的会话标识 */
  32. @property (nonatomic, readonly, strong) NSString *gt_challenge;
  33. /** 验证的服务状态, 1正常/0宕机 */
  34. @property (nonatomic, readonly, strong) NSNumber *gt_success_code;
  35. /** 背景验证 */
  36. @property (nonatomic, strong) UIColor *maskColor;
  37. #pragma mark 基本方法
  38. /** 验证单例 */
  39. + (instancetype)sharedGTManagerWithAPI1:(NSString *)api_1
  40. API2:(NSString *)api_2
  41. timeout:(NSTimeInterval)timeout;
  42. /**
  43. * @abstract 验证初始化方法
  44. *
  45. * @discussion 请不要在接口api_1和api_2的URL上带动态参数, 如果需要对api_1和api_2的请求做修改见GT3CaptchaManagerDelegate代理方法`gtCaptcha:willSendRequestAPI1:withReplacedHandler:`及 `gtCaptcha:willSendSecondaryCaptchaRequest:withReplacedRequest:`
  46. *
  47. * @seealso `gtCaptcha:willSendRequestAPI1:withReplacedHandler:`及`gtCaptcha:willSendSecondaryCaptchaRequest:withReplacedRequest:`
  48. *
  49. * @param api_1 获取验证参数的接口
  50. * @param api_2 进行二次验证的接口
  51. * @param timeout 超时时长
  52. * @return GT3CaptchaManager 实例
  53. *
  54. */
  55. - (instancetype)initWithAPI1:(NSString *)api_1
  56. API2:(NSString *)api_2
  57. timeout:(NSTimeInterval)timeout NS_DESIGNATED_INITIALIZER;
  58. /**
  59. * @abstract 取消异步请求
  60. *
  61. * @discussion
  62. * 当希望取消正在执行的<b>NSURLSessionDataTask</b>时,调用此方法
  63. *
  64. * ❗️<b>内部请求基于NSURLSeesion</b>
  65. */
  66. - (void)cancelRequest;
  67. /**
  68. * @abstract 自定义配置验证参数
  69. *
  70. * @discussion
  71. * 从后端sdk获取的验证参数, 其中单个challenge只能使用在同一次验证会话中
  72. *
  73. * @param gt_public_key 在官网申请的captcha_id
  74. * @param gt_challenge 根据极验服务器sdk生成的challenge
  75. * @param gt_success_code 网站主服务器监测geetest服务的可用状态 0/1 不可用/可用
  76. * @param api_2 用于二次验证的接口.网站主根据极验服务端sdk来部署.
  77. *
  78. */
  79. - (void)configureGTest:(NSString *)gt_public_key
  80. challenge:(NSString *)gt_challenge
  81. success:(NSNumber *)gt_success_code
  82. withAPI2:(NSString *)api_2;
  83. /**
  84. *
  85. * @abstract 注册验证
  86. *
  87. * @param completionHandler 注册成功后的回调
  88. */
  89. - (void)registerCaptcha:(GT3CaptchaDefaultBlock)completionHandler;
  90. /**
  91. * ❗️<b>必要方法</b>❗️
  92. * @abstract 开始验证
  93. *
  94. * @discussion
  95. * 获取姿态, 提交分析后, 如有必要在`[[UIApplication sharedApplication].delegate window]`上显示极验验证的GTView验证视图
  96. * 极验验证GTWebView通过JS与SDK通信
  97. * 内部逻辑会根据当前的`captchaState`属性的状态不同而变更
  98. *
  99. */
  100. - (void)startGTCaptchaWithAnimated:(BOOL)animated;
  101. /**
  102. * 终止验证
  103. */
  104. - (void)stopGTCaptcha;
  105. /**
  106. * @abstract 重置验证
  107. *
  108. * @discussion
  109. * 内部先调用`stopGTCaptcha`后, 在主线程延迟0.3秒后
  110. * 执行`startCaptcha`的内部方法。
  111. * 只在`GT3CaptchaStateFail`,`GT3CaptchaStateError`,
  112. * `GT3CaptchaStateSuccess`, `GT3CaptchaStateCancel`状态下执行。
  113. */
  114. - (void)resetGTCaptcha;
  115. /**
  116. * 若验证显示则关闭验证界面
  117. */
  118. - (void)closeGTViewIfIsOpen;
  119. /**
  120. * 获取cookie value
  121. *
  122. * @param cookieName cookie的键名
  123. * @return 对应的cookie的值
  124. */
  125. - (NSString *)getCookieValue:(NSString *)cookieName;
  126. #pragma mark 其他配置的方法
  127. /**
  128. * @abstract 图形验证超时的时长
  129. *
  130. * @param timeout GT3WebView资源请求超时时间
  131. */
  132. - (void)useGTViewWithTimeout:(NSTimeInterval)timeout;
  133. /**
  134. * @abstract 验证标题
  135. *
  136. * @discussion
  137. * 默认不开启. 字符长度不能超过28, 一个中文字符为两个2字符长度.
  138. *
  139. * @param title 验证标题字符串
  140. */
  141. - (void)useGTViewWithTitle:(NSString *)title;
  142. /**
  143. * @abstract 配置状态指示器
  144. *
  145. * @discussion
  146. * 为了能方便的调试动画,真机调试模拟低速网络 Settings->Developer
  147. * ->Status->Enable->Edge(😂)
  148. *
  149. * @param animationBlock 自定义时需要实现的动画block,仅在type配置为GTIndicatorCustomType时才执行
  150. * @param type 状态指示器的类型
  151. */
  152. - (void)useAnimatedAcitvityIndicator:(GT3IndicatorAnimationViewBlock)animationBlock
  153. withIndicatorType:(GT3ActivityIndicatorType)type;
  154. /**
  155. * @abstract 配置背景模糊
  156. *
  157. * @discussion
  158. * iOS8以上生效
  159. *
  160. * @param blurEffect 模糊特效
  161. */
  162. - (void)useVisualViewWithEffect:(UIBlurEffect *)blurEffect;
  163. /**
  164. * @abstract 切换验证语言
  165. *
  166. * @discussion
  167. * 默认中文
  168. *
  169. * @param Type 语言类型
  170. */
  171. - (void)useLanguage:(GT3LanguageType)Type;
  172. /**
  173. * @abstract 完全使用HTTPS协议请求验证
  174. *
  175. * @discussion
  176. * 默认开启HTTPS
  177. *
  178. * @param disable 是否禁止https支持
  179. */
  180. - (void)disableSecurityAuthentication:(BOOL)disable;
  181. /**
  182. * @abstract 验证背景交互事件的开关
  183. *
  184. * @discussion 默认关闭
  185. *
  186. * @param disable YES忽略交互事件/NO接受交互事件
  187. */
  188. - (void)disableBackgroundUserInteraction:(BOOL)disable;
  189. /**
  190. * @abstract 控制验证管理器内部的网络可达性检测
  191. *
  192. * @param enable YES 开启/NO 关闭. 默认YES.
  193. */
  194. - (void)enableNetworkReachability:(BOOL)enable;
  195. /**
  196. * @abstract Debug Mode
  197. *
  198. * @discussion
  199. * 开启debugMode,在开启验证之前调用此方法
  200. * 默认不开启
  201. *
  202. * @param enable YES开启,NO关闭
  203. */
  204. - (void)enableDebugMode:(BOOL)enable;
  205. @end
  206. #pragma mark - 验证代理方法
  207. @protocol GT3CaptchaManagerDelegate <NSObject>
  208. @required
  209. /**
  210. * 验证错误处理
  211. *
  212. * @discussion 抛出内部错误, 比如GTWebView等错误
  213. *
  214. * @param manager 验证管理器
  215. * @param error 错误源
  216. */
  217. - (void)gtCaptcha:(GT3CaptchaManager *)manager errorHandler:(GT3Error *)error;
  218. /**
  219. * @abstract 通知已经收到二次验证结果, 在此处理最终验证结果
  220. *
  221. * @discussion
  222. * 二次验证的错误只在这里返回, `decisionHandler`需要处理
  223. *
  224. * @param manager 验证管理器
  225. * @param data 二次验证返回的数据
  226. * @param response 二次验证的响应
  227. * @param error 错误源
  228. * @param decisionHandler 更新验证结果的视图
  229. */
  230. - (void)gtCaptcha:(GT3CaptchaManager *)manager didReceiveSecondaryCaptchaData:(NSData *)data response:(NSURLResponse *)response error:(GT3Error *)error decisionHandler:(void (^)(GT3SecondaryCaptchaPolicy captchaPolicy))decisionHandler;
  231. @optional
  232. /**
  233. * @abstract 是否使用内部默认的API1请求逻辑
  234. *
  235. * @param manager 验证管理器
  236. * @return YES使用,NO不使用
  237. */
  238. - (BOOL)shouldUseDefaultRegisterAPI:(GT3CaptchaManager *)manager;
  239. /**
  240. * @abstract 将要向<b>API1</b>发送请求的时候调用此方法, 通过此方法可以修改将要发送的请求
  241. *
  242. * @discussion 调用此方法的时候必须执行<b>requestHandler</b>, 否则导致内存泄露。 不支持子线程。
  243. *
  244. * @param manager 验证管理器
  245. * @param originalRequest 默认发送的请求对象
  246. * @param replacedHandler 修改请求的执行block
  247. */
  248. - (void)gtCaptcha:(GT3CaptchaManager *)manager willSendRequestAPI1:(NSURLRequest *)originalRequest withReplacedHandler:(void (^)(NSURLRequest * request))replacedHandler;
  249. /**
  250. * @abstract 当接收到从<b>API1</b>的数据, 通知返回字典, 包括<b>gt_public_key</b>,
  251. * <b>gt_challenge</b>, <b>gt_success_code</b>
  252. *
  253. * @discussion
  254. * 如果实现此方法, 需要解析验证需要的数据并返回。
  255. 如果不返回验证初始化数据, 使用内部的解析规则进行解析。默认先解析一级结构, 再匹配键名为"data"或"gtcap"中的数据。
  256. *
  257. * @param manager 验证管理器
  258. * @param dictionary API1返回的数据(未解析)
  259. * @param error 返回的错误
  260. *
  261. * @return 验证初始化数据, 格式见下方
  262. <pre>
  263. {
  264. "challenge" : "12ae1159ffdfcbbc306897e8d9bf6d06",
  265. "gt" : "ad872a4e1a51888967bdb7cb45589605",
  266. "success" : 1
  267. }
  268. </pre>
  269. */
  270. - (NSDictionary *)gtCaptcha:(GT3CaptchaManager *)manager didReceiveDataFromAPI1:(NSDictionary *)dictionary withError:(GT3Error *)error;
  271. /**
  272. * @abstract 通知接收到返回的验证交互结果
  273. *
  274. * @discussion 此方法仅仅是前端返回的初步结果, 并非验证最终结果。
  275. *
  276. * @param manager 验证管理器
  277. * @param code 验证交互结果, 0失败/1成功
  278. * @param result 二次验证数据
  279. * @param message 附带消息
  280. */
  281. - (void)gtCaptcha:(GT3CaptchaManager *)manager didReceiveCaptchaCode:(NSString *)code result:(NSDictionary *)result message:(NSString *)message;
  282. /**
  283. * @abstract 是否使用内部默认的API2请求逻辑
  284. *
  285. * @discussion 默认返回YES;
  286. *
  287. * @param manager 验证管理器
  288. * @return YES使用,NO不使用
  289. */
  290. - (BOOL)shouldUseDefaultSecondaryValidate:(GT3CaptchaManager *)manager;
  291. /**
  292. * @abstract 通知即将进行二次验证, 再次修改发送至<b>API2</b>的验证。 不支持子线程。
  293. *
  294. * @discussion
  295. * 请不要修改<b>requestHandler</b>执行所在的线程或队列, 否则可能导
  296. * 请求修改失败. 二次验证的请求方式应为<b>POST</b>, 头部信息应为:
  297. * <pre>{"Content-Type":@"application/x-www-form-urlencoded;charset=UTF-8"}</pre>
  298. *
  299. * @param manager 验证管理器
  300. * @param replacedRequest 修改二次验证请求的block
  301. */
  302. - (void)gtCaptcha:(GT3CaptchaManager *)manager willSendSecondaryCaptchaRequest:(NSURLRequest *)originalRequest withReplacedRequest:(void (^)(NSMutableURLRequest * request))replacedRequest;
  303. /**
  304. * @abstract 用户主动关闭了验证码界面
  305. *
  306. * @param manager 验证管理器
  307. */
  308. - (void)gtCaptchaUserDidCloseGTView:(GT3CaptchaManager *)manager;
  309. @end
  310. @protocol GT3CaptchaManagerViewDelegate <NSObject>
  311. @optional
  312. /**
  313. * @abstract 通知验证模式
  314. *
  315. * @param manager 验证管理器
  316. * @param mode 验证模式
  317. */
  318. - (void)gtCaptcha:(GT3CaptchaManager *)manager notifyCaptchaMode:(GT3CaptchaMode)mode;
  319. /**
  320. * @abstract 通知将要显示图形验证
  321. *
  322. * @param manager 验证管理器
  323. */
  324. - (void)gtCaptchaWillShowGTView:(GT3CaptchaManager *)manager;
  325. /**
  326. * @abstract 更新验证状态
  327. *
  328. * @param manager 验证管理器
  329. * @param state 验证状态
  330. * @param error 错误信息
  331. */
  332. - (void)gtCaptcha:(GT3CaptchaManager *)manager updateCaptchaStatus:(GT3CaptchaState)state error:(GT3Error *)error;
  333. /**
  334. * @abstract 更新验证视图
  335. *
  336. * @param manager 验证管理器
  337. * @param fromValue 起始值
  338. * @param toValue 终止值
  339. * @param timeInterval 时间间隔
  340. */
  341. - (void)gtCaptcha:(GT3CaptchaManager *)manager updateCaptchaViewWithFactor:(CGFloat)fromValue to:(CGFloat)toValue timeInterval:(NSTimeInterval)timeInterval;
  342. @end
  343. @protocol GT3CaptchaManagerStatisticDelegate <NSObject>
  344. @optional
  345. - (void)gtCaptchaDidStartCaptcha:(GT3CaptchaManager *)manager;
  346. - (void)gtCaptcha:(GT3CaptchaManager *)manager didReceiveFullpageResult:(NSString *)result;
  347. - (void)gtCaptchaNotifyGTViewDidReady:(GT3CaptchaManager *)manager;
  348. - (void)gtCaptcha:(GT3CaptchaManager *)manager didReturnStatisticInfomation:(NSData *)data;
  349. @end