2017 © Pedro Peláez
 

library php-keycdn-api

PHP Library for the KeyCDN API

image

conneredu300/php-keycdn-api

PHP Library for the KeyCDN API

  • Wednesday, August 9, 2017
  • by conner300
  • Repository
  • 1 Watchers
  • 0 Stars
  • 190 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 10 Forks
  • 0 Open issues
  • 1 Versions
  • 26 % Grown

The README.md

KeyCDN REST API Library

PHP Library for the KeyCDN API, (*1)

KeyCDN is a Content Delivery Network to accelerate your web assets., (*2)

Please contact us if you got any questions or if you need more functionality: KeyCDN Support, (*3)

Requirements

  • PHP 5.3 or above
  • PHP Curl Extension

Usage

<?php

require 'path_to_repo/src/KeyCDN.php';

// create the REST object
$keycdn_api = new KeyCDN('your_api_key');

// get zone information
$keycdn_api->get('zones.json');


// change zone name and check if successfull
$result = $keycdn_api->post('zones/123.json', array(
    'name' => 'newzonename',
));


// convert json-answer into an array
$answer = json_decode($result, true);

if ($answer['status'] == 'success') {
    echo 'Zonename successfully changed...';
}

get traffic stats

// get traffic stats for the last 30 days
$result = $keycdn_api->get('reports/traffic.json', array(
    'zone_id' => 123,
    'start'   => Carbon::now('UTC')->subDays(30)->timestamp,
    'end'     => Carbon::now('UTC')->timestamp
));

// convert json-answer into an array
$answer = json_decode($result, true);

// since we get results pr day, we need to sum them
if ($answer['status'] == 'success') {
    $amount = 0;
    foreach ($answer['data']['stats'] as $stats) {
        $amount += $stats['amount'];
    }

    echo 'Traffic last 30 days: ' . $amount;
} else {
    echo 'Something went wrong...'
}

single or bulk url purge

$result = $keycdn->delete('zones/purgeurl/{zone_id}.json', array(
    'urls' => array('foo-1.kxcdn.com/bar1.jpg','foo-1.kxcdn.com/bar2.jpg'),
));

Methods

Each of the supported HTTP methods (GET, PUT, POST, DELETE) is produced by an own function in the KeyCDN lib. E.g. POST becomes $keycdn_api->post(...);., (*4)

The Versions

09/08 2017

dev-keycdn

dev-keycdn https://www.keycdn.com

PHP Library for the KeyCDN API

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

by Eduardo Jose