=============== This Bundle provides integration with osapi (OpenSocial API). Right now bundle provides a Symfony2 authentication via FriendConnect so user can login into Symfony2 using Friend Connect mechanism. Bundle allow to use all osapi providers, but only FriendConnect provider have implemented Symfony2 authentication mechanism (right now). Bundle has not had twig integration yet.
===============
-
Add bundle to
vendor
dir:-
Using
deps
file:[l3l0OpenSocialBundle] git=git://github.com/l3l0/OpenSocialBundle.git target=/bundles/l3l0/Bundle/OpenSocialBundle
-
Run the vendor script:
./bin/vendors install
-
Enable autoload by register namespace in
app/autoload.php
:$loader = new UniversalClassLoader(); $loader->registerNamespace(array( ... 'l3l0' => __DIR__ . '/../vendor/bundles' );
-
Register bundle
app/AppKernel.php
:public function registerBundles() { $bundles = array( ... 'l3l0' => __DIR__ . '/../vendor/bundles' ); ... return $bundles; }
-
-
Install osapi library see: http://code.google.com/p/opensocial-php-client/wiki/GettingStarted
-
You can in
vendor
directory execute:svn export http://opensocial-php-client.googlecode.com/svn/trunk/ opensocial-php-client
-
Register osapi lib by add in
app/autoload.php
lines:set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/../vendor/opensocial-php-client/src/osapi'); require_once "osapi.php";
-
========
-
Security application configuration:
-
We can enable firewall for friend connect in
app/config/security.yml
. When user is not signed via friend connect our site will be redirected to/
page by default:security: firewalls: friend_connect: pattern: ^/yourpath/pattern$ l3l0_osapi: true
-
You can define where user should be redirect when is not authenticated (via
public_path
option):security: firewalls: friend_connect: pattern: ^/yourpath/pattern$ l3l0_osapi: public_path: /app_dev.php/demo
-
TODO
===============
To run test you have to:
- Make sure that you have
phpunit 3.6
withPHPUnit_MockObject 1.1
installed. - Download vendors via
cd /path/to/opensocial/bundle/; php vendor/vendors.php
. Script requires wget, tar and git. - Run command
phpunit
in bundle directory.