78 lines
1.8 KiB
PHP
78 lines
1.8 KiB
PHP
<?php
|
|
namespace MailPoet\Services\Bridge;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class BridgeTestMockAPI {
|
|
public $api_key;
|
|
|
|
function __construct($api_key) {
|
|
$this->setKey($api_key);
|
|
}
|
|
|
|
function checkMSSKey() {
|
|
// if a key begins with these codes, return them
|
|
$regex = '/^(expiring|401|402|403|503)/';
|
|
$code = preg_match($regex, $this->api_key, $m) ? $m[1] : 200;
|
|
return $this->processAPICheckResponse($code);
|
|
}
|
|
|
|
function checkPremiumKey() {
|
|
// if a key begins with these codes, return them
|
|
$regex = '/^(expiring|401|402|403|503)/';
|
|
$code = preg_match($regex, $this->api_key, $m) ? $m[1] : 200;
|
|
return $this->processPremiumResponse($code);
|
|
}
|
|
|
|
function updateSubscriberCount($count) {
|
|
return true;
|
|
}
|
|
|
|
function setKey($api_key) {
|
|
$this->api_key = $api_key;
|
|
}
|
|
|
|
function getKey() {
|
|
return $this->api_key;
|
|
}
|
|
|
|
private function processAPICheckResponse($code) {
|
|
switch($code) {
|
|
case 'expiring':
|
|
// a special case of a valid key
|
|
$code = 200;
|
|
$body = array(
|
|
'subscriber_limit' => 10000,
|
|
'expire_at' => Carbon::createFromTimestamp(current_time('timestamp'))
|
|
->addMonth()->format('c')
|
|
);
|
|
break;
|
|
default:
|
|
$body = null;
|
|
break;
|
|
}
|
|
|
|
return array('code' => $code, 'data' => $body);
|
|
}
|
|
|
|
private function processPremiumResponse($code) {
|
|
switch($code) {
|
|
case 'expiring':
|
|
// a special case of a valid key
|
|
$code = 200;
|
|
$body = array(
|
|
'expire_at' => Carbon::createFromTimestamp(current_time('timestamp'))
|
|
->addMonth()->format('c')
|
|
);
|
|
break;
|
|
default:
|
|
$body = null;
|
|
break;
|
|
}
|
|
|
|
return array('code' => $code, 'data' => $body);
|
|
}
|
|
}
|