2016-09-02 22:00:42 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\AlbumSources;
|
|
|
|
|
|
|
|
use App\Album;
|
|
|
|
use App\Photo;
|
2016-09-28 20:13:18 +01:00
|
|
|
use App\Storage;
|
2016-09-02 22:00:42 +01:00
|
|
|
use Symfony\Component\HttpFoundation\File\File;
|
|
|
|
|
|
|
|
interface IAlbumSource
|
|
|
|
{
|
2016-09-09 11:09:03 +01:00
|
|
|
/**
|
|
|
|
* Deletes an entire album's media contents.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function deleteAlbumContents();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a thumbnail file for a photo.
|
|
|
|
* @param Photo $photo Photo to delete the thumbnail from.
|
|
|
|
* @param string $thumbnail Thumbnail to delete (or null to delete the original.)
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function deleteThumbnail(Photo $photo, $thumbnail = null);
|
2016-09-03 22:13:05 +01:00
|
|
|
|
2016-09-24 09:34:08 +01:00
|
|
|
/**
|
|
|
|
* Gets the name of this album source.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function getName();
|
|
|
|
|
2016-09-02 22:18:40 +01:00
|
|
|
/**
|
2016-09-03 22:13:05 +01:00
|
|
|
* Gets the absolute path to the given photo file.
|
|
|
|
* @param Photo $photo Photo to get the path to.
|
|
|
|
* @param string $thumbnail Thumbnail to get the image to.
|
2016-09-02 22:18:40 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-09-08 23:22:29 +01:00
|
|
|
function getPathToPhoto(Photo $photo, $thumbnail = null);
|
2016-09-02 22:00:42 +01:00
|
|
|
|
2016-09-03 22:13:05 +01:00
|
|
|
/**
|
|
|
|
* Gets the absolute URL to the given photo file.
|
|
|
|
* @param Photo $photo Photo to get the URL to.
|
|
|
|
* @param string $thumbnail Thumbnail to get the image to.
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-09-08 23:22:29 +01:00
|
|
|
function getUrlToPhoto(Photo $photo, $thumbnail = null);
|
2016-09-03 22:13:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves a generated thumbnail to its permanent location.
|
|
|
|
* @param Photo $photo Photo the thumbnail relates to.
|
|
|
|
* @param string $thumbnailInfo Information about the thumbnail.
|
|
|
|
* @param string $tempFilename Filename containing the thumbnail.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-09-08 23:22:29 +01:00
|
|
|
function saveThumbnail(Photo $photo, $thumbnailInfo, $tempFilename);
|
2016-09-03 17:09:49 +01:00
|
|
|
|
2016-09-02 22:00:42 +01:00
|
|
|
/**
|
|
|
|
* Saves an uploaded file to the container and returns the filename.
|
|
|
|
* @param File $uploadedFile The photo uploaded
|
2016-10-05 05:02:47 +01:00
|
|
|
* @param string $overrideFilename Specific file name to use, or null to randomly generate one.
|
2016-09-02 22:00:42 +01:00
|
|
|
* @return File
|
|
|
|
*/
|
2016-10-05 05:02:47 +01:00
|
|
|
function saveUploadedPhoto(File $uploadedFile, $overrideFilename = null);
|
2016-09-28 20:13:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Album $album
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function setAlbum(Album $album);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Storage $configuration
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function setConfiguration(Storage $configuration);
|
2016-09-02 22:00:42 +01:00
|
|
|
}
|