-
-
Save theejhay/162d07472ad1f17871b37ad6e8acb3f3 to your computer and use it in GitHub Desktop.
Upload image using form submission to AWS S3 with PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This file demonstrates file upload to an S3 bucket. This is for using file upload via a | |
// file compared to just having the link. If you are doing it via link, refer to this: | |
// https://gist.github.com/keithweaver/08c1ab13b0cc47d0b8528f4bc318b49a | |
// | |
// You must setup your bucket to have the proper permissions. To learn how to do this | |
// refer to: | |
// https://github.com/keithweaver/python-aws-s3 | |
// https://www.youtube.com/watch?v=v33Kl-Kx30o | |
// I will be using composer to install the needed AWS packages. | |
// The PHP SDK: | |
// https://github.com/aws/aws-sdk-php | |
// https://packagist.org/packages/aws/aws-sdk-php | |
// | |
// Run:$ composer require aws/aws-sdk-php | |
require 'vendor/autoload.php'; | |
use Aws\S3\S3Client; | |
use Aws\S3\Exception\S3Exception; | |
// AWS Info | |
$bucketName = 'SUB_YOUR_BUCKET_NAME_IN'; | |
$IAM_KEY = 'SUB_YOUR_IAM_KEY_IN'; | |
$IAM_SECRET = 'SUB_YOUR_IAM_SECRET_IN'; | |
// Connect to AWS | |
try { | |
// You may need to change the region. It will say in the URL when the bucket is open | |
// and on creation. | |
$s3 = S3Client::factory( | |
array( | |
'credentials' => array( | |
'key' => $IAM_KEY, | |
'secret' => $IAM_SECRET | |
), | |
'version' => 'latest', | |
'region' => 'us-east-2' | |
) | |
); | |
} catch (Exception $e) { | |
// We use a die, so if this fails. It stops here. Typically this is a REST call so this would | |
// return a json object. | |
die("Error: " . $e->getMessage()); | |
} | |
// For this, I would generate a unqiue random string for the key name. But you can do whatever. | |
$keyName = 'test_example/' . basename($_FILES["fileToUpload"]['tmp_name']); | |
$pathInS3 = 'https://s3.us-east-2.amazonaws.com/' . $bucketName . '/' . $keyName; | |
// Add it to S3 | |
try { | |
// Uploaded: | |
$file = $_FILES["fileToUpload"]['tmp_name']; | |
$s3->putObject( | |
array( | |
'Bucket'=>$bucketName, | |
'Key' => $keyName, | |
'SourceFile' => $file, | |
'StorageClass' => 'REDUCED_REDUNDANCY' | |
) | |
); | |
} catch (S3Exception $e) { | |
die('Error:' . $e->getMessage()); | |
} catch (Exception $e) { | |
die('Error:' . $e->getMessage()); | |
} | |
echo 'Done'; | |
// Now that you have it working, I recommend adding some checks on the files. | |
// Example: Max size, allowed file types, etc. | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment