oh/instagram-bundle

Use Instaphp by sesser (Randy) as a Symfony2 service

Installs: 5 402

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 7

Type:symfony-bundle

dev-master 2014-05-27 11:41 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:22:43 UTC


README

Uses Instaphp by sesser as a Symfony2 service

Installation

Install this bundle as usual by adding to composer.json:

"oh/instagram-bundle": "dev-master"

After installing above module you need to update your composer

run the command “php composer.phar update”

Register the bundle in app/AppKernel.php:

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Oh\InstagramBundle\OhInstagramBundle(),
    );
}

Add the following line to app/config/config.yml:

imports:
	- { resource: @OhInstagramBundle/Resources/config/services.yml }

Add the following config to your parameters.yml:

instagram_api_client_id: YOUR_API_ID
instagram_api_client_secret: YOUR_API_SECRET
instagram_timeout: 30
instagram_connect_timeout: 8

And if you're OK with the provided routes, add these to app/config/routing.yml

OhInstagramBundle:
    resource: "@OhInstagramBundle/Resources/config/routing.yml"
    prefix:   /

Usage (Controller)

//finding a user
$query = "snoopdogg";

$api = $this->get('instaphp');
	
$response = $api->Users->Find($query);

$userInfo = $response->data[0];

// getting all the pages of results
do {
    $pages[] = $response->data;
while($response = $response->getNextPage());

You can also test if a user is logged in.

//is a user logged in?
$loggedIn = $this->get('instaphp_token_handler')->isLoggedIn();

Usage (Twig)

Theres a login button included in the views. Just implement this line in your Twig template

{{ render(controller('OhInstagramBundle:Instagram:instagramLoginStatus')) }}

You should set up your Instagram API account to callback to the "OhInstagramBundle_callback" route, which you can set yourself, or use the ones provided - "/instaphp/callback".

Instagram Auth Token

There are 2 TokenHandlers included.

  1. CookieToken - The Instagram auth code is stored in a cookie

    services:
        instaphp_token_handler:
            class:            Oh\InstagramBundle\TokenHandler\CookieToken
    
  2. UserToken - The Instagram auth code is stored in the User Entity. The methods setInstagramAuthCode() and getInstagramAuthCode() must be implemented on your User. When the login call is returned from Instagram, the code is set and the user is persisted and flushed in the Handler.

    services:
        instaphp_token_handler:
            class:            Oh\InstagramBundle\TokenHandler\UserToken
            arguments:        [@security.context, @doctrine.orm.default_entity_manager]
    
  3. Both - This will look to see if the user can be retrieved from the context and if it can't it will store the auth code in a cookie.

    services:
        instaphp_user_token_handler:
            class:            Oh\InstagramBundle\TokenHandler\UserToken
            arguments:        [@security.context, @doctrine.orm.default_entity_manager]
        instaphp_cookie_token_handler:
            class:            Oh\InstagramBundle\TokenHandler\CookieToken
        instaphp_token_handler:
            class:            Oh\InstagramBundle\TokenHandler\TokenManager
            arguments:        [@instaphp_user_token_handler, @instaphp_cookie_token_handler]
    

You can also implement your own TokenHandlerInterface to store the auth code somewhere else, like the session etc.

Tests

@todo

Credits