Code Monkey home page Code Monkey logo

Comments (4)

frostealth avatar frostealth commented on June 11, 2024

What version aws-sdk-php you have installed?
Do you have the same problem if you use put method?

I think the problem is in aws-sdk-php.
The Aws\S3\MultipartUploader detects and overwrites mime-type of the file by its extension.
You can see it here and here.

Do you have any suggestions for solving this problem?

from yii2-aws-s3.

davidjeddy avatar davidjeddy commented on June 11, 2024
  • aws-sdk-php as is required by the library (nothing else currently using it).
  • Using PUT the resulting content on S3 is 14bytes (corrupt data).
  • Ooooo, ok. That explains a lot; our logic right now uses the PHP temp file in /tmp/* as the source file to upload as we do not want to save the file to disk before pushing it to S3. Solution may be that we will have to save it to disk, upload it, then delete one our machine. Suggestions?

from yii2-aws-s3.

frostealth avatar frostealth commented on June 11, 2024

There is the same problem on stackoverflow

The code is from a project that works without any problems:

$file = UploadedFile::getInstanceByName('image');
// ...
$body = file_get_contents($file->tempName);
$storage->put($filename, $body, null, [
    'ContentType' => $file->type,
]);

from yii2-aws-s3.

davidjeddy avatar davidjeddy commented on June 11, 2024

Hazzah! That helped out greatly! Final solution:

            if (!($this->file instanceof \yii\web\UploadedFile)) { return false; }

            $filename = \Yii::$app->S3->path(\Yii::$app) . \Ramsey\Uuid\Uuid::uuid4()->toString() . '.' . explode('/', $this->file->type)[1];

            \Yii::$app->get('s3bucket')->put(
                $filename,
                file_get_contents($this->file->tempName),
                \Yii::$app->get('s3bucket')->defaultAcl,
                [
                    'ContentType' => $this->file->type,
                ]
            );

            return ($filename ?: false);

from yii2-aws-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.