2017 © Pedro Peláez
 

library brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

image

gebn/brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  • Thursday, September 28, 2017
  • by gebn
  • Repository
  • 5 Watchers
  • 26 Stars
  • 46 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 8 Forks
  • 1 Open issues
  • 9 Versions
  • 0 % Grown

The README.md

Brush License Stars Forks Issues

Brush is a complete object-oriented PHP wrapper for the Pastebin API., (*1)

Features

  • Create pastes directly from files, with automatic language detection.
  • Easily apply default account settings to new pastes.
  • High performance with aggressive caching.
  • End-to-end UTF-8 support.

Dependencies

  • PHP 5.3.0+
  • cURL

Install

Composer is not required, however Brush is on Packagist and may be added to a project with:, (*2)

composer require gebn/brush "1.*"

Getting Started

Create an anonymous paste

Below is a minimal example showing how to submit a new paste:, (*3)

``` php require 'Brush/Brush.php';, (*4)

use \Brush\Pastes\Draft; use \Brush\Accounts\Developer; use \Brush\Exceptions\BrushException;, (*5)

$draft = new Draft(); // drafts represent unsent pastes $draft->setContent('Some random content'); // set the paste content, (*6)

// the Developer class encapsulates a developer API key; an instance // needs to be provided whenever Brush might interact with Pastebin $developer = new Developer('');, (*7)

try { // send the draft to Pastebin; turn it into a full blown Paste object $paste = $draft->paste($developer);, (*8)

// print out the URL of the new paste
echo $paste->getUrl(); // e.g. https://pastebin.com/JYvbS0fC

} catch (BrushException $e) { // some sort of error occurred; check the message for the cause echo $e->getMessage(); }, (*9)


There are several things to note: - You only ever need to require `Brush.php`; Brush has an autoloader, which will take care of other includes for you. - The `Draft` class represents a paste not yet submitted to Pastebin. It has setters allowing you to configure every possible option for your new paste, including expiry, format and visibility. - The `Developer` class represents a developer account. An instance needs to be passed in all situations where Brush could interact with the Pastebin API. - When `paste()` is called on a draft, Brush checks for basic errors before attempting to send the draft to Pastebin. If an error is detected (e.g. no content set), a `ValidationException` will be thrown. - All exceptions thrown by Brush extend `BrushException`. This allows you to easily handle every single possible error in a single `catch` clause, or use multiple clauses for more fine-grained handling. - Once a draft is `paste()`d, Brush automatically creates and return a `Paste` object without any further interaction with the Pastebin API. This object contains all information about the paste, including its key, URL and expiry date. - A `Draft`'s `paste()` method can be safely called multiple times, changing the draft between invocations if required. - For a complete method reference, see [METHODS.md](METHODS.md). ### Create a private paste Private pastes must have an account associated with them, but Brush makes this easy to set up: ``` php require 'Brush/Brush.php'; use \Brush\Accounts\Developer; use \Brush\Accounts\Account; use \Brush\Accounts\Credentials; use \Brush\Pastes\Draft; use \Brush\Pastes\Options\Visibility; use \Brush\Exceptions\BrushException; // this time, create a draft directly from a file $draft = Draft::fromFile('passwords.txt'); // an Account object represents a Pastebin user account $account = new Account(new Credentials('<username>', '<password>')); // link the draft to the account $draft->setOwner($account); // specify that we don't want this paste to be publicly accessible $draft->setVisibility(Visibility::VISIBILITY_PRIVATE); // the Developer class manages a developer key $developer = new Developer('<developer key>'); try { // submit the draft and retrieve the final paste in the same way as above $paste = $draft->paste($developer); // print out the key of the newly created paste echo $paste->getKey(); } catch (BrushException $e) { echo $e->getMessage(); }

The Account class represents a Pastebin account. At the lowest level, it manages a user session key, which has to be provided when doing operations affecting a particular account. An instance can be created in two ways:, (*10)

  1. Via a set of credentials, as above. Brush will make an HTTP request to Pastebin to retrieve a new user key when one is first needed, and will cache it for the rest of execution.
  2. Directly by passing a session key string as the only argument to Account's constructor. This saves a request, and is the recommended way if you always want to work with the same account.

