2017 © Pedro Peláez
 

library piwik-silex-provider

integration of devhelp/piwik-api into Silex. Allows to create services for piwik api methods

image

devhelp/piwik-silex-provider

integration of devhelp/piwik-api into Silex. Allows to create services for piwik api methods

  • Friday, March 24, 2017
  • by devhelp
  • Repository
  • 4 Watchers
  • 1 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Build Status Scrutinizer Code Quality, (*1)

Installation

For more information please check composer website., (*2)

$ composer require 'devhelp/piwik-silex-provider:dev-master'

Sandbox

Working example can be found at devhelp/piwik-silex-provider-sandbox, (*3)

Purpose

Provides integration of Piwik API into Silex. Adds services to the dependency injection container that allows to use Piwik API methods as services. It uses devhelp/piwik-api library - check its documentation for more advanced usage., (*4)

Usage

Register the provider

$app = new Silex\Application();

$app->register(new Devhelp\Silex\Piwik\PiwikApiServiceProvider(array(
    'client' => 'my_piwik.client',
    'api' => array(
        'reader' => array(
            'url' => 'http://my_piwik_instance.piwik.pro',
            'default_params' => array(
                'token_auth' => 'piwik_token_auth',
                'idSite' => 123
            )
        )
    )
)));

Create piwik client service that was set as 'client'

This example uses PiwikGuzzleClient class that is responsible for making http request to Piwik. You can include this extension by including devhelp/piwik-api-guzzle in your project, (*5)

//'guzzle' service must implement GuzzleHttp\ClientInterface
$app['my_piwik.client'] = $app->share(function () use ($app) {
    return new Devhelp\Piwik\Api\Guzzle\Client\PiwikGuzzleClient($app['guzzle']));
});

Use API method in your use case

add service to the container, (*6)

$app['my_service'] = $app->share(function () use ($app) {
    return new Acme\DemoBundle\Service\MyService($app['devhelp_piwik.api']);
});

example service definition, (*7)

namespace Acme\DemoBundle\Service;


use Devhelp\Piwik\Api\Api;

class MyService
{

    /**
     * @var Api
     */
    private $piwikApi;

    public function __construct(Api $piwikApi)
    {
        $this->piwikApi = $piwikApi;
    }

    public function doSomething()
    {
        //...
        $this->piwikApi->getMethod('PiwikPlugin.pluginAction')->call();
        //...
    }
}

Define API parameters resolved at runtime

You are allowed to set services as a params. If you do that then the service will be used to resolve the parameter at runtime. For example have a service that would return token_auth of logged in user, (*8)

$app = new Silex\Application();

$app->register(new Devhelp\Silex\Piwik\PiwikApiServiceProvider(array(
    'client' => 'my_piwik.client',
    'api' => array(
        'reader' => array(
            'url' => 'http://my_piwik_instance.piwik.pro',
            'default_params' => array(
                'token_auth' => 'my_token_auth_provider',
                'idSite' => 123
            )
        )
    )
)));

my_token_auth_provider service definition (assumes that SecurityServiceProvider is registered), (*9)

$app['my_token_auth_provider'] = $app->share(function () use ($app) {
    return new Acme\DemoBundle\Param\MyTokenAuthProvider($app['security.token_storage']);
});

MyTokenAuthProvider class definition (assumes that User class has getPiwikToken method), (*10)

namespace Acme\DemoBundle\Param;

use Devhelp\Piwik\Api\Param\Param;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;

class MyTokenAuthProvider implements Param
{

    /**
     * @var TokenStorageInterface
     */
    private $tokenStorage;

    public function __construct(TokenStorageInterface $tokenStorage)
    {
        $this->tokenStorage = $tokenStorage;
    }

    public function value()
    {
        $token = $this->tokenStorage->getToken();

        return $token instanceof TokenInterface ? $token->getUser()->getPiwikToken() : null;
    }
}

Define API methods as services

$app['my_piwik_method'] = $app->share(function () use ($app) {
    return $app['devhelp_piwik.api']->getMethod('VisitFrequency.get');
});

Feedback/Requests

Feel free to create an issue if you think that something is missing or needs fixing. Feedback is more than welcome!, (*11)

Credits

Brought to you by : devhelp.pl, (*12)

The Versions

24/03 2017

dev-master

9999999-dev http://devhelp.pl

integration of devhelp/piwik-api into Silex. Allows to create services for piwik api methods

  Sources   Download

MIT

The Requires

 

The Development Requires

by Paweł Barański
by devhelp.pl

piwik

15/12 2015

0.1

0.1.0.0 http://devhelp.pl

integration of devhelp/piwik-api into Silex. Allows to create services for piwik api methods

  Sources   Download

MIT

The Requires

 

The Development Requires

by Paweł Barański
by devhelp.pl

piwik