Code Monkey home page Code Monkey logo

Comments (5)

achatzi78 avatar achatzi78 commented on August 24, 2024 1

@erikn69 Your fix works. For now I have made the change in the vendor directory of my projects, until this is included in a new release.

Thanks everybody for your help.

from flysystem-google-drive-ext.

erikn69 avatar erikn69 commented on August 24, 2024

I tested on a fresh instalation(Laravel v9.8.1 and PHP 8.1.2) and i am unable to replicate the exception
https://github.com/erikn69/laravel-google-drive-ext-demo
https://github.com/erikn69/laravel-google-drive-ext-demo/blob/80cc69fbb3989c24387b941c8841e249033ffc21/routes/web.php#L32-L40

Also you can run the tests
https://github.com/masbug/flysystem-google-drive-ext/blob/2.x/tests/GoogleDriveAdapterTests.php

from flysystem-google-drive-ext.

masbug avatar masbug commented on August 24, 2024

@achatzi78 Have you found the cause? If not, then can you show a minimal example that reproduces your issue?

from flysystem-google-drive-ext.

achatzi78 avatar achatzi78 commented on August 24, 2024

@erikn69 @masbug At first I had an older app, with Laravel 8 and php7, which I upgraded to Laravel 9 and php8.1 and I got this error. Then, I tried with another app that is currently under development with Laravel 9 and php 8.1 in case something in the upgrade went wrong. I still got the same error. Then, after your comment, I tried with a fresh installation of Laravel and everything works. Maybe something in the versions is messed up or another package is interefering with this package?

In any case, this is what I use

This is my service provider

namespace App\Providers;

use Google\Client as GoogleClient;
use Google\Service\Drive as GoogleServiceDrive;
use Illuminate\Filesystem\FilesystemAdapter;
use Illuminate\Support\ServiceProvider;
use League\Flysystem\Filesystem;
use Masbug\Flysystem\GoogleDriveAdapter;
use Storage;

class GoogleDriveServiceProvider extends ServiceProvider
{
    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        Storage::extend('google', function($app, $config) {
            $client = new GoogleClient();
            $client->setClientId($config['clientId']);
            $client->setClientSecret($config['clientSecret']);
            $client->refreshToken($config['refreshToken']);

            $service = new GoogleServiceDrive($client);
            $adapter = new GoogleDriveAdapter($service, $config['folderName'], [
                'useHasDir' => true,
            ]);
            $driver = new Filesystem($adapter);

            return new FilesystemAdapter($driver, $adapter);
        });
    }
}

In the filesystems config file I have

'cloud' => env('FILESYSTEM_CLOUD', 'google'),
...
'google' => [
            'driver' => 'google',
            'clientId' => env('GOOGLE_DRIVE_CLIENT_ID', '),
            'clientSecret' => env('GOOGLE_DRIVE_CLIENT_SECRET', ''),
            'refreshToken' => env('GOOGLE_DRIVE_REFRESH_TOKEN', ''),
            'folderId' => env('GOOGLE_DRIVE_FOLDER_ID', ''),
            'folderName' => env('GOOGLE_DRIVE_FOLDER_NAME', 'Websites/LiferaftsApp'),
            'sheetId' => env('GOOGLE_DRIVE_PATH_MANAGER_SHEET_ID'),
            'visibility' => 'private',
        ],

When I use Storage::cloud()->get('somefile.txt') I get this exception. I have also attached the composer.json and composer.lock files in case you can find something useful there. Let me know if you need anything more.
composer.lock.txt
composer.json.txt
.

from flysystem-google-drive-ext.

erikn69 avatar erikn69 commented on August 24, 2024

@achatzi78 test #66

from flysystem-google-drive-ext.

Related Issues (20)

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.