mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
19 lines
No EOL
411 B
PHP
19 lines
No EOL
411 B
PHP
<?php
|
|
|
|
use Entities\Track;
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
class UsersController extends Controller {
|
|
public function getAvatar($id, $type) {
|
|
$coverType = Cover::getCoverFromName($type);
|
|
|
|
if ($coverType == null)
|
|
App::abort(404);
|
|
|
|
$user = User::find($id);
|
|
if (!$user)
|
|
App::abort(404);
|
|
|
|
return File::inline($user->getAvatarFile($coverType['id']), 'image/png', 'cover.png');
|
|
}
|
|
} |