mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
23 lines
No EOL
497 B
PHP
23 lines
No EOL
497 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Controller;
|
|
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');
|
|
}
|
|
} |