Laravel PHP Create Folder and Upload file to google drive with access token

Laravel PHP Create Folder and Upload file to google drive with access token

Laravel PHP Create Folder and Upload file to google drive with access token

In this Laravel PHP tutorial, I will tell you how to upload file on Google drive using Google drive API.

I have already discussed about Login authentication with Google APIs, You can follow this link to get access token after successfully authentication with Google OAuth2 API.

For this example, I need refresh token for permanent access to Google APIs because Access token have limited lifetime that means you will have to repeat the OAuth 2.0 consent flow to authenticate user, but If you have refresh token then you can use this refresh token to obtain a new access token.

At the time of initial authorization request only, Google provide refresh token but to obtain refresh token you will have to specify offline access like this :

$this->gClient->setAccessType("offline");
$this->gClient->setApprovalPrompt("force");

You will have to enable Google Drive API with your Google account.

You need to have client_id, client_secret and api_key for this example.

Step 1 : Installation

First I will go with fresh installation by running following command :

composer create-project --prefer-dist laravel/laravel blog "5.4.*"
Step 2 : User Table

Now I will create User table to store token after authentication with Google for future access.

When you install fresh Laravel application then you will have migration file for users table by default in following path database/migrations.

Now add a column "access_token" in users migration file to save access token for each user after authentication with Google APIs.

  1. public function up()
  2. {
  3. Schema::create('users', function (Blueprint $table) {
  4. $table->increments('id');
  5. $table->string('name');
  6. $table->string('email')->unique();
  7. $table->string('password');
  8. $table->text('access_token');
  9. $table->rememberToken();
  10. $table->timestamps();
  11. });
  12. }

Put above code in users migration file and run following command to create table in your database :

php artisan migrate
Step 3 : Install Google Client Library

In this step, I will install the Google Client library by using composer, Add following line in your composer.json file :

"require": {
	....
	"google/apiclient": "2.0.*"
}

Now update your composer by running following command :

composer update
Step 4 : Add Routes

Now we will add some routes for this example :

routes/web.php
Route::get('glogin',array('as'=>'glogin','uses'=>'UserController@googleLogin')) ;
Route::post('upload-file',array('as'=>'upload-file','uses'=>'UserController@uploadFileUsingAccessToken')) ;
Step 5 : User Controller

In this UserController, We have two method with constructor. In constructor, I will define the authorized Google client object.

googleLogin() method is used to authenticate user and save access token of that user in a "users" table.

uploadFileUsingAccessToken() method is used to upload file to user's google drive account but before uploading files or creating folder, We will check if access token is expired then generate new one with the help of refresh token.

  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use App\Http\Controllers\Controller;
  5. use App\User;
  6. class UserController extends Controller
  7. {
  8. public $gClient;
  9. public function __construct(){
  10. $google_redirect_url = route('glogin');
  11. $this->gClient = new \Google_Client();
  12. $this->gClient->setApplicationName(config('services.google.app_name'));
  13. $this->gClient->setClientId(config('services.google.client_id'));
  14. $this->gClient->setClientSecret(config('services.google.client_secret'));
  15. $this->gClient->setRedirectUri($google_redirect_url);
  16. $this->gClient->setDeveloperKey(config('services.google.api_key'));
  17. $this->gClient->setScopes(array(
  18. 'https://www.googleapis.com/auth/drive.file',
  19. 'https://www.googleapis.com/auth/drive'
  20. ));
  21. $this->gClient->setAccessType("offline");
  22. $this->gClient->setApprovalPrompt("force");
  23. }
  24. public function googleLogin(Request $request) {
  25. $google_oauthV2 = new \Google_Service_Oauth2($this->gClient);
  26. if ($request->get('code')){
  27. $this->gClient->authenticate($request->get('code'));
  28. $request->session()->put('token', $this->gClient->getAccessToken());
  29. }
  30. if ($request->session()->get('token'))
  31. {
  32. $this->gClient->setAccessToken($request->session()->get('token'));
  33. }
  34. if ($this->gClient->getAccessToken())
  35. {
  36. //For logged in user, get details from google using acces
  37. $user=User::find(1);
  38. $user->access_token=json_encode($request->session()->get('token'));
  39. $user->save();
  40. dd("Successfully authenticated");
  41. } else
  42. {
  43. //For Guest user, get google login url
  44. $authUrl = $this->gClient->createAuthUrl();
  45. return redirect()->to($authUrl);
  46. }
  47. }
  48. public function uploadFileUsingAccessToken(){
  49. $service = new \Google_Service_Drive($this->gClient);
  50. $user=User::find(1);
  51. $this->gClient->setAccessToken(json_decode($user->access_token,true));
  52. if ($this->gClient->isAccessTokenExpired()) {
  53. // save refresh token to some variable
  54. $refreshTokenSaved = $this->gClient->getRefreshToken();
  55. // update access token
  56. $this->gClient->fetchAccessTokenWithRefreshToken($refreshTokenSaved);
  57. // // pass access token to some variable
  58. $updatedAccessToken = $this->gClient->getAccessToken();
  59. // // append refresh token
  60. $updatedAccessToken['refresh_token'] = $refreshTokenSaved;
  61. //Set the new acces token
  62. $this->gClient->setAccessToken($updatedAccessToken);
  63. $user->access_token=$updatedAccessToken;
  64. $user->save();
  65. }
  66. $fileMetadata = new \Google_Service_Drive_DriveFile(array(
  67. 'name' => 'ExpertPHP',
  68. 'mimeType' => 'application/vnd.google-apps.folder'));
  69. $folder = $service->files->create($fileMetadata, array(
  70. 'fields' => 'id'));
  71. printf("Folder ID: %s\n", $folder->id);
  72. $file = new \Google_Service_Drive_DriveFile(array(
  73. 'name' => 'cdrfile.jpg',
  74. 'parents' => array($folder->id)
  75. ));
  76. $result = $service->files->create($file, array(
  77. 'data' => file_get_contents(public_path('images/myimage.jpg')),
  78. 'mimeType' => 'application/octet-stream',
  79. 'uploadType' => 'media'
  80. ));
  81. // get url of uploaded file
  82. $url='https://drive.google.com/open?id='.$result->id;
  83. dd($result);
  84. }
  85. }

Phone: (+91) 8800417876
Noida, 201301