1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/backend/app/Services/Storage.php

70 lines
1.4 KiB
PHP
Raw Normal View History

2016-10-18 15:11:25 +02:00
<?php
namespace App\Services;
use Illuminate\Support\Facades\Storage as LaravelStorage;
class Storage {
/**
* Save backup as json into /public/exports.
*
* @param $file
* @param $items
*/
public function saveExport($file, $items)
{
LaravelStorage::disk('export')->put($file, $items);
}
/**
* Create the export filename.
*
* @return string
*/
public function createExportFilename()
{
return 'flox--' . date('Y-m-d---H-i') . '.json';
}
2016-10-18 15:11:25 +02:00
/**
* Download the poster image file.
2016-10-18 15:11:25 +02:00
*
* @param $poster
*/
public function downloadPoster($poster)
2016-10-18 15:11:25 +02:00
{
if($poster) {
LaravelStorage::put($poster, file_get_contents('http://image.tmdb.org/t/p/w185' . $poster));
}
}
/**
* Delete the poster image file.
*
* @param $poster
*/
public function removePosterFile($poster)
{
LaravelStorage::delete($poster);
}
2016-11-23 21:16:41 +01:00
/**
* Parse language file.
*
* @return mixed
*/
public function parseLanguage()
{
2017-01-24 16:11:47 +01:00
$alternative = config('app.TRANSLATION');
2016-11-23 21:16:41 +01:00
$filename = strtolower($alternative) . '.json';
// Get english fallback
if( ! LaravelStorage::disk('languages')->exists($filename)) {
$filename = 'en.json';
}
return LaravelStorage::disk('languages')->get($filename);
}
2017-01-24 16:11:47 +01:00
}