Uploading a file sent to amazon s3

I am trying to upload a file to Amazon S3 via Laravel 4.

After the user submits the form, the file will be passed to the function where I will need to use the Amazon PHP SDK and upload the file to the Amazon S3 bucket.

But how to upload a file directly to Amazon S3 without saving the file to the server.

My current code looks like this:

private function uploadVideo($vid){

    $file = $vid;

    $filename =  $file->getClientOriginalName();

    if (!class_exists('S3'))require_once('S3.php');
    if (!defined('awsAccessKey')) define('awsAccessKey', '123123123');
    if (!defined('awsSecretKey')) define('awsSecretKey', '123123123');
    $s3 = new S3(awsAccessKey, awsSecretKey);
    $s3->putBucket("mybucket", S3::ACL_PUBLIC_READ);

    $s3->putObject($vid, "mybucket",$filename , S3::ACL_PUBLIC_READ);


}

      

+1


source to share


1 answer


Grab the official SDK from http://docs.aws.amazon.com/aws-sdk-php/latest/index.html

This example uses http://docs.aws.amazon.com/aws-sdk-php/latest/class-Aws.S3.S3Client.html#_upload



require('aws.phar');
use Aws\S3\S3Client;
use Aws\Common\Enum\Region;

// Instantiate the S3 client with your AWS credentials and desired AWS region
$client = S3Client::factory(array(
  'key'    => 'KEY HERE',
  'secret' => 'SECRET HERE',
  'region' => Region::AP_SOUTHEAST_2 // you will need to change or remove this
));

$result = $client->upload(
  'BUCKET HERE',
  'OBJECT KEY HERE',
  'STRING OF YOUR FILE HERE',
  'public-read' // public access ACL
);

      

+5


source







All Articles