In the above example, instead of manually writing a draft, we asked Brush to automatically create one from a local file. Brush will set the draft title to the name of the file, the content as the file content, and attempt to recognise the format from the file's extension. The mappings it uses to do this are in Configuration/extensions.ini. This is designed to be edited by you, so feel free to add lines according to your requirements. If you add a large number of maps, please consider contributing them in a pull request so that others may benefit!, (*11)

You can also create a draft paste inheriting an account's default settings using the fromOwner(Account, Developer) method. This will retrieve the defaults for the supplied account, apply them to a new draft, and set the account as the owner., (*12)

Retrieve an account's pastes

Retrieving pastes belonging to an account is easy:, (*13)

``` php require 'Brush/Brush.php';, (*14)

use \Brush\Accounts\Account; use \Brush\Accounts\Developer; use \Brush\Exceptions\BrushException;, (*15)

$account = new Account(''); $developer = new Developer('');, (*16)

try { // retrieve the first 50 (see below) account pastes $pastes = $account->getPastes($developer);, (*17)

// print out the name of each paste followed by a line feed
foreach ($pastes as $paste) {
    echo $paste->getTitle(), "\n";
}

} catch (BrushException $e) { echo $e->getMessage(); }, (*18)


`Account`'s `getPastes()` method returns an array of `Paste` objects, representing pastes submitted by that account. It takes an optional second argument, the maximum number of pastes to retrieve, which defaults to 50. #### Delete a paste Pastes retrieved in the above way can be removed by calling `delete()` on them: ``` php require 'Brush/Brush.php'; use \Brush\Accounts\Account; use \Brush\Accounts\Developer; use \Brush\Exceptions\BrushException; $account = new Account('<user session key>'); $developer = new Developer('<developer key>'); try { // retrieve up to 10 account pastes $pastes = $account->getPastes($developer, 10); // delete each one foreach ($pastes as $paste) { $paste->delete($developer); echo 'Deleted ', $paste->getKey(), "\n"; } } catch (BrushException $e) { echo $e->getMessage(); }

N.B. For reasons of authentication, only pastes retrieved from an account can be deleted. If you attempt to delete a paste obtained via other means (e.g. a trending paste), Brush will detect this and throw a ValidationException, as Pastebin would simply reject the request. Brush will always try to warn you of errors before bothering Pastebin., (*19)

``` php require 'Brush/Brush.php';, (*20)

use \Brush\Accounts\Developer; use \Brush\Pastes\Trending; use \Brush\Exceptions\BrushException;, (*21)

$developer = new Developer('');, (*22)

try { // retrieve an array of the top 18 currently trending pastes $pastes = Trending::getPastes($developer);, (*23)

// print out the titles and hit counts of each one
foreach ($pastes as $paste) {
    printf("%-70s%d\n", $paste->getTitle(), $paste->getHits());
}

} catch (BrushException $e) { echo $e->getMessage(); } ```, (*24)

Contributing

Suggestions and pull requests are welcome. Please submit these through the normal GitHub channels., (*25)

If you discover a bug, please open a new issue., (*26)

Licence

Brush is released under the MIT Licence - see the LICENSE file for details. For more information about how this allows you to use the library, see the Wikipedia article., (*27)

The Versions

28/09 2017

dev-master

9999999-dev https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

 

api wrapper text pastebin

28/09 2017

v1.1.0

1.1.0.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

 

api wrapper text pastebin

20/02 2017

v1.0.2

1.0.2.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

 

api wrapper text pastebin

12/07 2016

v1.0.1

1.0.1.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

 

api wrapper text pastebin

25/02 2016

v1.0.0

1.0.0.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

 

api wrapper text pastebin

15/11 2015

v0.13

0.13.0.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

api wrapper text pastebin

12/05 2015

v0.12

0.12.0.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

api wrapper text pastebin

23/10 2014

v0.11

0.11.0.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

api wrapper text pastebin

14/09 2014

v0.1

0.1.0.0 https://github.com/gebn/Brush

Brush is a complete object-oriented PHP wrapper for the Pastebin API.

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

api wrapper text pastebin