Pony.fm/app/controllers/Api/Web/ImagesController.php

34 lines
868 B
PHP
Raw Normal View History

2013-07-27 05:00:45 +02:00
<?php
namespace Api\Web;
use Commands\DeleteTrackCommand;
use Commands\EditTrackCommand;
use Commands\UploadTrackCommand;
use Cover;
use Entities\Image;
use Entities\Track;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Input;
use Illuminate\Support\Facades\Response;
class ImagesController extends \ApiControllerBase {
public function getOwned() {
$query = Image::where('uploaded_by', \Auth::user()->id);
$images = [];
foreach ($query->get() as $image) {
$images[] = [
'id' => $image->id,
2013-07-28 10:35:31 +02:00
'urls' => [
'small' => $image->getUrl(Image::SMALL),
'normal' => $image->getUrl(Image::NORMAL),
'thumbnail' => $image->getUrl(Image::THUMBNAIL),
'original' => $image->getUrl(Image::ORIGINAL)
],
2013-07-27 05:00:45 +02:00
'filename' => $image->filename
];
}
return Response::json($images, 200);
}
}