CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.1.7

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Backend/ClientAPI.php

82lines · modepreview

<?php
namespace CloudFlare\Plugin\Backend;

use \CF\API\Client;
use \CF\API\Request;
use \CloudFlare\Plugin\Backend\MagentoIntegration;

class ClientAPI extends Client
{

    /**
     * @param MagentoIntegration $integration
     */
    public function __construct(MagentoIntegration $integration)
    {
        $httpClient = $integration->getHttpClient();
        $httpClient->setEndpoint($this->getEndpoint());
        $this->setHttpClient($httpClient);

        parent::__construct($integration);
    }

    /**
     * DELETE zones/:id/purge_cache
     * https://api.cloudflare.com/#zone-purge-individual-files-by-url-and-cache-tags
     *
     * @param String[] $tags
     * @return
     */
    public function zonePurgeCacheByTags($tags)
    {
        $zoneId = $this->getZoneIdForDomainName($this->integrationAPI->getMagentoDomainName());

        if ($zoneId) {
            $request = new Request('DELETE', 'zones/'. $zoneId .'/purge_cache', array(), array('tags' => $tags));

            return $this->callAPI($request);
        }
    }

    /**
     * DELETE zones/:id/purge_cache
     * https://api.cloudflare.com/#zone-purge-all-files
     *
     * @return mixed
     */
    public function zonePurgeCache()
    {
        $zoneId = $this->getZoneIdForDomainName($this->integrationAPI->getMagentoDomainName());
        if ($zoneId) {
            $request = new Request('DELETE', 'zones/'. $zoneId .'/purge_cache', array(), array('purge_everything' => true));

            return $this->callAPI($request);
        }
    }

    /**
     * @param String $domainName
     * @return null
     */
    protected function getZoneIdForDomainName($domainName)
    {
        $zoneId = $this->data_store->getZoneId($domainName);
        if ($zoneId !== null) {
            return $zoneId;
        }

        $request = new Request('GET', 'zones', array('name' => $domainName), array());
        $response = $this->callAPI($request);
        try {
            if ($this->responseOk($response) && count($response['result']) > 0) {
                $zoneId = $response['result'][0]['id'];
                $this->data_store->setZoneId($domainName, $zoneId);
                return $zoneId;
            }
        } catch (\Exception $e) {
            $this->logger->error($e->getMessage());
        }

        return null;
    }
}