Completed
Push — master ( 29841a...1ff6d9 )
by Beñat
02:32
created

UploadAction::upload()   B

Complexity

Conditions 2
Paths 2

Size

Total Lines 24
Code Lines 15

Duplication

Lines 24
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 24
loc 24
rs 8.9713
cc 2
eloc 15
nc 2
nop 3
1
<?php
2
3
/*
4
 * This file is part of the BenGorFile package.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 * (c) Gorka Laucirica <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace BenGorFile\FileBundle\Controller;
14
15
use BenGorFile\File\Application\Command\Upload\UploadFileCommand;
16
use BenGorFile\File\Infrastructure\Application\FileCommandBus;
17
use Symfony\Component\HttpFoundation\Request;
18
19
/**
20
 * BenGor file's upload action trait.
21
 *
22
 * @author Beñat Espiña <[email protected]>
23
 */
24 View Code Duplication
trait UploadAction
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

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.

Loading history...
25
{
26
    /**
27
     * Upload action.
28
     *
29
     * @param Request        $aRequest    The request
30
     * @param FileCommandBus $aCommandBus The command bus
31
     * @param string         $aProperty   The file property that want to get from request
32
     *
33
     * @return array
34
     */
35
    public function upload(Request $aRequest, FileCommandBus $aCommandBus, $aProperty)
36
    {
37
        if (false === $aRequest->files->has($aProperty)) {
38
            throw new \InvalidArgumentException(sprintf('Given %s property is not in the request', $aProperty));
39
        }
40
41
        $command = $this->command();
42
43
        $uploadedFile = $aRequest->files->get($aProperty);
44
        $command = new $command(
45
            $uploadedFile->getClientOriginalName(),
46
            file_get_contents($uploadedFile->getPathname()),
47
            $uploadedFile->getMimeType()
48
        );
49
        $aCommandBus->handle($command);
50
51
        $aRequest->files->remove($aProperty);
52
53
        return [
54
            'id'        => $command->id(),
55
            'filename'  => $uploadedFile->getClientOriginalName(),
56
            'mime_type' => $uploadedFile->getMimeType(),
57
        ];
58
    }
59
60
    /**
61
     * Gets the FQCN command name.
62
     *
63
     * @return string
64
     */
65
    private function command()
66
    {
67
        return UploadFileCommand::class;
68
    }
69
}
70