Code Monkey home page Code Monkey logo

Comments (6)

erikn69 avatar erikn69 commented on August 24, 2024 2

@masbug getService() maybe can be usefull for emptyTrash, or permanently delete like #28,
or for reuse it(laravel for example, Storage::disk('google')->getDriver()->getAdapter(), we can't get protected $service; here).

from flysystem-google-drive-ext.

masbug avatar masbug commented on August 24, 2024

But why? You create the adapter by passing the $service in the constructor.

In the other issue you mentioned storing ids instead of display paths. I think nao-pon's variant is a better fit for you as this adapter is specifically focused on hiding "virtual paths" (paths made of ids) and useDisplayPaths==false is only meant for debugging and further development.

from flysystem-google-drive-ext.

erikn69 avatar erikn69 commented on August 24, 2024

$service = new \Google_Service_Drive($client);

image

Case scenario is when I need to put custom permissions on drive objects.

Maybe on constructor you can set your custom permissions with publishPermission propertie on $options

public function __construct(Google_Service_Drive $service, $root = null, $options = [])

[
   'publishPermission' => [
            'type'     => 'anyone',
            'role'     => 'reader',
            'withLink' => true
    ]
]

And then use public function setVisibility($path, $visibility) for set and unset

$adapter->setVisibility('path/to/file.txt',AdapterInterface::VISIBILITY_PUBLIC); //set permission
$adapter->setVisibility('path/to/file.txt',AdapterInterface::VISIBILITY_PRIVATE); //unset permission

public function getVisibility($path) returns permission

$permission=$adapter->getVisibility('path/to/file.txt');
// $permission results
//[
//    'visibility' => AdapterInterface::VISIBILITY_PRIVATE
//]

from flysystem-google-drive-ext.

unsa-cdn avatar unsa-cdn commented on August 24, 2024

@masbug Indeed nao-pon's variant is better fit for me but that repo is no loger receiving updates. If you think this issue will cause that trouble then no problem I will make a fork.
@erikn69 Thanks for your advice but public and private visibility are not the only cases I need for permissions. I need finer controll over them. What if I want different roles for different types?

from flysystem-google-drive-ext.

erikn69 avatar erikn69 commented on August 24, 2024

@unsa-cdn this package is a Flysystem adapter, so according to the documentation only handles VISIBILITY_PUBLIC and VISIBILITY_PRIVATE
https://github.com/thephpleague/flysystem/blob/f3ad69181b8afed2c9edf7be5a2918144ff4ea32/src/AdapterInterface.php#L7-L15
maybe you can make a PR, or maybe it's more useful avoid Flysystem and only use $service = new \Google_Service_Drive($client);

from flysystem-google-drive-ext.

erikn69 avatar erikn69 commented on August 24, 2024

@unsa-cdn Added getService(), issue must be closed

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.