2017 © Pedro Peláez
 

library pushwoosh

A Pushwoosh bridge for Laravel

image

hoyf/pushwoosh

A Pushwoosh bridge for Laravel

  • Sunday, May 27, 2018
  • by AhmedFawzy
  • Repository
  • 1 Watchers
  • 0 Stars
  • 38 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 0 Open issues
  • 12 Versions
  • 3700 % Grown

The README.md

Laravel Pushwoosh

pushwoosh, (*1)

Laravel Pushwoosh is a Pushwoosh bridge for Laravel using the Gomoob's Pushwoosh package., (*2)

// Create a new notification.
$notification = Notification::create()->setContent('Hello Jean !');

// Create a request for the '/createMessage' web service.
$request = CreateMessageRequest::create()->addNotification($notification);

// Send out the notification.
$response = $pushwoosh->createMessage($request);

// Check if it was sent ok.
$response->isOk();

Build Status StyleCI Coverage Status Quality Score Latest Version License, (*3)

Installation

Require this package, with Composer, in the root directory of your project., (*4)

composer require hoy/pushwoosh

Add the service provider to config/app.php in the providers array., (*5)

Hoy\Pushwoosh\PushwooshServiceProvider::class

If you want you can use the facade. Add the reference in config/app.php to your aliases array., (*6)

'Pushwoosh' => Hoy\Pushwoosh\Facades\Pushwoosh::class

Configuration

Laravel Pushwoosh requires connection configuration. To get started, you'll need to publish all vendor assets:, (*7)

php artisan vendor:publish

This will create a config/pushwoosh.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases., (*8)

Default Connection Name

This option default is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is main., (*9)

Pushwoosh Connections

This option connections is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like., (*10)

Usage

PushwooshManager

This is the class of most interest. It is bound to the ioc container as pushwoosh and can be accessed using the Facades\Pushwoosh facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of Graham Campbell's Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repository. Note that the connection class returned will always be an instance of Gomoob\Pushwoosh\Client\Pushwoosh., (*11)

Facades\Pushwoosh

This facade will dynamically pass static method calls to the pushwoosh object in the ioc container which by default is the PushwooshManager class., (*12)

PushwooshServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings., (*13)

Examples

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:, (*14)

// You can alias this in config/app.php.
use Hoy\Pushwoosh\Facades\Pushwoosh;

Pushwoosh::createMessage($request);
// We're done here - how easy was that, it just works!

Pushwoosh::getApplication();
// This example is simple and there are far more methods available.

The Pushwoosh manager will behave like it is a Gomoob\Pushwoosh\Client\Pushwoosh. If you want to call specific connections, you can do that with the connection method:, (*15)

use Hoy\Pushwoosh\Facades\Pushwoosh;

// Writing this…
Pushwoosh::connection('main')->createMessage($request);

// …is identical to writing this
Pushwoosh::createMessage($request);

// and is also identical to writing this.
Pushwoosh::connection()->createMessage($request);

// This is because the main connection is configured to be the default.
Pushwoosh::getDefaultConnection(); // This will return main.

// We can change the default connection.
Pushwoosh::setDefaultConnection('alternative'); // The default is now alternative.

If you prefer to use dependency injection over facades like me, then you can inject the manager:, (*16)

use Hoy\Pushwoosh\PushwooshManager;

class Foo
{
    protected $pushwoosh;

    public function __construct(PushwooshManager $pushwoosh)
    {
        $this->pushwoosh = $pushwoosh;
    }

    public function bar($request)
    {
        $this->pushwoosh->createMessage($request);
    }
}

App::make('Foo')->bar();

Documentation

There are other classes in this package that are not documented here. This is because the package is a Laravel wrapper of Gomoob's Pushwoosh package., (*17)

License

Laravel Pushwoosh is licensed under The MIT License (MIT)., (*18)

The Versions

17/01 2016
14/10 2015
07/10 2015
21/07 2015