Package Data | |
---|---|
Maintainer Username: | lmlj |
Maintainer Contact: | j@j42.me (Julian Aceves) |
Package Create Date: | 2014-06-13 |
Package Last Update: | 2018-08-27 |
Home Page: | |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-18 03:03:06 |
Package Statistics | |
---|---|
Total Downloads: | 3,386 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 51 |
Total Watchers: | 10 |
Total Forks: | 22 |
Total Open Issues: | 15 |
A Firebase port for Laravel (4.2+)
##Configuration
Install via composer. If you have minimum-stability
set to stable
, you should add a @beta
or @dev
in order to use the php-jwt
library (a dependency managed by firebase for generating JSON web token).
Add the following line to your composer.json
and run composer update:
{
"require": {
"j42/laravel-firebase": "dev-master"
}
}
Then add the service providers and facades to config/app.php
'J42\LaravelFirebase\LaravelFirebaseServiceProvider',
...
'Firebase' => 'J42\LaravelFirebase\LaravelFirebaseFacade'
Finally, you should configure your firebase connection in the config/database.php
array. There are two ways you can define this:
####Simple Access Token
'firebase' => array(
'host' => 'https://<you>.firebaseio.com/',
'token' => '<yoursecret>',
'timeout' => 10,
'sync' => false, // OPTIONAL: auto-sync all Eloquent models with Firebase?
)
####Advanced: Request a JWT
This accepts any of the standard options allowed by the firebase security rules and will generate a JSON Web Token for more granular authentication (subject to auth security rules and expirations).
'firebase' => array(
'host' => 'https://servicerunner.firebaseio.com/',
'token' => [
'secret' => '<yoursecret>',
'options' => [
'auth' => [
'email' => 'example@yoursite.com'
]
],
'data' => []
],
'timeout' => 10,
'sync' => false, // OPTIONAL: auto-sync all Eloquent models with Firebase?
)
The FirebaseClient instance is loaded into the IoC container as a singleton, containing a Guzzle instance used to interact with Firebase.
Making simple get requests:
// Returns: (Array) of data items
Firebase::get('/my/path');
// Returns: (\Illuminate\Database\Eloquent\Collection) Eloquent collection of Eloquent models
Firebase::get('/my/path', 'ValidEloquentModelClass');
// Returns: (\Illuminate\Database\Eloquent\Model) Single Eloquent model
// Conditions: $SomeModelInstance must inherit from Eloquent at some point, and have a (id, _id, or $id) property
Firebase::get($SomeModelInstance);
// Returns: (Array) Firebase response
Firebase::set('/my/path', $data);
// Returns: (Array) Firebase response
Firebase::push('/my/path', $data);
// Returns: (Array) Firebase response
Firebase::delete('/my/path');
By default this package will keep your Eloquent models in sync with Firebase. That means that whenever eloquent.updated: *
is fired, the model will be pushed to Firebase.
This package will automatically look for 'id', '_id', and '$id' variables on the model so that Firebase paths are normalized like so:
// Eloquent model: User
// Firebase location: /users/{user::id}
$User = new User(['name' => 'Julian']);
$User->save(); // Pushed to firebase
$Copy = Firebase::get('/users/'.$User->id, 'User'); // === copy of $User
$Copy = Firebase::get($User); // === copy of $User
To disable this, please ensure 'sync' => false
in your database.connections.firebase configuration array.
This works with any package that overwrites the default Eloquent model SO LONG AS it is configured to fire the appropriate saved
and updated
events. At the moment it is tested with the base Illuminate...Model
as well as the Jenssegers MongoDB Eloquent Model
####Syncing Models Individually
If you want to add a whitelist of properties to push to firebase automatically whenever a model is updated, you can do so by adding a whitelist of properties to any supported model.
This action happens regardless of the (automatic) sync
property in your configuration array. If the $firebase
whitelist array is found, then the fields contained will be posted on every update event.
class User extends Eloquent {
...
public $firebase = ['public_property','name','created']; // These properties are pushed to firebase every time the model is updated
}
##Advanced Use
#####Create a token manually
$FirebaseTokenGenerator = new J42\LaravelFirebase\FirebaseToken(FIREBASE_SECRET);
$Firebase = App::make('firebase');
$token = $FirebaseTokenGenerator->create($data, $options);
$Firebase->setToken($token);