-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSupersonicAdsPlugin.m
263 lines (191 loc) · 9.13 KB
/
SupersonicAdsPlugin.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
//
// SupersonicAdsPlugin.h
//
//
// Created by meir amar on 13-04-02.
// Copyright 2013 meir amar. All rights reserved.
//
#import "SupersonicAdsPlugin.h"
#import "SupersonicAdsPublisher.h"
// Help create NSNull objects for nil items (since neither NSArray nor NSDictionary can store nil values).
#define NILABLE(obj) ((obj) != nil ? (NSObject *)(obj) : (NSObject *)[NSNull null])
// To avoid compilation warning, declare JSONKit and SBJson's
// category methods without including their header files.
@interface NSArray (StubsForSerializers)
- (NSString *)cdvjk_JSONString;
- (NSString *)cdvjk_JSONRepresentation;
@end
// Helper category method to choose which JSON serializer to use.
@interface NSArray (cdvjk_JSONSerialize)
- (NSString *)cdvjk_JSONSerialize;
@end
@implementation NSArray (cdvjk_JSONSerialize)
- (NSString *)cdvjk_JSONSerialize {
return [self respondsToSelector:@selector(cdvjk_JSONString)] ? [self cdvjk_JSONString] : [self cdvjk_JSONRepresentation];
}
@end
@implementation SupersonicAdsPlugin
NSString* APPKEY = @"here_set__the_app_key";
// videos methods
- (void) initBrandConnect:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
NSString* callbackId = [arguments pop];
CDVPluginResult* pluginResult = nil;
NSString* javaScript = nil;
@try {
NSString* userid = [arguments objectAtIndex:0];
NSLog(@"SupersonicAdsPlugin init with userid: %@)", userid);
if (userid != nil) {
//NSDictionary* dic = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects: @"1", nil]
// forKeys:[NSArray arrayWithObjects: @"demoCampaigns",nil]];
SupersonicAdsPublisher* publisher = [SupersonicAdsPublisher sharedSupersonicAds];
[publisher initBrandConnectWithApplicationKey:APPKEY userId:userid delegate:self additionalParameters:nil];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
javaScript = [pluginResult toSuccessCallbackString:callbackId];
}
} @catch (id exception) {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_JSON_EXCEPTION messageAsString:[exception reason]];
javaScript = [pluginResult toErrorCallbackString:callbackId];
}
[self writeJavascript:javaScript];
}
- (void) showBrandConnect:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
NSLog(@"showBrandConnect init with userid");
NSString* callbackId = [arguments pop];
CDVPluginResult* pluginResult = nil;
NSString* javaScript = nil;
@try {
SupersonicAdsPublisher* publisher = [SupersonicAdsPublisher sharedSupersonicAds];
[publisher showBrandConnect:self.viewController];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
javaScript = [pluginResult toSuccessCallbackString:callbackId];
} @catch (id exception) {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_JSON_EXCEPTION messageAsString:[exception reason]];
javaScript = [pluginResult toErrorCallbackString:callbackId];
}
[self writeJavascript:javaScript];
}
/* The following method will be called on a successful initialization.
* The campaignInfo Dictionary contains the following key-value pairs: * - numberAvailableCampaigns - integer
* - totalNumberCredits - integer
* - firstCampaignCredits - integer
* In case we don’t have campaigns, numberAvailableCampaigns will be 0.
* Otherwise we do have campaigns hence the incentivized button should be * displayed to the user
*/
- (void)brandConnectDidInitWithCampaignInfo:(NSDictionary *)campaignInfo
{
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"brandConnectDidInitWithCampaignInfo", @"eventName",
NILABLE(campaignInfo), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
/*
* The following method will be called when the server initialization * failed.
* The error Dictionary contains the following key-value pairs:
* - errorNumber - integer (optional)
* - description - string
*/
- (void)brandConnectDidFailInitWithError:(NSDictionary *)error
{
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"brandConnectDidFailInitWithError", @"eventName",
NILABLE(error), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
/*
* Called before the webView is shown.
*/
- (void)brandConnectWindowWillOpen
{
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"brandConnectWindowWillOpen", @"eventName",
NILABLE(nil), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
/*
* Called before the webView is closed.
*/
- (void)brandConnectWindowDidClose
{
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"brandConnectWindowDidClose", @"eventName",
NILABLE(nil), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
/* Called once a user successfully completes a BrandConnect offer, and earns * credits.
* The campaignInfo Dictionary contains the following key-value pair:
* - credits – integer
*/
- (void)brandConnectDidFinishAd:(NSDictionary *)campaignInfo
{
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"brandConnectDidFinishAd", @"eventName",
NILABLE(campaignInfo), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
/*
* Called when the last offer was completed by the user in the current
* session, and indicates that there are currently no more available offers * for the user.
* Following this event, the app can call
* initBrandConnectWithApplicationKey() occasionally to check for * availability of new offers.
*/
- (void)brandConnectNoMoreOffers
{
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"brandConnectNoMoreOffers", @"eventName",
NILABLE(nil), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
// offerwall methods
- (void) showOfferWall:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
NSString* callbackId = [arguments pop];
CDVPluginResult* pluginResult = nil;
NSString* javaScript = nil;
@try {
NSString* userid = [arguments objectAtIndex:0];
NSLog(@"SupersonicAdsPlugin showOfferWallt userid: %@)", userid);
if (userid != nil) {
SupersonicAdsPublisher* publisher = [SupersonicAdsPublisher sharedSupersonicAds];
[publisher showOfferWallWithApplicationKey:APPKEY userId:userid delegate:self shouldGetLocation:NO extraParameters:NULL parentView: self.viewController];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
javaScript = [pluginResult toSuccessCallbackString:callbackId];
}
} @catch (id exception) {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_JSON_EXCEPTION messageAsString:[exception reason]];
javaScript = [pluginResult toErrorCallbackString:callbackId];
}
[self writeJavascript:javaScript];
}
- (void) offerWallDidClose
{
NSLog(@"SupersonicAdsPlugin offerWallDidClose");
NSString* resultString = [[NSDictionary dictionaryWithObjectsAndKeys:
@"offerWallDidClose", @"eventName",
NILABLE(nil), @"data",
nil] cdvjk_JSONString];
NSString *js = [NSString stringWithFormat:@"SupersonicAdsPlugin._handleEvents(%@)", resultString];
NSLog(@"SupersonicAdsPlugin js: %@", js);
[self writeJavascript: js];
}
// end of offerwall methods
@end