COM-40 :: Added Page Rules endpoint.
This commit is contained in:
15
src/Configurations/ConfigurationsException.php
Normal file
15
src/Configurations/ConfigurationsException.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: junade
|
||||
* Date: 19/09/2017
|
||||
* Time: 16:57
|
||||
*/
|
||||
|
||||
namespace Cloudflare\API\Configurations;
|
||||
|
||||
|
||||
class ConfigurationsException extends \Exception
|
||||
{
|
||||
|
||||
}
|
||||
369
src/Configurations/PageRulesActions.php
Normal file
369
src/Configurations/PageRulesActions.php
Normal file
@@ -0,0 +1,369 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: junade
|
||||
* Date: 19/09/2017
|
||||
* Time: 16:50
|
||||
*/
|
||||
|
||||
namespace Cloudflare\API\Configurations;
|
||||
|
||||
class PageRulesActions implements Configurations
|
||||
{
|
||||
private $configs = array();
|
||||
|
||||
public function setAlwaysOnline(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "always_online";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setAlwaysUseHTTPS(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "always_use_https";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setBrowserCacheTTL(int $ttl)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "browser_cache_ttl";
|
||||
$object->value = $ttl;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setBrowserIntegrityCheck(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "browser_check";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setBypassCacheOnCookie(bool $value)
|
||||
{
|
||||
if (preg_match('/^([a-zA-Z0-9\.=|_*-]+)$/i', $value) < 1) {
|
||||
throw new ConfigurationsException("Invalid cookie string.");
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "bypass_cache_on_cookie";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setCacheByDeviceType(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "cache_by_device_type";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setCacheKey(string $value)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "cache_key";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setCacheLevel(string $value)
|
||||
{
|
||||
if (!in_array($value, ["bypass", "basic", "simplified", "aggressive", "cache_everything"])) {
|
||||
throw new ConfigurationsException("Invalid cache level");
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "cache_level";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setCacheOnCookie(bool $value)
|
||||
{
|
||||
if (preg_match('/^([a-zA-Z0-9\.=|_*-]+)$/i', $value) < 1) {
|
||||
throw new ConfigurationsException("Invalid cookie string.");
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "cache_on_cookie";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setDisableApps(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "disable_apps";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setDisablePerformance(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "disable_performance";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setDisableSecurity(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "disable_security";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setEdgeCacheTTL(int $value)
|
||||
{
|
||||
if ($value > 2419200) {
|
||||
throw new ConfigurationsException("Edge Cache TTL too high.");
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "edge_cache_ttl";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setEmailObfuscation(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "disable_security";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setForwardingURL(int $statusCode, string $forwardingUrl)
|
||||
{
|
||||
if (in_array($statusCode, ['301', '302'])) {
|
||||
throw new ConfigurationsException('Status Codes can only be 301 or 302.');
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "forwarding_url";
|
||||
$object->status_code = $statusCode;
|
||||
$object->url = $forwardingUrl;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setHostHeaderOverride(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "host_header_override";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setHotlinkProtection(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "hotlink_protection";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setIPGeoLocationHeader(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "ip_geolocation";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setMinification(bool $html, bool $css, bool $js)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "minification";
|
||||
$object->html = $html === true ? "on" : "off";
|
||||
$object->css = $css === true ? "on" : "off";
|
||||
$object->js = $js === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setMirage(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "mirage";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setOriginErrorPagePassthru(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "origin_error_page_pass_thru";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setQueryStringSort(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "sort_query_string_for_cache";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setDisableRailgun(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "disable_railgun";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setResolveOverride(bool $value)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "resolve_override";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setRespectStrongEtag(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "respect_strong_etag";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setResponseBuffering(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "response_buffering";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setRocketLoader(string $value)
|
||||
{
|
||||
if (!in_array($value, ["off", "manual", "automatic"])) {
|
||||
throw new ConfigurationsException('Rocket Loader can only be off, automatic, or manual.');
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "rocket_loader";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setSecurityLevel(string $value)
|
||||
{
|
||||
if (!in_array($value, ["off", "essentially_off", "low", "medium", "high", "under_attack"])) {
|
||||
throw new ConfigurationsException('Can only be set to off, essentially_off, low, medium, high or under_attack.');
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "security_level";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setServerSideExcludes(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "server_side_exclude";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setSmartErrors(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "smart_errors";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setSSL(string $value)
|
||||
{
|
||||
if (!in_array($value, ["off", "flexible", "full", "strict", "origin_pull"])) {
|
||||
throw new ConfigurationsException('Can only be set to off, flexible, full, strict, origin_pull.');
|
||||
}
|
||||
|
||||
$object = new \stdClass();
|
||||
$object->id = "smart_errors";
|
||||
$object->value = $value;
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setTrueClientIpHeader(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "true_client_ip_header";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setWAF(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "waf";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setAutomatedHTTPSRewrites(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "automatic_https_rewrites";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function setOpportunisticEncryption(bool $active)
|
||||
{
|
||||
$object = new \stdClass();
|
||||
$object->id = "opportunistic_encryption";
|
||||
$object->value = $active === true ? "on" : "off";
|
||||
|
||||
array_push($this->configs, $object);
|
||||
}
|
||||
|
||||
public function getArray(): array
|
||||
{
|
||||
return $this->configs;
|
||||
}
|
||||
}
|
||||
31
src/Configurations/PageRulesTargets.php
Normal file
31
src/Configurations/PageRulesTargets.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: junade
|
||||
* Date: 19/09/2017
|
||||
* Time: 18:37
|
||||
*/
|
||||
|
||||
namespace Cloudflare\API\Configurations;
|
||||
|
||||
|
||||
class PageRulesTargets implements Configurations
|
||||
{
|
||||
private $targets;
|
||||
|
||||
public function __construct(string $queryUrl)
|
||||
{
|
||||
$target = new \stdClass();
|
||||
$target->target = 'url';
|
||||
$target->constraint = new \stdClass();
|
||||
$target->constraint->operator = "matches";
|
||||
$target->constraint->value = $queryUrl;
|
||||
|
||||
$this->targets = [$target];
|
||||
}
|
||||
|
||||
public function getArray(): array
|
||||
{
|
||||
return $this->targets;
|
||||
}
|
||||
}
|
||||
@@ -6,10 +6,12 @@
|
||||
* Time: 16:17
|
||||
*/
|
||||
|
||||
namespace Cloudflare\API\Adapter;
|
||||
namespace Cloudflare\API\Endpoints;
|
||||
|
||||
|
||||
use Cloudflare\API\Endpoints\API;
|
||||
use Cloudflare\API\Adapter\Adapter;
|
||||
use Cloudflare\API\Configurations\PageRulesActions;
|
||||
use Cloudflare\API\Configurations\PageRulesTargets;
|
||||
|
||||
class PageRules implements API
|
||||
{
|
||||
@@ -19,4 +21,135 @@ class PageRules implements API
|
||||
{
|
||||
$this->adapter = $adapter;
|
||||
}
|
||||
|
||||
public function createPageRule(
|
||||
string $zoneID,
|
||||
PageRulesTargets $target,
|
||||
PageRulesActions $actions,
|
||||
bool $active = true,
|
||||
int $priority = null
|
||||
): bool {
|
||||
$options = [
|
||||
'targets' => $target->getArray(),
|
||||
'actions' => $actions->getArray()
|
||||
];
|
||||
|
||||
if ($active !== null) {
|
||||
$options['active'] = $active == true ? 'active' : 'disabled';
|
||||
}
|
||||
|
||||
if ($priority !== null) {
|
||||
$options['priority'] = $priority;
|
||||
}
|
||||
|
||||
|
||||
$query = $this->adapter->post('zones/' . $zoneID . '/pagerules', [], $options);
|
||||
|
||||
$body = json_decode($query->getBody());
|
||||
|
||||
if (isset($body->result->id)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function listPageRules(
|
||||
string $zoneID,
|
||||
string $status = null,
|
||||
string $order = null,
|
||||
string $direction = null,
|
||||
string $match = null
|
||||
): \stdClass {
|
||||
if (is_null($status) && !in_array($status, ['active', 'disabled'])) {
|
||||
throw new EndpointException('Page Rules can only be listed by status of active or disabled.');
|
||||
}
|
||||
|
||||
if (is_null($order) && !in_array($order, ['status', 'priority'])) {
|
||||
throw new EndpointException('Page Rules can only be ordered by status or priority.');
|
||||
}
|
||||
|
||||
if (is_null($direction) && !in_array($direction, ['asc', 'desc'])) {
|
||||
throw new EndpointException('Direction of Page Rule ordering can only be asc or desc.');
|
||||
}
|
||||
|
||||
if (is_null($match) && !in_array($match, ['all', 'any'])) {
|
||||
throw new EndpointException('Match can only be any or all.');
|
||||
}
|
||||
|
||||
$options = [
|
||||
'status' => $status,
|
||||
'order' => $order,
|
||||
'direction' => $direction,
|
||||
'match' => $match
|
||||
];
|
||||
|
||||
$query = http_build_query($options);
|
||||
|
||||
$user = $this->adapter->get('zones/' . $zoneID . '/pagerules?' . $query, []);
|
||||
$body = json_decode($user->getBody());
|
||||
|
||||
$result = new \stdClass();
|
||||
$result->result = $body->result;
|
||||
$result->result_info = $body->result_info;
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function getPageRuleDetails(string $zoneID, string $ruleID): \stdClass
|
||||
{
|
||||
$user = $this->adapter->get('zones/' . $zoneID . '/pagerules/' . $ruleID, []);
|
||||
$body = json_decode($user->getBody());
|
||||
return $body->result;
|
||||
}
|
||||
|
||||
public function updatePageRule(
|
||||
string $zoneID,
|
||||
PageRulesTargets $target = null,
|
||||
PageRulesActions $actions = null,
|
||||
bool $active = null,
|
||||
int $priority = null
|
||||
): bool {
|
||||
$options = [];
|
||||
|
||||
if ($active !== null) {
|
||||
$options['targets'] = $target->getArray();
|
||||
}
|
||||
|
||||
if ($actions !== null) {
|
||||
$options['actions'] = $actions->getArray();
|
||||
}
|
||||
|
||||
if ($active !== null) {
|
||||
$options['active'] = $active == true ? 'active' : 'disabled';
|
||||
}
|
||||
|
||||
if ($priority !== null) {
|
||||
$options['priority'] = $priority;
|
||||
}
|
||||
|
||||
|
||||
$query = $this->adapter->patch('zones/' . $zoneID . '/pagerules', [], $options);
|
||||
|
||||
$body = json_decode($query->getBody());
|
||||
|
||||
if (isset($body->result->id)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function deletePageRule(string $zoneID, string $ruleID): bool
|
||||
{
|
||||
$user = $this->adapter->delete('zones/' . $zoneID . '/pagerules/' . $ruleID, [], []);
|
||||
|
||||
$body = json_decode($user->getBody());
|
||||
|
||||
if (isset($body->result->id)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user