Files
piratepoet/lib/Config/PublicAPI.php
MrCasual 3124d6a61b - Fixes issue with ucwords() function on older PHP versions
- Updates Supervisor/Daemon to strip port from site_url() when it's
  running on localhost inside a virtual machine :)
2015-11-27 07:35:13 -05:00

46 lines
1.1 KiB
PHP

<?php
namespace MailPoet\Config;
use MailPoet\Queue\Daemon;
use MailPoet\Util\Helpers;
if(!defined('ABSPATH')) exit;
class PublicAPI {
function __construct() {
# http://example.com/?mailpoet-api&section=&action=&payload=
$this->api = isset($_GET['mailpoet-api']) ? true : false;
$this->section = isset($_GET['section']) ? $_GET['section'] : false;
$this->action = isset($_GET['action']) ?
Helpers::underscoreToCamelCase($_GET['action']) :
false;
$this->payload = isset($_GET['payload']) ?
json_decode(urldecode($_GET['payload']), true) :
false;
}
function init() {
if(!$this->api && !$this->section) return;
if(method_exists($this, $this->section)) {
call_user_func(
array(
$this,
$this->section
));
} else {
header('HTTP/1.0 404 Not Found');
}
exit;
}
function queue() {
$queue = new Daemon($this->payload);
if(method_exists($queue, $this->action)) {
call_user_func(
array(
$queue,
$this->action
));
}
}
}