PATH:
home
/
sparklp6
/
public_html
/
website_356c8563
/
nitropack
/
nitropack-sdk
/
NitroPack
/
SDK
/
Api
<?php namespace NitroPack\SDK\Api; class Varnish extends SignedBase { protected $secret; public function __construct($siteId, $siteSecret) { parent::__construct($siteId, $siteSecret); $this->secret = $siteSecret; } public function enable() { $path = 'varnish/enable/' . $this->siteId; $httpResponse = $this->makeRequest($path, array(), array(), 'POST'); $status = ResponseStatus::getStatus($httpResponse->getStatusCode()); switch ($status) { case ResponseStatus::OK: return true; default: $this->throwException($httpResponse, 'Error while enabling Varnish integration: %s'); } } public function disable() { $path = 'varnish/disable/' . $this->siteId; $httpResponse = $this->makeRequest($path, array(), array(), 'POST'); $status = ResponseStatus::getStatus($httpResponse->getStatusCode()); switch ($status) { case ResponseStatus::OK: return true; default: $this->throwException($httpResponse, 'Error while disabling Varnish integration: %s'); } } public function configure($settings) { $path = 'varnish/configure/' . $this->siteId; $post = [ 'Servers' => !empty($settings['Servers']) ? $settings['Servers'] : [], 'PurgeAllUrl' => !empty($settings['PurgeAllUrl']) ? $settings['PurgeAllUrl'] : '', 'PurgeAllMethod' => !empty($settings['PurgeAllMethod']) ? $settings['PurgeAllMethod'] : '', 'PurgeSingleMethod' => !empty($settings['PurgeSingleMethod']) ? $settings['PurgeSingleMethod'] : '', ]; $httpResponse = $this->makeRequest($path, array(), array(), 'POST', $post); $status = ResponseStatus::getStatus($httpResponse->getStatusCode()); switch ($status) { case ResponseStatus::OK: return json_decode($httpResponse->getBody(), true); default: $this->throwException($httpResponse, 'Error while configure the Varnish integration: %s'); } } public function get() { $path = 'varnish/get/' . $this->siteId; $httpResponse = $this->makeRequest($path, array(), array(), 'GET'); $status = ResponseStatus::getStatus($httpResponse->getStatusCode()); switch ($status) { case ResponseStatus::OK: $configSet = json_decode($httpResponse->getBody(), true); return $configSet; default: $this->throwException($httpResponse, 'Error while getting Varnish config set: %s'); } } public function set($settings) { $path = 'varnish/set/' . $this->siteId; if (empty($settings) || !is_array($settings)) { $settings = array(); } $post = empty($settings) ? array() : array('configSet' => $settings); $httpResponse = $this->makeRequest($path, array(), array(), 'POST', $post); $status = ResponseStatus::getStatus($httpResponse->getStatusCode()); switch ($status) { case ResponseStatus::OK: return true; default: $this->throwException($httpResponse, 'Error while setting Varnish config: %s'); } } }
[-] Webhook.php
[edit]
[-] SignedBase.php
[edit]
[-] ExcludedUrls.php
[edit]
[-] .htaccess
[edit]
[-] Excludes.php
[edit]
[-] AdditionalDomains.php
[edit]
[-] Varnish.php
[edit]
[-] Stats.php
[edit]
[-] Tagger.php
[edit]
[-] ResponseStatus.php
[edit]
[-] Integration.php
[edit]
[-] SafeMode.php
[edit]
[-] SecureRequestMaker.php
[edit]
[-] Warmup.php
[edit]
[-] Cache.php
[edit]
[-] RemoteConfigFetcher.php
[edit]
[-] Base.php
[edit]
[-] VariationCookie.php
[edit]
[-] Response.php
[edit]
[-] Url.php
[edit]
[+]
..
[-] RequestMaker.php
[edit]