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:
<?php
class Inbound_SparkPost {
static $apikey;
static $debug = false;
public function __construct( $apikey ) {
self::$apikey = $apikey;
}
public static function get_domains( ){
$request_url = 'https://api.sparkpost.com/api/v1/sending-domains';
$domain_args = array(
'match' => null,
'limits' => null
);
$args = array(
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Accecpt' => 'application/json',
'Authorization' => self::$apikey
),
'body' => null,
'cookies' => array()
);
$response = wp_remote_get( add_query_arg($domain_args , $request_url), $args );
return json_decode($response['body'] , true);
}
public static function get_webhook( $id ){
$request_url = 'https://api.sparkpost.com/api/v1/webhooks/' . trim($id);
$webhook_args = array(
);
$args = array(
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Accecpt' => 'application/json',
'Authorization' => self::$apikey
),
'body' => null,
'cookies' => array()
);
$response = wp_remote_get( add_query_arg($webhook_args , $request_url), $args );
return json_decode($response['body'] , true);
}
public static function get_webhooks( ){
$request_url = 'https://api.sparkpost.com/api/v1/webhooks/';
$webhook_args = array(
);
$args = array(
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Accecpt' => 'application/json',
'Authorization' => self::$apikey
),
'body' => null,
'cookies' => array()
);
$response = wp_remote_get( add_query_arg($webhook_args , $request_url), $args );
return json_decode($response['body'] , true);
}
public static function create_webhook( $webhook_args ){
$request_url = 'https://api.sparkpost.com/api/v1/webhooks';
$args = array(
'method' => 'POST',
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Content-type' => 'application/json',
'Authorization' => self::$apikey,
'User-Agent' => 'sparkpost-inbound',
),
'body' => json_encode($webhook_args),
'cookies' => array()
);
$response = wp_remote_post( $request_url, $args );
if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
error_log($request_url);
error_log(print_r($args,true));
error_log(print_r($response,true));
}
return json_decode($response['body'] , true);
}
public static function send( $transmission_args ){
$request_url = 'https://api.sparkpost.com/api/v1/transmissions';
$transmission_args_encoded = json_encode($transmission_args);
$args = array(
'method' => 'POST',
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Content-type' => 'application/json',
'Authorization' => self::$apikey,
'User-Agent' => 'sparkpost-inbound',
),
'body' => $transmission_args_encoded,
'cookies' => array()
);
$response = wp_remote_post( $request_url, $args );
if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
error_log($request_url);
error_log(print_r($args,true));
error_log(print_r($response,true));
}
$json_formatted_response = json_decode($response['body'] , true);
do_action('sparkpost/send/response' , $transmission_args , $json_formatted_response );
return $json_formatted_response;
}
public static function get_campaign_metrics( $campaign_ids , $from , $to ) {
if (is_array($campaign_ids)) {
$campaign_ids = implode(',',$campaign_ids);
}
$request_url = 'https://api.sparkpost.com/api/v1/metrics/deliverability/campaign/';
$metric_args = array(
'from' => $from,
'to' => $to,
'campaigns' => $campaign_ids,
'metrics' => 'count_sent,count_accepted,count_bounce,count_hard_bounce,count_soft_bounce,count_rejected,count_rendered,count_unique_rendered,count_unique_clicked,count_clicked,count_rejected,count_spam_complaint'
);
$args = array(
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Accecpt' => 'application/json',
'Authorization' => self::$apikey
),
'body' => null,
'cookies' => array()
);
$response = wp_remote_get( add_query_arg($metric_args , $request_url), $args );
if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
error_log(print_r($response,true));
print_r(print_r($response));
}
return json_decode($response['body'] , true);
}
public static function get_transmissions( $campaign_id ) {
$request_url = 'https://api.sparkpost.com/api/v1/transmissions?campaign_id=' . $campaign_id ;
$args = array(
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Accecpt' => 'application/json',
'Authorization' => self::$apikey
),
'body' => null,
'cookies' => array()
);
$response = wp_remote_get( $request_url , $args );
if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
error_log(print_r($response,true));
print_r(print_r($response));
}
return json_decode($response['body'] , true);
}
public static function delete_transmission( $transmission_id ) {
$request_url = 'https://api.sparkpost.com/api/v1/transmissions/' . $transmission_id ;
$args = array(
'method' => 'DELETE',
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(
'Accecpt' => 'application/json',
'Authorization' => self::$apikey
),
'body' => null,
'cookies' => array()
);
$response = wp_remote_post(
$request_url,
$args
);
if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
error_log(print_r($response,true));
print_r(print_r($response));
}
return json_decode($response['body'] , true);
}
public function log($msg) {
if(self::debug) error_log($msg);
}
}