IronSource.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. //
  2. // Copyright © 2017 IronSource. All rights reserved.
  3. //
  4. #ifndef IRONSOURCE_H
  5. #define IRONSOURCE_H
  6. #import <Foundation/Foundation.h>
  7. #import <UIKit/UIKit.h>
  8. #import "ISBannerDelegate.h"
  9. #import "ISRewardedVideoDelegate.h"
  10. #import "ISOfferwallDelegate.h"
  11. #import "ISInterstitialDelegate.h"
  12. #import "ISLogDelegate.h"
  13. #import "ISConfigurations.h"
  14. #import "ISPlacementInfo.h"
  15. #import "ISIntegrationHelper.h"
  16. #import "ISEventsReporting.h"
  17. #import "ISSupersonicAdsConfiguration.h"
  18. #import "ISSegment.h"
  19. #import "ISSegmentDelegate.h"
  20. #import "ISDemandOnlyRewardedVideoDelegate.h"
  21. #import "ISDemandOnlyInterstitialDelegate.h"
  22. #import "ISBannerSize.h"
  23. #import "ISImpressionDataDelegate.h"
  24. #import "ISConsentViewDelegate.h"
  25. NS_ASSUME_NONNULL_BEGIN
  26. #define IS_REWARDED_VIDEO @"rewardedvideo"
  27. #define IS_INTERSTITIAL @"interstitial"
  28. #define IS_OFFERWALL @"offerwall"
  29. #define IS_BANNER @"banner"
  30. static NSString * const MEDIATION_SDK_VERSION = @"7.1.4";
  31. static NSString * GitHash = @"a8f7e425c";
  32. /*
  33. This constant is for sending an external impression data from mopub
  34. */
  35. static NSString * const DataSource_MOPUB = @"MoPub";
  36. @interface IronSource : NSObject
  37. /**
  38. @abstact Retrieve a string-based representation of the SDK version.
  39. @discussion The returned value will be in the form of "<Major>.<Minor>.<Revision>".
  40. @return NSString representing the current IronSource SDK version.
  41. */
  42. + (NSString *)sdkVersion;
  43. /**
  44. @abstract Sets if IronSource SDK should track network changes.
  45. @discussion Enables the SDK to change the availability according to network modifications, i.e. in the case of no network connection, the availability will turn to FALSE.
  46. Default is NO.
  47. @param flag YES if allowed to track network changes, NO otherwise.
  48. */
  49. + (void)shouldTrackReachability:(BOOL)flag;
  50. /**
  51. @abstract Sets if IronSource SDK should allow ad networks debug logs.
  52. @discussion This value will be passed to the supporting ad networks.
  53. Default is NO.
  54. @param flag YES to allow ad networks debug logs, NO otherwise.
  55. */
  56. + (void)setAdaptersDebug:(BOOL)flag;
  57. /**
  58. @abstract Sets a dynamic identifier for the current user.
  59. @discussion This parameter can be changed throughout the session and will be received in the server-to-server ad rewarded callbacks.
  60. It helps verify AdRewarded transactions and must be set before calling showRewardedVideo.
  61. @param dynamicUserId Dynamic user identifier. Should be between 1-128 chars in length.
  62. @return BOOL that indicates if the dynamic identifier is valid.
  63. */
  64. + (BOOL)setDynamicUserId:(NSString *)dynamicUserId;
  65. /**
  66. @abstract Retrieves the device's current advertising identifier.
  67. @discussion Will first try to retrive IDFA, if impossible, will try to retrive IDFV.
  68. @return The device's current advertising identifier.
  69. */
  70. + (NSString *)advertiserId;
  71. /**
  72. @abstract Sets a mediation type.
  73. @discussion This method is used only for IronSource's SDK, and will be passed as a custom param.
  74. @param mediationType a mediation type name. Should be alphanumeric and between 1-64 chars in length.
  75. */
  76. + (void)setMediationType:(NSString *)mediationType;
  77. /**
  78. @abstract Sets a mediation segment.
  79. @discussion This method is used only for IronSource's SDK, and will be passed as a custom param.
  80. @param segment A segment name, which should not exceed 64 characters.
  81. */
  82. + (void)setMediationSegment:(NSString *)segment;
  83. /**
  84. @abstract Sets a segment.
  85. @discussion This method is used to start a session with a spesific segment.
  86. @param segment A segment object.
  87. */
  88. + (void)setSegment:(ISSegment *)segment;
  89. /**
  90. @abstract Sets the delegate for segment callback.
  91. @param delegate The 'ISSegmentDelegate' for IronSource to send callbacks to.
  92. */
  93. + (void)setSegmentDelegate:(id<ISSegmentDelegate>)delegate;
  94. /**
  95. @abstact Sets the meta data with a key and value.
  96. @discussion This value will be passed to the supporting ad networks.
  97. @param key The meta data key.
  98. @param value The meta data value
  99. */
  100. + (void)setMetaDataWithKey:(NSString *)key value:(NSString *)value;
  101. /**
  102. @abstact Sets the meta data with a key and values.
  103. @discussion This value will be passed to the supporting ad networks.
  104. @param key The meta data key.
  105. @param values The meta data values
  106. */
  107. + (void)setMetaDataWithKey:(NSString *)key values:(NSMutableArray *) values;
  108. /**
  109. @abstact used for demand only API, return the bidding data token.
  110. */
  111. + (NSString *) getISDemandOnlyBiddingData;
  112. #pragma mark - SDK Initialization
  113. /**
  114. @abstract Sets an identifier for the current user.
  115. @param userId User identifier. Should be between 1-64 chars in length.
  116. */
  117. + (void)setUserId:(NSString *)userId;
  118. /**
  119. @abstract Initializes IronSource's SDK with all the ad units that are defined in the platform.
  120. @param appKey Application key.
  121. */
  122. + (void)initWithAppKey:(NSString *)appKey;
  123. /**
  124. @abstract Initializes IronSource's SDK with the requested ad units.
  125. @discussion This method checks if the requested ad units are defined in the platform, and initializes them.
  126. The adUnits array should contain string values that represent the ad units.
  127. It is recommended to use predefined constansts:
  128. IS_REWARDED_VIDEO, IS_INTERSTITIAL, IS_OFFERWALL, IS_BANNER
  129. e.g: [IronSource initWithAppKey:appKey adUnits:@[IS_REWARDED_VIDEO, IS_INTERSTITIAL, IS_OFFERWALL, IS_BANNER]];
  130. @param appKey Application key.
  131. @param adUnits An array of ad units to initialize.
  132. */
  133. + (void)initWithAppKey:(NSString *)appKey adUnits:(NSArray<NSString *> *)adUnits;
  134. /**
  135. @abstract Initializes ironSource SDK in demand only mode.
  136. @discussion This method initializes IS_REWARDED_VIDEO and/or IS_INTERSTITIAL ad units.
  137. @param appKey Application key.
  138. @param adUnits An array containing IS_REWARDED_VIDEO and/or IS_INTERSTITIAL.
  139. */
  140. + (void)initISDemandOnly:(NSString *)appKey adUnits:(NSArray<NSString *> *)adUnits;
  141. #pragma mark - Rewarded Video
  142. /**
  143. @abstract Sets the delegate for rewarded video callbacks.
  144. @param delegate The 'ISRewardedVideoDelegate' for IronSource to send callbacks to.
  145. */
  146. + (void)setRewardedVideoDelegate:(id<ISRewardedVideoDelegate>)delegate;
  147. /**
  148. @abstract Shows a rewarded video using the default placement.
  149. @param viewController The UIViewController to display the rewarded video within.
  150. */
  151. + (void)showRewardedVideoWithViewController:(UIViewController *)viewController;
  152. /**
  153. @abstract Shows a rewarded video using the provided placement name.
  154. @param viewController The UIViewController to display the rewarded video within.
  155. @param placementName The placement name as was defined in the platform. If nil is passed, a default placement will be used.
  156. */
  157. + (void)showRewardedVideoWithViewController:(UIViewController *)viewController placement:(nullable NSString *)placementName;
  158. /**
  159. @abstract Determine if a locally cached rewarded video exists on the mediation level.
  160. @discussion A return value of YES here indicates that there is a cached rewarded video for one of the ad networks.
  161. @return YES if rewarded video is ready to be played, NO otherwise.
  162. */
  163. + (BOOL)hasRewardedVideo;
  164. /**
  165. @abstract Verify if a certain placement has reached its ad limit.
  166. @discussion This is to ensure you don’t portray the Rewarded Video button when the placement has been capped or paced and thus will not serve the video ad.
  167. @param placementName The placement name as was defined in the platform.
  168. @return YES if capped or paced, NO otherwise.
  169. */
  170. + (BOOL)isRewardedVideoCappedForPlacement:(NSString *)placementName;
  171. /**
  172. @abstract Retrive an object containing the placement's reward name and amount.
  173. @param placementName The placement name as was defined in the platform.
  174. @return ISPlacementInfo representing the placement's information.
  175. */
  176. + (ISPlacementInfo *)rewardedVideoPlacementInfo:(NSString *)placementName;
  177. /**
  178. @abstract Enables sending server side parameters on successful rewarded video
  179. @param parameters A dictionary containing the parameters.
  180. */
  181. + (void)setRewardedVideoServerParameters:(NSDictionary *)parameters;
  182. /**
  183. @abstract Disables sending server side parameters on successful rewarded video
  184. */
  185. + (void)clearRewardedVideoServerParameters;
  186. #pragma mark - Demand Only Rewarded Video
  187. /**
  188. @abstract Sets the delegate for demand only rewarded video callbacks.
  189. @param delegate The 'ISDemandOnlyRewardedVideoDelegate' for IronSource to send callbacks to.
  190. */
  191. + (void)setISDemandOnlyRewardedVideoDelegate:(id<ISDemandOnlyRewardedVideoDelegate>)delegate;
  192. /**
  193. @abstract Loads a demand only rewarded video for a non bidder instance.
  194. @discussion This method will load a demand only rewarded video ad for a non bidder instance.
  195. @param instanceId The demand only instance id to be used to display the rewarded video.
  196. */
  197. + (void)loadISDemandOnlyRewardedVideo:(NSString *)instanceId;
  198. /**
  199. @abstract Loads a demand only rewarded video for a bidder instance.
  200. @discussion This method will load a demand only rewarded video ad for a bidder instance.
  201. @param instanceId The demand only instance id to be used to display the rewarded video.
  202. */
  203. + (void)loadISDemandOnlyRewardedVideoWithAdm:(NSString *)instanceId adm:(NSString *)adm;
  204. /**
  205. @abstract Shows a demand only rewarded video using the default placement.
  206. @param viewController The UIViewController to display the rewarded video within.
  207. @param instanceId The demand only instance id to be used to display the rewarded video.
  208. */
  209. + (void)showISDemandOnlyRewardedVideo:(UIViewController *)viewController instanceId:(NSString *)instanceId;
  210. /**
  211. @abstract Determine if a locally cached demand only rewarded video exists for an instance id.
  212. @discussion A return value of YES here indicates that there is a cached rewarded video for the instance id.
  213. @param instanceId The demand only instance id to be used to display the rewarded video.
  214. @return YES if rewarded video is ready to be played, NO otherwise.
  215. */
  216. + (BOOL)hasISDemandOnlyRewardedVideo:(NSString *)instanceId;
  217. #pragma mark - Interstitial
  218. /**
  219. @abstract Sets the delegate for interstitial callbacks.
  220. @param delegate The 'ISInterstitialDelegate' for IronSource to send callbacks to.
  221. */
  222. + (void)setInterstitialDelegate:(id<ISInterstitialDelegate>)delegate;
  223. /**
  224. @abstract Loads an interstitial.
  225. @discussion This method will load interstitial ads from the underlying ad networks according to their priority.
  226. */
  227. + (void)loadInterstitial;
  228. /**
  229. @abstract Show a rewarded video using the default placement.
  230. @param viewController The UIViewController to display the interstitial within.
  231. */
  232. + (void)showInterstitialWithViewController:(UIViewController *)viewController;
  233. /**
  234. @abstract Show a rewarded video using the provided placement name.
  235. @param viewController The UIViewController to display the interstitial within.
  236. @param placementName The placement name as was defined in the platform. If nil is passed, a default placement will be used.
  237. */
  238. + (void)showInterstitialWithViewController:(UIViewController *)viewController placement:(nullable NSString *)placementName;
  239. /**
  240. @abstract Determine if a locally cached interstitial exists on the mediation level.
  241. @discussion A return value of YES here indicates that there is a cached interstitial for one of the ad networks.
  242. @return YES if there is a locally cached interstitial, NO otherwise.
  243. */
  244. + (BOOL)hasInterstitial;
  245. /**
  246. @abstract Verify if a certain placement has reached its ad limit.
  247. @discussion This is to ensure you don’t try to show interstitial when the placement has been capped or paced and thus will not serve the interstitial ad.
  248. @param placementName The placement name as was defined in the platform.
  249. @return YES if capped or paced, NO otherwise.
  250. */
  251. + (BOOL)isInterstitialCappedForPlacement:(NSString *)placementName;
  252. #pragma mark - Demand Only Interstitial
  253. /**
  254. @abstract Sets the delegate for demand only interstitial callbacks.
  255. @param delegate The 'ISDemandOnlyInterstitialDelegate' for IronSource to send callbacks to.
  256. */
  257. + (void)setISDemandOnlyInterstitialDelegate:(id<ISDemandOnlyInterstitialDelegate>)delegate;
  258. /**
  259. @abstract Loads a demand only interstitial.
  260. @discussion This method will load a demand only interstitial ad.
  261. @param instanceId The demand only instance id to be used to display the interstitial.
  262. */
  263. + (void)loadISDemandOnlyInterstitial:(NSString *)instanceId;
  264. /**
  265. @abstract Loads a demand only interstitial bidder instance.
  266. @discussion This method will load a demand only interstitial ad bidder instance.
  267. @param instanceId The demand only instance id to be used to display the interstitial.
  268. */
  269. + (void)loadISDemandOnlyInterstitialWithAdm:(NSString *)instanceId adm:(NSString *)adm;
  270. /**
  271. @abstract Show a demand only interstitial using the default placement.
  272. @param viewController The UIViewController to display the interstitial within.
  273. @param instanceId The demand only instance id to be used to display the interstitial.
  274. */
  275. + (void)showISDemandOnlyInterstitial:(UIViewController *)viewController instanceId:(NSString *)instanceId;
  276. /**
  277. @abstract Determine if a locally cached interstitial exists for a demand only instance id.
  278. @discussion A return value of YES here indicates that there is a cached interstitial for the instance id.
  279. @param instanceId The demand only instance id to be used to display the interstitial.
  280. @return YES if there is a locally cached interstitial, NO otherwise.
  281. */
  282. + (BOOL)hasISDemandOnlyInterstitial:(NSString *)instanceId;
  283. #pragma mark - Offerwall
  284. /**
  285. @abstract Sets the delegate for offerwall callbacks.
  286. @param delegate The 'ISOfferwallDelegate' for IronSource to send callbacks to.
  287. */
  288. + (void)setOfferwallDelegate:(id<ISOfferwallDelegate>)delegate;
  289. /**
  290. @abstract Show an offerwall using the default placement.
  291. @param viewController The UIViewController to display the offerwall within.
  292. */
  293. + (void)showOfferwallWithViewController:(UIViewController *)viewController;
  294. /**
  295. @abstract Show an offerwall using the provided placement name.
  296. @param viewController The UIViewController to display the offerwall within.
  297. @param placementName The placement name as was defined in the platform. If nil is passed, a default placement will be used.
  298. */
  299. + (void)showOfferwallWithViewController:(UIViewController *)viewController placement:(nullable NSString *)placementName;
  300. /**
  301. @abstract Retrive information on the user’s total credits and any new credits the user has earned.
  302. @discussion The function can be called at any point during the user’s engagement with the app.
  303. */
  304. + (void)offerwallCredits;
  305. /**
  306. @abstract Determine if the offerwall is prepared.
  307. @return YES if there is an available offerwall, NO otherwise.
  308. */
  309. + (BOOL)hasOfferwall;
  310. #pragma mark - Banner
  311. /**
  312. @abstract Sets the delegate for banner callbacks.
  313. @param delegate The 'ISBannerDelegate' for IronSource to send callbacks to.
  314. */
  315. + (void)setBannerDelegate:(id<ISBannerDelegate>)delegate;
  316. /**
  317. @abstract Loads a banner using the default placement.
  318. @discussion This method will load banner ads of the requested size from the underlying ad networks according to their priority.
  319. The size should contain ISBannerSize value that represent the required banner ad size.
  320. e.g. [IronSource loadBannerWithViewController:self size:ISBannerSize_BANNER];
  321. Custom banner size:
  322. ISBannerSize* bannerSize = [[ISBannerSize alloc] initWithWidth:320 andHeight:50];
  323. [IronSource loadBannerWithViewController:self size:bannerSize];
  324. @param viewController The UIViewController to display the banner within.
  325. @param size The required banner ad size
  326. */
  327. + (void)loadBannerWithViewController:(UIViewController *)viewController size:(ISBannerSize *)size;
  328. /**
  329. @abstract Loads a banner using the provided placement name.
  330. @discussion This method will load banner ads of the requested size from the underlying ad networks according to their priority.
  331. The size should contain ISBannerSize value that represent the required banner ad size.
  332. e.g. [IronSource loadBannerWithViewController:self size:ISBannerSize_BANNER placement:@"your_placement_name"];
  333. Custom banner size:
  334. ISBannerSize* bannerSize = [[ISBannerSize alloc] initWithWidth:320 andHeight:50];
  335. [IronSource loadBannerWithViewController:self size:bannerSize placement:@"your_placement_name"];
  336. @param viewController The UIViewController to display the banner within.
  337. @param size The required banner ad size
  338. @param placementName The placement name as was defined in the platform. If nil is passed, the default placement will be used.
  339. */
  340. + (void)loadBannerWithViewController:(UIViewController *)viewController size:(ISBannerSize *)size placement:(nullable NSString *)placementName;
  341. /**
  342. @abstract Removes the banner from memory.
  343. @param banner The ISBannerView to remove.
  344. */
  345. + (void)destroyBanner:(ISBannerView *)banner;
  346. /**
  347. @abstract Verify if a certain placement has reached its ad limit.
  348. @discussion This is to ensure you don’t try to load a banner when the placement has been capped or paced and thus will not serve the banner ad.
  349. @param placementName The placement name as was defined in the platform.
  350. @return YES if capped or paced, NO otherwise.
  351. */
  352. + (BOOL)isBannerCappedForPlacement:(NSString *)placementName;
  353. #pragma mark - Logging
  354. /**
  355. @abstract Sets the delegate for log callbacks.
  356. @param delegate The 'ISLogDelegate' for IronSource to send callbacks to.
  357. */
  358. + (void)setLogDelegate:(id<ISLogDelegate>)delegate;
  359. + (void)setConsent:(BOOL)consent;
  360. #pragma mark - Impression Data
  361. /**
  362. @abstract Sets the delegate for impression data callbacks.
  363. @param delegate The 'ISImpressionDataDelegate' for IronSource to send callbacks to.
  364. */
  365. + (void)setImpressionDataDelegate:(id<ISImpressionDataDelegate>)delegate __attribute__((deprecated("use addImpressionDataDelegate instead")));
  366. /**
  367. @abstract Adds the delegate for impression data callbacks.
  368. @param delegate The 'ISImpressionDataDelegate' for IronSource to send callbacks to.
  369. */
  370. + (void)addImpressionDataDelegate:(id<ISImpressionDataDelegate>)delegate;
  371. /**
  372. @abstract Ad revenue data
  373. @param dataSource the external source id from which the impression data is sent.
  374. @param impressionData the impression data
  375. */
  376. + (void)setAdRevenueDataWithDataSource:(NSString *)dataSource
  377. impressionData:(NSData *)impressionData;
  378. /**
  379. @abstract Removes the delegate from impression data callbacks.
  380. @param delegate The 'ISImpressionDataDelegate' for IronSource to send callbacks to.
  381. */
  382. + (void)removeImpressionDataDelegate:(id<ISImpressionDataDelegate>)delegate;
  383. #pragma mark - Consent View
  384. /**
  385. @abstract Sets the delegate for consent view callbacks.
  386. @param delegate The 'ISConsentViewDelegate' for IronSource to send callbacks to.
  387. */
  388. + (void)setConsentViewWithDelegate:(id<ISConsentViewDelegate>)delegate;
  389. /**
  390. @abstract Load consent view.
  391. @param consentViewType The type of the view (pre/post).
  392. */
  393. + (void)loadConsentViewWithType:(NSString *)consentViewType;
  394. /**
  395. @abstract Show consent view after load.
  396. @param consentViewType The type of the view (pre/post).
  397. */
  398. + (void)showConsentViewWithViewController:(UIViewController *)viewController andType:(NSString *)consentViewType;
  399. #pragma mark - Conversion Value (CV)
  400. /**
  401. @abstract get current conversion value
  402. */
  403. + (NSNumber *)getConversionValue;
  404. @end
  405. NS_ASSUME_NONNULL_END
  406. #endif