34 lines
1.3 KiB
PHP
34 lines
1.3 KiB
PHP
<?php
|
|
|
|
function getSkills() {
|
|
require "./lib/config.php";
|
|
$s3Client = new Aws\S3\S3Client([
|
|
'version' => 'latest',
|
|
'region' => 'us-east-1',
|
|
'endpoint' => $S3Server,
|
|
'use_path_style_endpoint' => true,
|
|
'credentials' => [
|
|
'key' => $S3AccessKey,
|
|
'secret' => $S3SecretKey,
|
|
],
|
|
]);
|
|
|
|
$result = $s3Client->ListObjects(['Bucket' => $S3BucketName, 'Delimiter'=>'/', 'Prefix' => 'skills/']);
|
|
|
|
$response = [];
|
|
foreach ($result["Contents"] as $skill){
|
|
// Get a command object from the client
|
|
$command = $s3Client->getCommand('GetObject', [
|
|
'Bucket' => $S3BucketName,
|
|
'Key' => $skill["Key"]
|
|
]);
|
|
|
|
// Create a pre-signed URL for a request with duration of 10 miniutes
|
|
$presignedRequest = $s3Client->createPresignedRequest($command, '60 minutes');
|
|
|
|
// Get the actual presigned-url
|
|
$downloadURL = (string) $presignedRequest->getUri();
|
|
array_push($response, $downloadURL);
|
|
}
|
|
return $response;
|
|
}
|