lifeboat / php-sdk
Lifeboat PHP SDK
Requires
- php: ^7.2 || ^8.0
- ext-curl: *
- ext-json: *
- guzzlehttp/promises: >=1.5
Requires (Dev)
- phpunit/phpunit: ~8
This package is auto-updated.
Last update: 2024-12-28 13:54:02 UTC
README
This SDK is meant to help developers to
build apps that access the Lifeboat API.
lifeboat.app
UNDER DEVELOPMENT
This SDK is still under development.
The Lifeboat PHP SDK enables site owners and app developers to leverage the Lifeboat API with their software.
Requirements
PHP 7.2 or later
Composer
You can install this SDK via Composer. Run the command
composer require lifeboat/php-sdk
To use this SDK you need to use Composer autoload.
require_once('vendor/autoload.php');
Setup
- Create a developer account on dev.lifeboat.app
- Register an app
NOTE
NEVER share your app credentials
Getting Started
Invoke the client
Initialise the SDK and redirect the user to the Lifeboat OAuth service. The OAuth service will automatically login and capture user authorisation to use your app.
// The SDK requires sessions to store and cache data session_start(); $client = new \Lifeboat\App( '<APP ID>', '<APP SECRET>' ); // The SDK will create a strong challenge key // and automatically store it in the session $challenge = $client->getAPIChallenge(); // Redirect the user to the auth screen $redirect_url = $client->getAuthURL( 'https://my.app/oauth/process_url', 'https://my.app/oauth/error_url', $challenge ); header("Location: {$redirect_url}"); exit;
Processing Page
// https://my.app/oauth/process_url session_start(); $client = new \Lifeboat\App( '<APP ID>', '<APP SECRET>' ); // This code will be returned by the oauth service to provide // you with temporary access to the logged in user account. $code = $_GET['code']; // Get an access token // The SDK will automatically store the access token in sessions // // If the user has access to multiple stores // the SDK will also automatically select the active store // based on the user's selection durin OAuth $access_token = $client->fetchAccessToken($code);
Using the client without user interaction
Sometimes you might need to perform actions on the user's
store without that user actively interacting with your app.
A common usecase is retreiving products on a cron to perform
analysis or other checks.
To do this you need to know 2 important parameters:
site_key
: The store's site_key you want to accesssite_host
: The store's master domain
Note: The user must first authorise your app before you can use this method
$client = new \Lifeboat\App( '<APP ID>', '<APP SECRET>' ); // Let the SDK know which store you'll be interacting with $client->setActiveSite($site_host, $site_key);
From here on forward you can keep using the $client
as if
the user has logged in. The SDK & Lifeboat OAuth will automatically
check that your app has been authorised by the user.
Basic Usage
Creating, manipulating and deleting objects from here on is done completely through the SDK.
$product = $client->product->create([ 'Title' => 'MyProduct', 'SKU' => 'xxx', 'TrackStock' => true ]); // Makes the necessary calls to the API to store the object $product->save();
Examples
You can see a working example in the examples directory of this repository.
Auth.php
- An example auth controller for your front-endCron.php
- An example cron controllerStore.php
- An example object to save store information