Skip to content

Instantly share code, notes, and snippets.

View tristanbes's full-sized avatar

Tristan Bessoussa tristanbes

View GitHub Profile
@tristanbes
tristanbes / example.sh
Created November 9, 2012 15:53
Install Graphite on Debian Server
# Installing graphite dependencies
apt-get install -y python2.6 python-pip python-cairo python-django python-django-tagging
apt-get install -y libapache2-mod-wsgi python-twisted python-memcache python-pysqlite2 python-simplejson
pip install whisper
pip install carbon
pip install graphite-web
# Setup a vhost by grabbing the example the graphite team released on their repo.
# In this file, you'll provide the url used to access to your Graphite dashboard
wget https://raw.github.com/tmm1/graphite/master/examples/example-graphite-vhost.conf -O /etc/apache2/sites-available/graphite
@tristanbes
tristanbes / StatsDClientBundle.php
Created November 9, 2012 16:02
StatsDClientBundle installation
// composer.json
"require": {
# ..
"liuggio/statsd-client-bundle": ">=1.2",
# ..
}
// After running php composer.phar update liuggio/statsd-client-bundle
// Enable the Bundle in AppKernel.php
@tristanbes
tristanbes / DefaultController.php
Created November 23, 2012 15:02
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Controller;
use SeekTeam\HomeBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use JMS\SecurityExtraBundle\Annotation\Secure;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\GenericEvent;
@tristanbes
tristanbes / Events.php
Created November 23, 2012 15:07
Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Event;
final class Events
{
const PREMIUM_START = 'gamercertified.premium.start';
const PREMIUM_SUCCESS = 'gamercertified.premium.success';
const PREMIUM_CANCEL = 'gamercertified.premium.cancel';
const PREMIUM_ERROR = 'gamercertified.premium.error';
@tristanbes
tristanbes / StatsListener.php
Created November 23, 2012 15:17
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<?php
namespace SeekTeam\PremiumBundle\Event\Listener;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
use SeekTeam\PremiumBundle\Event\Events;
class StatsListener implements EventSubscriberInterface
@tristanbes
tristanbes / services.xml
Created November 23, 2012 15:39
Controller Example of Monitor your Symfony2 application via Stats.d and Graphite (2/2)
<service id="seek_team_premium.contact.listener" class="SeekTeam\PremiumBundle\Event\Listener\StatsListener">
<tag name="kernel.event_subscriber" />
<argument type="service" id="liuggio_stats_d_client.factory" />
<argument type="service" id="liuggio_stats_d_client.service" />
</service>
@tristanbes
tristanbes / config.yml
Created February 22, 2013 12:47
Session cookie name for Symfony2 and subdomains
framework:
esi: { enabled: true }
translator: { fallback: %locale% }
secret: %secret%
router:
resource: "%kernel.root_dir%/config/routing.yml"
strict_requirements: %kernel.debug%
form: ~
csrf_protection: ~
validation: { enable_annotations: true }
main:
remember_me:
key: "%secret%"
lifetime: 31536000
path: /
domain: .my-domain.com # Defaults to the current domain from $_SERVER
<?php
/**
* This class handles MoxieManager SymfonyAuthenticator (Symfony < 2.x).
*
* @author Tristan Bessoussa <tristan.bessoussa@gmail.com>
*/
class MOXMAN_SymfonyAuthenticator_Plugin implements MOXMAN_Auth_IAuthenticator
{
public function authenticate(MOXMAN_Auth_User $user)
// ...
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);