1 | <?php |
||
20 | class FileHandler extends AbstractMediaHandler |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | const TYPE = 'file'; |
||
26 | |||
27 | /** |
||
28 | * @var Filesystem |
||
29 | */ |
||
30 | public $fileSystem = null; |
||
31 | |||
32 | /** |
||
33 | * @var MimeTypeGuesserInterface |
||
34 | */ |
||
35 | public $mimeTypeGuesser = null; |
||
36 | public $urlizer; |
||
37 | |||
38 | /** |
||
39 | * constructor. |
||
40 | */ |
||
41 | public function __construct() |
||
42 | { |
||
43 | $this->fileSystem = new Filesystem(new \Gaufrette\Adapter\Local('uploads/media/', true)); |
||
44 | //we use a specific symfony mimetypeguesser because de default (FileinfoMimeTypeGuesser) is unable to recognize MS documents |
||
45 | $this->mimeTypeGuesser = new FileBinaryMimeTypeGuesser(); |
||
46 | $this->urlizer = new Urlizer(); |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function getName() |
||
53 | { |
||
54 | return 'File Handler'; |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | public function getType() |
||
61 | { |
||
62 | return self::TYPE; |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * @return FileType |
||
67 | */ |
||
68 | public function getFormType() |
||
69 | { |
||
70 | return FileType::class; |
||
71 | } |
||
72 | |||
73 | /** |
||
74 | * @param mixed $object |
||
75 | * |
||
76 | * @return bool |
||
77 | */ |
||
78 | public function canHandle($object) |
||
79 | { |
||
80 | if ($object instanceof File || ($object instanceof Media && (is_file($object->getContent()) || $object->getLocation() == 'local'))) { |
||
81 | return true; |
||
82 | } |
||
83 | |||
84 | return false; |
||
85 | } |
||
86 | |||
87 | /** |
||
88 | * @param Media $media |
||
89 | * |
||
90 | * @return FileHelper |
||
91 | */ |
||
92 | public function getFormHelper(Media $media) |
||
93 | { |
||
94 | return new FileHelper($media); |
||
95 | } |
||
96 | |||
97 | /** |
||
98 | * @param Media $media |
||
99 | * |
||
100 | * @throws \RuntimeException when the file does not exist |
||
101 | */ |
||
102 | public function prepareMedia(Media $media) |
||
103 | { |
||
104 | if (null === $media->getUuid()) { |
||
105 | $uuid = uniqid(); |
||
106 | $media->setUuid($uuid); |
||
107 | } |
||
108 | $content = $media->getContent(); |
||
109 | if (empty($content)) { |
||
110 | return; |
||
111 | } |
||
112 | if (!$content instanceof File) { |
||
113 | if (!is_file($content)) { |
||
114 | throw new \RuntimeException('Invalid file'); |
||
115 | } |
||
116 | $file = new File($content); |
||
117 | $media->setContent($file); |
||
118 | } |
||
119 | if ($content instanceof UploadedFile) { |
||
120 | $pathInfo = pathinfo($content->getClientOriginalName()); |
||
121 | $media->setOriginalFilename($this->urlizer->urlize($pathInfo['filename']).'.'.$pathInfo['extension']); |
||
122 | $name = $media->getName(); |
||
123 | if (empty($name)) { |
||
124 | $media->setName($media->getOriginalFilename()); |
||
125 | } |
||
126 | } |
||
127 | $media->setFileSize(filesize($media->getContent())); |
||
128 | $contentType = $this->mimeTypeGuesser->guess($media->getContent()->getPathname()); |
||
129 | $media->setContentType($contentType); |
||
130 | $relativePath = sprintf('/%s.%s', $media->getUuid(), ExtensionGuesser::getInstance()->guess($media->getContentType())); |
||
131 | $media->setUrl('/uploads/media'.$relativePath); |
||
132 | $media->setLocation('local'); |
||
133 | } |
||
134 | |||
135 | /** |
||
136 | * @param Media $media |
||
137 | */ |
||
138 | public function saveMedia(Media $media) |
||
139 | { |
||
140 | if (!$media->getContent() instanceof File) { |
||
141 | return; |
||
142 | } |
||
143 | |||
144 | $originalFile = $this->getOriginalFile($media); |
||
145 | $originalFile->setContent(file_get_contents($media->getContent()->getRealPath())); |
||
146 | } |
||
147 | |||
148 | /** |
||
149 | * @param Media $media |
||
150 | * |
||
151 | * @return \Gaufrette\File |
||
152 | */ |
||
153 | public function getOriginalFile(Media $media) |
||
154 | { |
||
155 | $relativePath = sprintf('/%s.%s', $media->getUuid(), ExtensionGuesser::getInstance()->guess($media->getContentType())); |
||
156 | |||
157 | return $this->fileSystem->get($relativePath, true); |
||
158 | } |
||
159 | |||
160 | /** |
||
161 | * @param Media $media |
||
162 | */ |
||
163 | public function removeMedia(Media $media) |
||
166 | |||
167 | /** |
||
168 | * {@inheritdoc} |
||
169 | */ |
||
170 | public function updateMedia(Media $media) |
||
174 | |||
175 | /** |
||
176 | * @param File $data |
||
177 | * |
||
178 | * @return Media |
||
179 | */ |
||
180 | public function createNew($data) |
||
181 | { |
||
182 | if ($data instanceof File) { |
||
183 | /* @var $data File */ |
||
184 | |||
185 | $media = new Media(); |
||
186 | if (method_exists($media, 'getClientOriginalName')) { |
||
187 | $media->setName($data->getClientOriginalName()); |
||
|
|||
188 | } else { |
||
189 | $media->setName($data->getFilename()); |
||
190 | } |
||
191 | $media->setContent($data); |
||
192 | |||
193 | return $media; |
||
194 | } |
||
195 | } |
||
196 | |||
197 | /** |
||
198 | * {@inheritdoc} |
||
199 | */ |
||
200 | public function getShowTemplate(Media $media) |
||
204 | |||
205 | /** |
||
206 | * @return array |
||
207 | */ |
||
208 | public function getAddFolderActions() |
||
216 | } |
||
217 |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different sub-classes of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the parent class: