1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Storgman - Student Organizations Management |
5
|
|
|
* Copyright (C) 2014-2016, Dejan Angelov <[email protected]> |
6
|
|
|
* |
7
|
|
|
* This file is part of Storgman. |
8
|
|
|
* |
9
|
|
|
* Storgman is free software: you can redistribute it and/or modify |
10
|
|
|
* it under the terms of the GNU General Public License as published by |
11
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
12
|
|
|
* (at your option) any later version. |
13
|
|
|
* |
14
|
|
|
* Storgman is distributed in the hope that it will be useful, |
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
|
|
|
* GNU General Public License for more details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU General Public License |
20
|
|
|
* along with Storgman. If not, see <http://www.gnu.org/licenses/>. |
21
|
|
|
* |
22
|
|
|
* @package Storgman |
23
|
|
|
* @copyright Copyright (C) 2014-2016, Dejan Angelov <[email protected]> |
24
|
|
|
* @license https://github.com/angelov/storgman/blob/master/LICENSE |
25
|
|
|
* @author Dejan Angelov <[email protected]> |
26
|
|
|
*/ |
27
|
|
|
|
28
|
|
|
namespace Angelov\Storgman\Meetings\Attachments\Http\Controllers; |
29
|
|
|
|
30
|
|
|
use Angelov\Storgman\Core\FileSystem\FileSystemsRegistry; |
31
|
|
|
use Angelov\Storgman\Core\Http\Controllers\BaseController; |
32
|
|
|
use Angelov\Storgman\Meetings\Attachments\Attachment; |
33
|
|
|
use Angelov\Storgman\Meetings\Attachments\AttachmentFile; |
34
|
|
|
use Angelov\Storgman\Meetings\Attachments\Commands\StoreAttachmentCommand; |
35
|
|
|
use Angelov\Storgman\Meetings\Attachments\Http\Requests\StoreAttachmentRequest; |
36
|
|
|
use Angelov\Storgman\Meetings\Attachments\Repositories\AttachmentsRepositoryInterface; |
37
|
|
|
use Angelov\Storgman\Members\Member; |
38
|
|
|
use Illuminate\Contracts\Auth\Guard; |
39
|
|
|
|
40
|
|
|
class AttachmentsController extends BaseController |
41
|
|
|
{ |
42
|
|
|
protected $attachments; |
43
|
|
|
|
44
|
|
|
public function __construct(AttachmentsRepositoryInterface $attachments) |
45
|
|
|
{ |
46
|
|
|
$this->attachments = $attachments; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
public function store(StoreAttachmentRequest $request, Guard $auth) |
50
|
|
|
{ |
51
|
|
|
$file = $request->file('file'); |
52
|
|
|
|
53
|
|
|
/** @var Member $owner */ |
54
|
|
|
$owner = $auth->user(); |
55
|
|
|
$owner = $owner->getId(); |
56
|
|
|
|
57
|
|
|
$file = new AttachmentFile($file->getClientOriginalName(), $file->getRealPath()); |
58
|
|
|
|
59
|
|
|
/** @var Attachment $attachment */ |
60
|
|
|
$attachment = dispatch(new StoreAttachmentCommand($file, $owner)); |
61
|
|
|
|
62
|
|
|
return $attachment->getId(); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
View Code Duplication |
public function show($id, FileSystemsRegistry $registry) |
|
|
|
|
66
|
|
|
{ |
67
|
|
|
$attachment = $this->attachments->get($id); |
68
|
|
|
$filesystem = $registry->get(AttachmentFile::class); |
69
|
|
|
|
70
|
|
|
$file = $filesystem->find($attachment->getStorageFilename()); |
71
|
|
|
$content = $filesystem->read($file); |
72
|
|
|
|
73
|
|
|
return response($content)->header('Content-Disposition', sprintf('attachment;filename="%s"', $attachment->getFilename())); |
|
|
|
|
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.