1 | <?php |
||
15 | class VimeoServiceAdapter extends AbstractServiceAdapter |
||
16 | { |
||
17 | const THUMBNAIL_SMALL = 'thumbnail_small'; |
||
|
|||
18 | const THUMBNAIL_MEDIUM = 'thumbnail_medium'; |
||
19 | const THUMBNAIL_LARGE = 'thumbnail_large'; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | public $title; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | public $description; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | public $thumbnails; |
||
35 | |||
36 | /** |
||
37 | * @param string $url |
||
38 | * @param string $pattern |
||
39 | * @param EmbedRendererInterface $renderer |
||
40 | */ |
||
41 | 12 | public function __construct($url, $pattern, EmbedRendererInterface $renderer) |
|
58 | |||
59 | /** |
||
60 | * Returns the service name (ie: "Youtube" or "Vimeo"). |
||
61 | * |
||
62 | * @return string |
||
63 | */ |
||
64 | 1 | public function getServiceName() |
|
68 | |||
69 | /** |
||
70 | * Returns if the service has a thumbnail image. |
||
71 | * |
||
72 | * @return bool |
||
73 | */ |
||
74 | 1 | public function hasThumbnail() |
|
78 | |||
79 | /** |
||
80 | * @return string |
||
81 | */ |
||
82 | 1 | public function getTitle() |
|
86 | |||
87 | /** |
||
88 | * @param string $title |
||
89 | */ |
||
90 | 12 | public function setTitle($title) |
|
94 | |||
95 | /** |
||
96 | * @return string |
||
97 | */ |
||
98 | 1 | public function getDescription() |
|
102 | |||
103 | /** |
||
104 | * @param string $description |
||
105 | */ |
||
106 | 12 | public function setDescription($description) |
|
110 | |||
111 | /** |
||
112 | * @param array $thumbnails |
||
113 | */ |
||
114 | 12 | private function setThumbnails(array $thumbnails) |
|
120 | |||
121 | /** |
||
122 | * @param string $size |
||
123 | * |
||
124 | * @return string |
||
125 | * |
||
126 | * @throws InvalidThumbnailSizeException |
||
127 | */ |
||
128 | 2 | public function getThumbnail($size, $forceSecure = false) |
|
141 | |||
142 | /** |
||
143 | * @param bool $forceAutoplay |
||
144 | * |
||
145 | * @return string |
||
146 | */ |
||
147 | 2 | public function getEmbedUrl($forceAutoplay = false, $forceSecure = false) |
|
151 | |||
152 | /** |
||
153 | * Returns all thumbnails available sizes. |
||
154 | * |
||
155 | * @return array |
||
156 | */ |
||
157 | 3 | public function getThumbNailSizes() |
|
165 | |||
166 | /** |
||
167 | * Returns the small thumbnail's url. |
||
168 | * |
||
169 | * @param bool $forceSecure |
||
170 | * @return string |
||
171 | * @throws InvalidThumbnailSizeException |
||
172 | */ |
||
173 | 1 | public function getSmallThumbnail($forceSecure = false) |
|
177 | |||
178 | /** |
||
179 | * Returns the medium thumbnail's url. |
||
180 | * |
||
181 | * @param bool $forceSecure |
||
182 | * @return string |
||
183 | * @throws InvalidThumbnailSizeException |
||
184 | */ |
||
185 | 1 | public function getMediumThumbnail($forceSecure = false) |
|
189 | |||
190 | /** |
||
191 | * Returns the large thumbnail's url. |
||
192 | * |
||
193 | * @param bool $forceSecure |
||
194 | * @param $forceSecure |
||
195 | * @return string |
||
196 | * @throws InvalidThumbnailSizeException |
||
197 | */ |
||
198 | 1 | public function getLargeThumbnail($forceSecure = false) |
|
202 | |||
203 | /** |
||
204 | * Returns the largest thumnbnaail's url. |
||
205 | * |
||
206 | * @param bool $forceSecure |
||
207 | * @param $forceSecure |
||
208 | * @return string |
||
209 | * @throws InvalidThumbnailSizeException |
||
210 | */ |
||
211 | 1 | public function getLargestThumbnail($forceSecure = false) |
|
215 | |||
216 | /** |
||
217 | * @return bool |
||
218 | */ |
||
219 | 1 | public function isEmbeddable() |
|
223 | |||
224 | /** |
||
225 | * @param string $url |
||
226 | * @param string $pattern |
||
227 | * |
||
228 | * @return int |
||
229 | */ |
||
230 | 12 | private function getVideoIdByPattern($url, $pattern) |
|
238 | |||
239 | /** |
||
240 | * Uses the Vimeo video API to get video info. |
||
241 | * |
||
242 | * @todo make this better by using guzzle |
||
243 | * |
||
244 | * @return array |
||
245 | * |
||
246 | * @throws ServiceApiNotAvailable |
||
247 | */ |
||
248 | 12 | private function getVideoDataFromServiceApi() |
|
258 | } |
||
259 |
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.
To visualize
will produce issues in the first and second line, while this second example
will produce no issues.