2017 © Pedro Peláez
 

library laravel-sharepoint-upload-client

Simple library for file uploading to Microsoft Sharepoint site

image

jakub-klapka/laravel-sharepoint-upload-client

Simple library for file uploading to Microsoft Sharepoint site

  • Friday, April 7, 2017
  • by jakub-klapka
  • Repository
  • 1 Watchers
  • 1 Stars
  • 25 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 3 Versions
  • 25 % Grown

The README.md

Laravel Sharepoint Upload Client

Simple Client for uploading files to Sharepoint Online library. Integrated Laravel Service Provider., (*1)

Uses accesscontrol.windows.net OAuth2, so it works with MS ADFS or Azure AAD Authentication., (*2)

Usage:

Register ServiceProvider in your app.php:

\JakubKlapka\LaravelSharepointUploadClient\LaravelSharepointUploadProvider::class

Use Client factory to make Client instance:

class Controller {

    protected $sharepointClient;

    public function __construct( \JakubKlapka\LaravelSharepointUploadClient\Factories\ClientFactory $sharepointClient ) {
        $this->sharepointClient = $sharepointClient;
    }

    public function upload() {
        $client = $this->sharepointClient->makeClient( $site_url, $app_id, $app_secret, $redirect_uri );
    }

}

You will need those attributes, you can register Sharepoint App on: https://contoso.sharepoint.com/sites/MySite/_layouts/15/appregnew.aspx, (*3)

Attribute Description Example
site_url Abosolute path to root of your sharepoint site https://contoso.sharepoint.com/sites/MySite
app_id ID of your app
app_secret Secret of your app
redirect_uri Redirect URI has to match the one, entered on appregnew.aspx https://myapp.com/shp-oauth/

Point you user to retrieve Consent:

$url = $client->getUserConsentUri()

Get refresh token from auth code, returned based on Consent:

$auth_code = $_REQUEST['code'];
$refreshToken = $client->getRefreshTokenFromAuthCode( $auth_code );

This client does not handle token persistence, feel free to save it to file/db/redis or wherever it is fit for your app., (*4)

Refresh token is valid for 6 months., (*5)

Use refresh token to upload a file

$upload_result = $client->uploadFile(
    $refresh_token,
    '/sites/mySite/myLibrary/',
    'file.txt',
    $this->transfer_storage->readStream( 'file.txt' )
);

Resources

The Versions

07/04 2017

dev-master

9999999-dev https://github.com/jakub-klapka/laravel-sharepoint-upload-client

Simple library for file uploading to Microsoft Sharepoint site

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jakub Klapka

oauth upload microsoft sharepoint

07/04 2017

v1.0.1

1.0.1.0 https://github.com/jakub-klapka/laravel-sharepoint-upload-client

Simple library for file uploading to Microsoft Sharepoint site

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jakub Klapka

oauth upload microsoft sharepoint

07/04 2017

v1.0.0

1.0.0.0 https://github.com/jakub-klapka/laravel-sharepoint-upload-client

Simple library for file uploading to Microsoft Sharepoint site

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jakub Klapka

oauth upload microsoft sharepoint