2018-08-29 04:06:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
|
|
use App\Models\Song;
|
|
|
|
use Aws\S3\S3ClientInterface;
|
|
|
|
use Illuminate\Cache\Repository as Cache;
|
|
|
|
|
|
|
|
class S3Service implements ObjectStorageInterface
|
|
|
|
{
|
2021-06-05 10:47:56 +00:00
|
|
|
private ?S3ClientInterface $s3Client;
|
|
|
|
private Cache $cache;
|
2018-08-29 04:06:17 +00:00
|
|
|
|
2018-08-29 10:18:42 +00:00
|
|
|
public function __construct(?S3ClientInterface $s3Client, Cache $cache)
|
2018-08-29 04:06:17 +00:00
|
|
|
{
|
|
|
|
$this->s3Client = $s3Client;
|
|
|
|
$this->cache = $cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSongPublicUrl(Song $song): string
|
|
|
|
{
|
2021-06-05 10:47:56 +00:00
|
|
|
return $this->cache->remember("OSUrl/$song->id", now()->addHour(), function () use ($song): string {
|
2018-08-29 04:06:17 +00:00
|
|
|
$cmd = $this->s3Client->getCommand('GetObject', [
|
|
|
|
'Bucket' => $song->s3_params['bucket'],
|
|
|
|
'Key' => $song->s3_params['key'],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Here we specify that the request is valid for 1 hour.
|
|
|
|
// We'll also cache the public URL for future reuse.
|
|
|
|
$request = $this->s3Client->createPresignedRequest($cmd, '+1 hour');
|
2020-12-22 20:11:22 +00:00
|
|
|
return (string) $request->getUri();
|
2018-08-29 04:06:17 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|