-
Notifications
You must be signed in to change notification settings - Fork 5
/
sendy.php
392 lines (372 loc) · 11.5 KB
/
sendy.php
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<?php
class Sendy {
public $api_key;
public $site_url;
public $database;
/*
|--------------------------------------------------------------------------
| USE cURL TO POST TO SENDY ENDPOINTS
|
| PARAMETERS:
| * url
| * fields (array)
|
| RESPONSE: String with status
|--------------------------------------------------------------------------
*/
public function curlPost($url, $fields)
{
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_POSTFIELDS => http_build_query($fields)
));
$result = curl_exec($ch);
$http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$result = array('result'=>$result,'status'=>$http_status);
curl_close($ch);
return $result;
}
/*
|--------------------------------------------------------------------------
| CREATE AND SEND A CAMPAIGN
|
| PARAMETERS:
| * api_key
| * from_name
| * from_email
| * reply_to
| * subject
| * plain_text
| * html_text
| * list_ids (comma-separated)
| * brand_id (required if you are creating a draft, send_campaign set to 0 or left as default)
| * send_campaign (set to 1 if you want to send the campaign)
|
| RESPONSE: String with status
|--------------------------------------------------------------------------
*/
public function createCampaign($data)
{
$url = $this->site_url . '/api/campaigns/create.php';
$data['api_key'] = $this->api_key;
$campaign = $this->curlPost($url, $data);
}
/*
|--------------------------------------------------------------------------
| GET ACTIVE SUBSCRIBER COUNT FOR A LIST
|
| PARAMETERS:
| * api_key
| * list_id
|
| RESPONSE: Integer with active subscriber count
|--------------------------------------------------------------------------
*/
public function subscriberCount($list_id)
{
$url = $this->site_url . '/api/subscribers/active-subscriber-count.php';
$subscriber_count = $this->curlPost(
$url,
$fields = array(
'api_key' => $this->api_key,
'list_id' => $list_id
)
);
return $subscriber_count['result'];
}
/*
|--------------------------------------------------------------------------
| SUBSCRIBER STATUS FOR A LIST
|
| PARAMETERS:
| * api_key
| * email
| * list_id
|
| RESPONSE: String with subscriber status
|--------------------------------------------------------------------------
*/
public function subscriberStatus($email, $list_id)
{
$url = $this->site_url . '/api/subscribers/subscription-status.php';
$subscriber_status = $this->curlPost(
$url,
$fields = array(
'api_key' => $this->api_key,
'email' => $email,
'list_id' => $list_id
)
);
return $subscriber_status['result'];
}
/*
|--------------------------------------------------------------------------
| SUBSCRIBE
|
| PARAMETERS:
| * name (optional)
| * email
| * list
| * boolean (Set this to "true" so that you'll get a plain text response)
| * (custom fields can also be added here by name)
|
| RESPONSE: String with subscriber status
|--------------------------------------------------------------------------
*/
public function subscribe($name, $email, $list_id, $boolean, $custom_fields)
{
$url = $this->site_url . '/subscribe';
$fields = array(
'api_key' => $this->api_key,
'name' => $name,
'email' => $email,
'list' => $list_id,
'boolean' => $boolean
);
$custom_field_keys = array_keys($custom_fields);
$i = 0;
foreach( $custom_fields as $custom_field ) {
$fields[$custom_field_keys[$i]] = $custom_field;
$i++;
}
$subscribe = $this->curlPost($url, $fields);
return $subscribe['result'];
}
/*
|--------------------------------------------------------------------------
| UNSUBSCRIBE
|
| PARAMETERS:
| * name (optional)
| * email
| * list
| * boolean (Set this to "true" so that you'll get a plain text response)
|
| RESPONSE: String with status
|--------------------------------------------------------------------------
*/
public function unsubscribe($email, $list_id, $boolean)
{
$url = $this->site_url . '/unsubscribe';
$unsubscribe = $this->curlPost($url, $fields = array(
'api_key' => $this->api_key,
'email' => $email,
'list' => $list_id
));
return $unsubscribe['result'];
}
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| UNOFFICIAL API / PULLING SENDY DATA FROM ITS MYSQL DATABASE
|
| The methods below provide additional function pull directly from the
| Sendy MySQL database and do not use the official Sendy API.
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| CONNECT TO THE SENDY DATABASE
| Required for all methods below.
|--------------------------------------------------------------------------
*/
public function connect($host, $database, $user, $pass)
{
try {
$this->database = new PDO('mysql:host='.$host.';dbname='.$database,$user,$pass);
} catch (PDOException $e) {
return "Could not connect to database.";
}
}
/*
|--------------------------------------------------------------------------
| SELECT AND RETURN ASSOCIATIVE ARRAY FROM DATABASE
|--------------------------------------------------------------------------
*/
public function fetch($sql, $all=TRUE)
{
$stmt = $this->database->prepare($sql);
$stmt->setFetchMode(PDO::FETCH_ASSOC);
$stmt->execute();
if( $all == TRUE ) {
$result = $stmt->fetchAll();
} else {
$result = $stmt->fetch();
}
return $result;
}
/*
|--------------------------------------------------------------------------
| GET BRANDS
|--------------------------------------------------------------------------
*/
public function getBrands($id=NULL, $user_id=NULL)
{
// Get all brands
if ( $id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM apps';
return $this->fetch($sql);
// Get brand by ID
} elseif ( is_numeric($id) && $user_id == NULL ) {
$sql = 'SELECT * FROM apps WHERE id = '.$id;
return $this->fetch($sql, $all=FALSE);
// Get brands associated with a user ID
} elseif ( is_numeric($user_id) && $id == NULL ) {
$sql = 'SELECT * FROM apps WHERE userID = '.$user_id;
return $this->fetch($sql);
}
}
/*
|--------------------------------------------------------------------------
| GET USERS
|--------------------------------------------------------------------------
*/
public function getUsers($id=NULL)
{
if ( $id == null ) {
// Get all users
$sql = 'SELECT * FROM login';
return $this->fetch($sql);
// Get user by ID
} elseif ( is_numeric($id) ) {
$sql = 'SELECT * FROM login WHERE id = '.$id;
return $this->fetch($sql, $all=FALSE);
}
}
/*
|--------------------------------------------------------------------------
| GET LISTS
|--------------------------------------------------------------------------
*/
public function getLists($id=NULL, $brand_id=NULL, $user_id=NULL)
{
// Get all lists
if ( $id == NULL && $brand_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM lists';
return $this->fetch($sql);
// Get list by ID
} elseif ( is_numeric($id) && $brand_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM lists WHERE id = '.$id;
return $this->fetch($sql, $all=FALSE);
// Get lists associated with a brand ID
} elseif ( $id == NULL && is_numeric($brand_id) && $user_id == NULL ) {
$sql = 'SELECT * FROM lists WHERE app = '.$brand_id;
return $this->fetch($sql);
// Get lists associated with a user ID
} elseif ( $id == NULL && $brand_id == NULL && is_numeric($user_id) ) {
$sql = 'SELECT * FROM lists WHERE app = '.$user_id;
return $this->fetch($sql);
}
}
/*
|--------------------------------------------------------------------------
| GET SUBSCRIBERS
|--------------------------------------------------------------------------
*/
public function getSubscribers($id=NULL, $list_id=NULL, $user_id=NULL)
{
// Get all subscribers
if ( $id == NULL && $list_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM subscribers';
return $this->fetch($sql);
}
// Get subscriber by ID
elseif ( is_numeric($id) && $list_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM subscribers WHERE id = '.$id;
return $this->fetch($sql, $all=FALSE);
}
// Get subscribers associated with a list ID
elseif ( $id == NULL && is_numeric($list_id) && $user_id == NULL ) {
$sql = 'SELECT * FROM subscribers WHERE list = '.$list_id;
return $this->fetch($sql);
}
// Get subscribers associated with a user ID
elseif ( $id == NULL && $list_id == NULL && is_numeric($user_id) ) {
$sql = 'SELECT * FROM subscribers WHERE userID = '.$user_id;
return $this->fetch($sql);
}
}
/*
|--------------------------------------------------------------------------
| GET TEMPLATES
|--------------------------------------------------------------------------
*/
public function getTemplates($id=NULL, $brand_id=NULL, $user_id=NULL)
{
// Get all templates
if ( $id == NULL && $brand_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM template';
return $this->fetch($sql);
}
// Get a template by ID
elseif ( is_numeric($id) && $brand_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM template WHERE app = '.$id;
return $this->fetch($sql, $all=FALSE);
}
// Get templates associated with a brand ID
elseif ( $id == NULL && is_numeric($brand_id) && $user_id == NULL ) {
$sql = 'SELECT * FROM template WHERE app = '.$brand_id;
return $this->fetch($sql);
}
// Get templates associated with a user ID
elseif ( $id == NULL && $brand_id == NULL && is_numeric($user_id) ) {
$sql = 'SELECT * FROM template WHERE userID = '.$user_id;
return $this->fetch($sql);
}
}
/*
|--------------------------------------------------------------------------
| GET CAMPAIGNS
|--------------------------------------------------------------------------
*/
public function getCampaigns($id=NULL, $brand_id=NULL, $user_id=NULL)
{
// Get all tempaltes
if ( $id == NULL && $brand_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM campaigns';
return $this->fetch($sql);
}
// Get template by ID
elseif ( is_numeric($id) && $brand_id == NULL && $user_id == NULL ) {
$sql = 'SELECT * FROM campaigns WHERE id = '.$id;
return $this->fetch($sql, $all=FALSE);
}
// Get templates associated with a brand ID
elseif ( $id == NULL && is_numeric($brand_id) && $user_id == NULL ) {
$sql = 'SELECT * FROM campaigns WHERE app = '.$brand_id;
return $this->fetch($sql);
}
// Get tempalte by ID
elseif ( $id == NULL && $brand_id == NULL && is_numeric($user_id) ) {
$sql = 'SELECT * FROM campaigns WHERE userID = '.$user_id;
return $this->fetch($sql);
}
}
/*
|--------------------------------------------------------------------------
| GET LINKS / CLICKS
|--------------------------------------------------------------------------
*/
public function getLinks($id=NULL, $campaign_id=NULL)
{
// Get all links
if ( $id == NULL && $campaign_id == NULL ) {
$sql = 'SELECT * FROM links';
return $this->fetch($sql);
}
// Get link by ID
elseif ( is_numeric($id) && $campaign_id == NULL ) {
$sql = 'SELECT * FROM links WHERE id = '.$id;
return $this->fetch($sql, $all=FALSE);
}
// Get links associated with campaign ID
elseif ( $id == NULL && is_numeric($campaign_id) ) {
$sql = 'SELECT * FROM links WHERE campaign_id = '.$campaign_id;
return $this->fetch($sql);
}
}
}
?>