Coder Social home page Coder Social logo

Check if an object exists on S3 about s3 HOT 3 CLOSED

akeeba avatar akeeba commented on July 29, 2024
Check if an object exists on S3

from s3.

Comments (3)

nikosdion avatar nikosdion commented on July 29, 2024 1

Yes you need to define the constant upfront. We had to that because the original land main use case of the S3 repo is its integration with our backup engine. Since it's typically installed in publicly accessible folders and the server may or may not support .htaccess / web.config access controls we have the die statement to prevent any accidental directory disclosure from error messages.

I'll update the README to note that. Thank you for the heads up!

from s3.

nikosdion avatar nikosdion commented on July 29, 2024

We currently do not implement Amazon S3's HeadObject. This leaves you with two options.

One option is listing the bucket (getBucket) and see if the object exists.

The other option is trying to retrieve the first byte of an object, e.g.

try {
  $dummy = $s3->getObject($bucket, $objectPath, null, 0, 1)
  $fileExists = true;
} catch (Exception $e) {
  $fileExists = false;
}

This method isn't ideal and may outright fail if you have objects with certain storage types like Glacier.

I can definitely try to implement HeadObject.

from s3.

capsandiego avatar capsandiego commented on July 29, 2024

As I don't plan to have thousands of files in a bucket folder at the same time, the Connector::getBucket() should do the job :)

By the way, I see defined('AKEEBAENGINE') or die(); inside the classes. Do I need to define the constant upfront of there is a better way to use the classes?

THANK YOU!

from s3.

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.