2017 © Pedro Peláez
 

library b2-api

Backblaze B2 API wrapper for PHP

image

ukn0me/b2-api

Backblaze B2 API wrapper for PHP

  • Sunday, July 24, 2016
  • by UKn0Me
  • Repository
  • 2 Watchers
  • 4 Stars
  • 6 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 9 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Backblaze B2 PHP API Wrapper

Forked by Aidhan Dossel, originally by Dan Rovito, (*1)

This is a PHP wrapper for the Backblaze B2 API., (*2)

This wrapper is in alpha and should not be used on production sites., (*3)

Usage

  1. Clone the repository
git clone https://github.com/UKn0Me/b2-api.git
  1. Include b2_api.php when required
include "/path/to/b2_api.php"; // Include the API wrapper

OR, (*4)

For you folks that use Composer, (*5)

  composer require ukn0me/b2-api

Requirements

  • PHP 5.3.3+ (works on 7.0)
  • php-curl
  • php-json
  • php-mbstring If you're using Composer, it should get all the dependencies figured out but you still need to have the PHP extensions installed.

Sample code

You need to pass your Account ID and Application key from your B2 account to get your authorization response. To call the authorization function do the following:, (*6)

$b2 = new b2_api;
$response = $b2->b2_authorize_account("ACCOUNTID", "APPLICATIONKEY");
return $response;

The response will contain the following as an array: - acccountId - authorizationToken - apiUrl - downloadUrl, (*7)

Calls

Currently only the following API calls are supported, see the examples directory for full examples or see B2 API for more information about each call., (*8)

b2_create_bucket

b2_create_bucket($api_url, $account_id, $auth_token, $bucket_name, $bucket_type)

$api_url // The API URL, obtained from the b2_authorize_account call
$account_id // Obtained from your B2 account page or from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_name // The new bucket's name. 6 char min, 50 char max, letters, digits, - and _ are allowed
$bucket_type // Type to create the bucket as, either allPublic or allPrivate

b2_delete_bucket

b2_delete_bucket($api_url, $account_id, $auth_token, $bucket_id)

$api_url // The API URL, obtained from the b2_authorize_account call
$account_id // Obtained from your B2 account page or from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_id // The ID of the bucket you want to delete

b2_delete_file_version

b2_delete_file_version($api_url, $auth_token, $file_id, $file_name)

$api_url // The API URL, obtained from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$file_id // The ID of the file you want to delete
$file_name // The file name of the file you want to delete

b2_download_file_by_id

b2_download_file_by_id($download_url, $file_id, [$auth_token])

$download_url // The download URL, obtained from the b2_authorize_account call
$file_id // The ID of the file you wish to download
$auth_token // Only required if bucket is private, obtained from the b2_authorize_account call

b2_download_file_by_name

b2_download_file_by_name($download_url, $bucket_name, $file_name, [$auth_token]);

$download_url // The download URL, obtained from the b2_authorize_account call
$bucket_name // The name of the bucket you wish to download from
$file_name // The name of the file you wish to download
$auth_token // Only required if bucket is private, obtained from the b2_authorize_account call

b2_get_file_info

b2_get_file_info($api_url, $auth_token, $file_id)

$api_url // The API URL, obtained from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$file_id // The ID of the file you wish to recieve the info of

b2_get_upload_url

b2_get_upload_url($api_url, $account_id, $auth_token, $bucket_id)

$api_url // The API URL, obtained from the b2_authorize_account call
$account_id // Obtained from your B2 account page or from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_id // The ID of the bucket you want to upload to

b2_hide_file

b2_hide_file($api_url, $auth_token, $bucket_id, $file_name)

$api_url // The API URL, obtained from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_id // The ID of the bucket containing the file you wish to hide
$file_name // The name of the file you wish to hide

b2_list_buckets

b2_list_buckets($api_url, $auth_token, $account_id)

$api_url // The API URL, obtained from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$account_id // Obtained from your B2 account page or from the b2_authorize_account call

b2_list_file_names

b2_list_file_names($api_url, $auth_token, $bucket_id, [$options])

$api_url // The API URL, obtained from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_id // The ID of the bucket containing the files you wish to list

$options = array( // None of these options are required but may be used
    "max_count" => "", // The maxiumum amount of file names to list in a call
    "start_name" => "" // If the specified file name exists, it's the first listed
);

b2_list_file_versions

b2_list_file_versions($api_url, $auth_token, $bucket_id, [$options])

$api_url // The API URL, obtained from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_id // The ID of the bucket containing the files you wish to list

$options = array( // None of these options are required but may be used
    "max_count" => "", // The maxiumum amount of file names to list in a call
    "start_id" => "", // If the specified file ID exists, it's the first listed
    "start_name" => "" // If the specified file name exists, it's the first listed
);

b2_update_bucket

b2_update_bucket($api_url, $account_id, $auth_token, $bucket_id, $bucket_type)

$api_url // The API URL, obtained from the b2_authorize_account call
$account_id // Obtained from your B2 account page or from the b2_authorize_account call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$bucket_id // The ID of the bucket you want to update
$bucket_type // Type to change to, either allPublic or allPrivate

b2_upload_file

b2_upload_file($upload_url, $auth_token, $file_path)

$upload_url // Upload URL, obtained from the b2_get_upload_url call
$auth_token // The authentication token, obtained from the b2_authorize_account call
$file_path // The path to the file you wish to upload

The Versions

24/07 2016

dev-master

9999999-dev

Backblaze B2 API wrapper for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

by Dan Rovito
by Aidhan Dossel

api b2 backblaze

20/02 2016

v0.2.1-alpha

0.2.1.0-alpha

Backblaze B2 API wrapper for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

by Dan Rovito
by Aidhan Dossel

api b2 backblaze

20/02 2016

v0.2-alpha

0.2.0.0-alpha

Backblaze B2 API wrapper for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

by Dan Rovito
by Aidhan Dossel

api b2 backblaze