tinycdn/cdn-api

Library for works with tinycdn.cloud service API

1.3.3 2025-01-22 22:45 UTC

This package is auto-updated.

Last update: 2025-01-22 22:47:14 UTC


README

This package work with GraphQL API of TinyCDN Service

More info you can find on TinyCDN Service

Install

composer require "tinycdn/cdn-api"

Usage

<?php

$cdn = new \Tinycdn\CdnApi('your-api-token');

try {
    
    ////////////
    // Upload //
    ////////////

    // simple upload
    $data1 = $cdn->upload('path/to/file.ext');
    var_dump($data1);

    // more options
    $params = [
        'is_public' => false,        // default true
        'type'      => 'image',      // default file
        'filename'  => 'my-img.jpg', // if not set, filename will be detected automatically
        'rule_key'  => 'my-rule',    // see docs for details
        'folder_id' => 555,          // 0 - root folder. See more about folders
    ];
    $data2 = $cdn->upload('https://images.local/image.jpg', $params);
    var_dump($data2);

    /////////////
    // Folders //
    /////////////

    $filters = [
        'title' => 'Avatars',
        'idp'   => 0,
    ];
    $list = $cdn->getFoldersList($filters);
    $folder = $list[0] ?? $cdn->addFolder('Avatars');

    var_dump($folder);
    
} catch (Exception $e) {
    echo $e->getMessage();
}