GithubHelp home page GithubHelp logo

guoyu07 / onedrive-php-sdk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from krizalys/onedrive-php-sdk

0.0 0.0 0.0 388 KB

OneDrive SDK for PHP.

License: GNU General Public License v3.0

PHP 96.42% JavaScript 3.48% Shell 0.10%

onedrive-php-sdk's Introduction

OneDrive SDK for PHP

Latest Stable Version Build Status Code Coverage StyleCI

OneDrive SDK for PHP is an open source library that allows PHP applications to interact programmatically with the OneDrive API.

It supports operations such as creating, reading, updating, deleting (CRUD) files and folders, as well as moving or copying them to other folders.

Requirements

Using the OneDrive SDK for PHP requires the following:

Testing

For development, you also require:

  • A OneDrive web application configured with http://localhost:7777/ as its redirect URL
  • A WebDriver server, for example the Selenium's Java standalone server
  • A Chrome browser & ChromeDriver, and they must be usable by the WebDriver server

Installation

To install the OneDrive SDK for PHP, copy the onedrive-php-sdk folder in your application source tree. The example subfolder contains example files and may be removed from production servers.

Configuration

To use this SDK, you need to register a OneDrive application. To do this, first sign in to your Microsoft account, then visit your application manager and create an application.

Once done, your application will be assigned, among other things, a Client ID and a Client secret. These two values will be needed shortly to configure the OneDrive SDK for PHP.

You also need to create a web page where users will get redirected after they successfully signed in to their OneDrive account using this SDK. Typically, this page will be a PHP script where you will start to interact with the files and folders stored in their OneDrive account. The URL of this page is the Callback URI and will also be needed to configure the OneDrive SDK for PHP.

Quick start

Once you got your Client ID, Client secret and Callback URI, you can get started using the OneDrive SDK for PHP in four steps.

Step 1: get your dependencies through Composer

From the root of this repository, get the required dependencies using Composer:

$ composer install -n --no-dev

During the process, a vendor/autoload.php file will be created. It is mentioned in next steps and allows you to use classes from OneDrive SDK for PHP without needing to explicitly require() files that define them.

Step 2: save your configuration

As you may need them from several scripts, save your Client ID, Client secret and Callback URI in a configuration file. Let's call it onedrive-config.php and fill it with:

<?php
return [
    /*
     * Your OneDrive client ID.
     */
    'ONEDRIVE_CLIENT_ID' => '<YOUR_CLIENT_ID>',

    /*
     * Your OneDrive client secret.
     */
    'ONEDRIVE_CLIENT_SECRET' => '<YOUR_CLIENT_SECRET>',

    /*
     * Your OneDrive callback URI.
     */
    'ONEDRIVE_CALLBACK_URI' => '<http://your.domain.com/your-callback.php>',
];
?>

Step 3: direct your users to the sign in page

This script is responsible for, given a set of privileges, fetching a login URL from the OneDrive API. It then needs to guide the users to this URL so they initiate their log in and privilege granting process. The script should look like (replace /path/to by the appropriate values):

<?php
($config = include '/path/to/config.php') or die('Configuration file not found');
require_once '/path/to/onedrive-php-sdk/vendor/autoload.php';

use Krizalys\Onedrive\Client;

// Instantiates a OneDrive client bound to your OneDrive application.
$onedrive = new Client([
    'client_id' => $config['ONEDRIVE_CLIENT_ID'],
]);

// Gets a log in URL with sufficient privileges from the OneDrive API.
$url = $onedrive->getLogInUrl([
    'wl.signin',
    'wl.basic',
    'wl.contacts_skydrive',
    'wl.skydrive_update',
], $config['ONEDRIVE_CALLBACK_URI']);

session_start();

// Persist the OneDrive client' state for next API requests.
$_SESSION = [
    'onedrive.client.state' => $onedrive->getState(),
];

// Guide the user to the log in URL (you may also use an HTTP/JS redirect).
echo "<a href='$url'>Next step</a>";
?>

Step 4: get an OAuth access token

After the users follow this URL, they are required to sign in using a valid Microsoft account, and they are asked whether they agree to allow your application to access their OneDrive account.

If they do, they are redirected back to your Callback URI and a code is passed in the query string of this URL. The script residing at this URL essentially:

  1. Instantiates a Client from your configuration and the state from previous instantiations
  2. Obtains an OAuth access token using Client::obtainAccessToken() passing it the code received
  3. May start interacting with the files and folders stored in their OneDrive account, or delegates this responsibility to other scripts instantiating a Client from the same state

It typically looks like (replace /path/to by the appropriate values):

<?php
($config = include '/path/to/config.php') or die('Configuration file not found');
require_once '/path/to/onedrive-php-sdk/vendor/autoload.php';

use Krizalys\Onedrive\Client;

// If we don't have a code in the query string (meaning that the user did not
// log in successfully or did not grant privileges requested), we cannot proceed
// in obtaining an access token.
if (!array_key_exists('code', $_GET)) {
    throw new \Exception('code undefined in $_GET');
}

session_start();

// Attempt to load the OneDrive client' state persisted from the previous
// request.
if (!array_key_exists('onedrive.client.state', $_SESSION)) {
    throw new \Exception('onedrive.client.state undefined in $_SESSION');
}

$onedrive = new Client([
    'client_id' => $config['ONEDRIVE_CLIENT_ID'],

    // Restore the previous state while instantiating this client to proceed in
    // obtaining an access token.
    'state' => $_SESSION['onedrive.client.state']
]);

// Obtain the token using the code received by the OneDrive API.
$onedrive->obtainAccessToken($config['ONEDRIVE_CLIENT_SECRET'], $_GET['code']);

// Persist the OneDrive client' state for next API requests.
$_SESSION['onedrive.client.state'] = $onedrive->getState();

// Past this point, you can start using file/folder functions from the SDK.
?>

For details about classes and methods available, see the project page on Krizalys.

Testing

To run the functional test suite:

  1. Set your application configuration at test/functional/config.php ;
  2. Run your WebDriver server, for example:
java -jar selenium-server-standalone-3.8.1.jar
  1. Run the functional test (it assumes that your Selenium WebDriver is listening on port 4444):
vendor/bin/phpunit -c test/functional
  1. Repeat steps 4 to 5 as needed.

Examples

To demonstrate the use of the OneDrive SDK for PHP, examples are provided with the library, in the example subfolder. Using the examples require a file config.php to be present in the onedrive-php-sdk folder and filled as explained in the step 1 from the Quick Start. A OneDrive account is needed to try out these examples.

Demonstration

The example files provided with the OneDrive SDK for PHP are deployed on a demo website for live demonstration purposes. A OneDrive account is needed to try out this demonstration.

You can also try the examples on your own machine using PHP's built-in web server:

$ php -S yourdomain.com -t example

When using this method, be aware that the Microsoft Developer platform will not let you use localhost or a non-standard port in your target domain and redirect URLs.

License

The OneDrive SDK for PHP is licensed under the GNU General Public License v3.0.

Credits

The OneDrive SDK for PHP is developed and maintained by Christophe Vidal.

onedrive-php-sdk's People

Contributors

krizalys avatar paulorwd avatar davidanderson684 avatar uuf6429 avatar christophe-ddproperty avatar muntianrazvan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.