Question

I have a Ruby method that calls:

FOG_DIRECTORY.files.create(
    key: cloud_filename,
    body: File.open(local_filename),
    public: public_boolean)

Is there a way to then do something like:

CLOUD_DIRECTORY.files.get(cloud_filename).public

to see if the file is publicly viewable or not? I'm using S3 and could always check the S3 path but then I have to deal with code to look at files at remote URLs and, more importantly, I reduce this code to being S3-dependent, rather than easily portable.

Was it helpful?

Solution

There doesn't seem to be a separate method to check this, but you can check if #public_url returns nil or not. See the source.

OTHER TIPS

Ah, turns out I can do this:

CLOUD_DIRECTORY.files.get(cloud_filename).public_url.nil?
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top