-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathForumCoversController.php
89 lines (71 loc) · 2.19 KB
/
ForumCoversController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the GNU Affero General Public License v3.0.
// See the LICENCE file in the repository root for full licence text.
namespace App\Http\Controllers\Forum;
use App\Exceptions\ImageProcessorException;
use App\Models\Forum\Forum;
use App\Models\Forum\ForumCover;
use App\Transformers\Forum\ForumCoverTransformer;
use Auth;
use Request;
class ForumCoversController extends Controller
{
public function __construct()
{
parent::__construct();
$this->middleware('auth', ['only' => [
'destroy',
'store',
'update',
]]);
$this->middleware(function ($request, $next) {
if (Auth::check() && !Auth::user()->isGroup('admin')) {
abort(403);
}
return $next($request);
});
}
public function store()
{
if (Request::hasFile('cover_file') !== true) {
abort(422);
}
$forum = Forum::findOrFail(Request::input('forum_id'));
if ($forum->cover !== null) {
abort(422);
}
try {
$cover = ForumCover::upload(
Request::file('cover_file')->getRealPath(),
Auth::user(),
$forum
);
} catch (ImageProcessorException $e) {
return error_popup($e->getMessage());
}
return json_item($cover, new ForumCoverTransformer());
}
public function destroy($id)
{
$cover = ForumCover::find($id);
if ($cover !== null) {
$cover->deleteWithFile();
}
return json_item($cover, new ForumCoverTransformer());
}
public function update($id)
{
$cover = ForumCover::findOrFail($id);
if (Request::hasFile('cover_file') === true) {
try {
$cover = $cover->updateFile(
Request::file('cover_file')->getRealPath(),
Auth::user()
);
} catch (ImageProcessorException $e) {
return error_popup($e->getMessage());
}
}
return json_item($cover, new ForumCoverTransformer());
}
}