2013-07-25 23:33:04 +02:00
|
|
|
<?php
|
|
|
|
|
2013-08-01 04:01:41 +02:00
|
|
|
use Entities\Album;
|
|
|
|
|
2013-07-25 23:33:04 +02:00
|
|
|
class AlbumsController extends Controller {
|
|
|
|
public function getIndex() {
|
|
|
|
return View::make('albums.index');
|
|
|
|
}
|
2013-08-01 04:01:41 +02:00
|
|
|
|
|
|
|
public function getShow($id, $slug) {
|
|
|
|
$album = Album::find($id);
|
|
|
|
if (!$album)
|
|
|
|
App::abort(404);
|
|
|
|
|
|
|
|
if ($album->slug != $slug)
|
|
|
|
return Redirect::action('AlbumsController@getAlbum', [$id, $album->slug]);
|
|
|
|
|
|
|
|
return View::make('albums.show');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getShortlink($id) {
|
|
|
|
$album = Album::find($id);
|
|
|
|
if (!$album)
|
|
|
|
App::abort(404);
|
|
|
|
|
|
|
|
return Redirect::action('AlbumsController@getTrack', [$id, $album->slug]);
|
|
|
|
}
|
2013-07-25 23:33:04 +02:00
|
|
|
}
|