-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRoutingService.php
More file actions
executable file
·483 lines (419 loc) · 15.4 KB
/
RoutingService.php
File metadata and controls
executable file
·483 lines (419 loc) · 15.4 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
/*
* Copyright 2012 Nerijus Arlauskas <nercury@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Nercury\ObjectRouterBundle;
use Psr\Log\LoggerInterface;
use Symfony\Bridge\Doctrine\RegistryInterface;
use Symfony\Component\Routing\Exception\RouteNotFoundException;
/**
* Used to manage object routes.
*
* @author nercury
*/
class RoutingService
{
/**
* @var LoggerInterface
*/
protected $logger;
/**
* @var RegistryInterface
*/
protected $doctrine;
/**
*
* @var \Symfony\Bundle\FrameworkBundle\Routing\Router
*/
protected $router;
protected $configuration;
/**
*
* @var \Symfony\Component\HttpKernel\Kernel
*/
protected $kernel;
public function __construct($configuration, $logger, $doctrine, $router)
{
$this->configuration = $configuration;
$this->logger = $logger;
$this->doctrine = $doctrine;
$this->router = $router;
}
public function setKernel($kernel)
{
$this->kernel = $kernel;
}
/**
* @return \Doctrine\Common\Persistence\ObjectManager
*/
protected function getManager()
{
return $this->doctrine->getManager();
}
/**
* @return type
*/
private function getCurrentLocale()
{
if (!$this->kernel->getContainer()->isScopeActive('request')) {
return $this->kernel->getContainer()->getParameter('locale');
} else {
return $this->kernel->getContainer()->get('request')->getLocale();
}
}
/**
* Get cache is which is used for resolve object method to cache results.
*
* @param string $language
* @param string $slug
*
* @return string
*/
public function getResolveObjectCacheId($language, $slug)
{
return 'rt_' . $slug . $language . '_obj_resolve';
}
/**
* Get cache is which is used for resolve object method to cache results.
*
* @param string $objectType
* @param int $objectId
* @param string $language
* @param boolean $only_visible
*
* @return string
*/
public function getGetSlugCacheId($objectType, $objectId, $language, $only_visible)
{
return 'rt_' . $objectId . $objectType . $language . ($only_visible ? 1 : 0) . '_obj_resolve';
}
/**
* Clear resolve object cache for specific language and slug.
*
* @param string $language
* @param string $slug
*/
public function clearResolveObjectCache($language, $slug)
{
$om = $this->doctrine->getManager();
$cache_impl = $om->getConfiguration()->getResultCacheImpl();
if ($cache_impl) {
$cache_impl->delete($this->getResolveObjectCacheId($language, $slug));
}
}
/**
* Clear get slug cache for specific object.
*
* @param string $objectType
* @param int $objectId
* @param string $language
* @param boolean $only_visible
*/
public function clearGetSlugCache($objectType, $objectId, $language, $only_visible)
{
$om = $this->doctrine->getManager();
$cache_impl = $om->getConfiguration()->getResultCacheImpl();
if ($cache_impl)
$cache_impl->delete($this->getGetSlugCacheId($objectType, $objectId, $language, $only_visible));
}
/**
* Get object id and type based on language and slug
*
* @param string $language
* @param string $slug
*
* @return array of objectId and objectType: array(id, type, visible) or FALSE on failure
*/
public function resolveObject($language, $slug)
{
$this->logger->info('Resolve object slug ' . $slug . ' in ' . $language . ' language...');
$om = $this->getManager();
$cacheId = $this->getResolveObjectCacheId($language, $slug);
$res = $om->getRepository("ObjectRouterBundle:ObjectRoute")->resolveObject($language, $slug, $cacheId);
if (empty($res))
return FALSE;
return array($res[0]['object_id'], $res[0]['object_type'], $res[0]['visible']);
}
/**
* Get all object_router entries for given object id.
*
* @param int $objectId
* @param string $type
*
* @return array
*/
public function getRoutesForObject($objectId = null, $type = '')
{
if ($objectId) {
$om = $this->getManager();
$res = $om->getRepository("ObjectRouterBundle:ObjectRoute")->getRoutesForObject($objectId, $type);
if (false === empty($res)) {
return $res;
}
}
return array();
}
/**
* Set slug for specified object, type and language
*
* @param string $objectType Object type string
* @param integer $objectId Id of the object
* @param string $language Language for slug
* @param string $slug Object slug
* @param boolean $defaultVisible Specify if route should be visible if created for the first time
*/
public function setSlug($objectType, $objectId, $language, $slug, $defaultVisible = false)
{
$this->logger->info('Set slug to ' . $slug . ' for object id ' . $objectId . ' of type ' . $objectType . ' in ' . $language . ' language...');
$om = $this->getManager();
$res = $om->getRepository("ObjectRouterBundle:ObjectRoute")->getObjectRoute($objectType, $objectId, $language);
if (empty($res)) {
$route = new Entity\ObjectRoute();
$route->setLng($language);
$route->setObjectId($objectId);
$route->setObjectType($objectType);
$route->setVisible($defaultVisible);
$om->persist($route);
} else {
$route = $res[0];
}
$route->setSlug($slug);
$om->flush();
$this->clearGetSlugCache($objectType, $objectId, $language, true);
$this->clearGetSlugCache($objectType, $objectId, $language, false);
$this->clearResolveObjectCache($language, $slug);
}
/**
* Gets languages used for routing. If i18n_routing bundle is loaded, get's languages from it, otherwise
* returns just a single language from current locale.
*
* @return array Array of language strings
*/
public function getRouterLanguages()
{
$container = $this->kernel->getContainer(); // todo: would be good to inject and use container directly
if ($container->hasParameter('jms_i18n_routing.locales')) {
return $container->getParameter('jms_i18n_routing.locales');
}
return array($container->getParameter('locale'));
}
/**
* Set object visibility in specified languages
*
* @param string $objectType
* @param integer $objectId
* @param boolean $value Visibility true/false
* @param array $languages Array of languages, or language string, or false to update all languages
*/
public function setVisibility($objectType, $objectId, $value, $languages = false)
{
if ($languages !== false) {
if (!is_array($languages)) {
$languages = array($languages);
}
}
$this->logger->info('Set slug visibility to ' . ($value ? 1 : 0) . ' for object id ' . $objectId . ' of type ' . $objectType . ' in ' . ($languages === false ? 'all languages' : implode(', ', $languages) . ' languages') . '...');
$om = $this->getManager();
$om->getRepository("ObjectRouterBundle:ObjectRoute")->updateObjectRoute($value, $objectType, $objectId, $languages);
if ($languages === false)
$languages = $this->getRouterLanguages();
foreach ($languages as $language) {
$slug = $this->getSlug($objectType, $objectId, $language);
$this->clearGetSlugCache($objectType, $objectId, $language, true);
$this->clearGetSlugCache($objectType, $objectId, $language, false);
$this->clearResolveObjectCache($language, $slug);
}
}
/**
* Get slug for specified object, type and language
*
* @param string $objectType Object type string
* @param integer $objectId Id of the object
* @param string $language Language for slug
* @param boolean $only_visible Return FALSE if route is not visible
*
* @return string Object slug (returns FALSE if object slug was not found)
*/
public function getSlug($objectType, $objectId, $language, $only_visible = true)
{
$this->logger->info('Get slug for object id ' . $objectId . ' of type ' . $objectType . ' in ' . $language . ' language...');
$om = $this->getManager();
$cacheId = $this->getGetSlugCacheId($objectType, $objectId, $language, $only_visible);
$slug = $om->getRepository("ObjectRouterBundle:ObjectRoute")->getSlug($language, $objectId, $objectType, $only_visible, $cacheId);
return $slug;
}
/**
* Return visibility
*
* @param type $objectType
* @param type $objectId
* @param type $language
*
* @return type
*/
public function getVisibility($objectType, $objectId, $language)
{
return $this->getSlug($objectType, $objectId, $language) !== FALSE;
}
/**
* Delete all slugs for specified object
*
* @param string $objectType Object type string
* @param integer $objectId Id of the object
* @param boolean $flush
*
* @return boolean TRUE if something was deleted, otherwise FALSE
*/
public function deleteSlugs($objectType, $objectId, $flush = true)
{
$this->logger->info('Delete slugs for object id ' . $objectId . ' of type ' . $objectType . ' in all languages...');
$om = $this->getManager();
$results = $om->getRepository("ObjectRouterBundle:ObjectRoute")->getObjectRoutesByObjectIdAndType($objectId, $objectType);
if (empty($results))
return FALSE;
foreach ($results as $route) {
$om->remove($route);
$this->clearResolveObjectCache($route->getLng(), $route->getSlug());
$this->clearGetSlugCache($objectType, $objectId, $route->getLng(), true);
$this->clearGetSlugCache($objectType, $objectId, $route->getLng(), false);
}
if ($flush) {
$om->flush();
}
}
/**
* Delete slug in single language for specified object
*
* @param string $objectType Object type string
* @param integer $objectId Id of the object
* @param string $language Language for slug
*/
public function deleteSlug($objectType, $objectId, $language)
{
$this->logger->info('Delete slug for object id ' . $objectId . ' of type ' . $objectType . ' in ' . $language . ' language...');
$slug = $this->getSlug($objectType, $objectId, $language, false);
$om = $this->getManager();
$om->getRepository("ObjectRouterBundle:ObjectRoute")->deleteSlug($objectType, $objectId, $language);
$this->clearResolveObjectCache($language, $slug);
$this->clearGetSlugCache($objectType, $objectId, $language, true);
$this->clearGetSlugCache($objectType, $objectId, $language, false);
}
/**
* Return action for specified object type string
*
* @param string $type
*
* @return string Return action if it exists, otherwise FALSE
*/
public function getObjectTypeAction($type)
{
if (!isset($this->configuration['controllers'][$type]))
return FALSE;
return $this->configuration['controllers'][$type];
}
public function getDefaultRoute()
{
return $this->configuration['default_route'];
}
public function getDefaultRouteWithPage()
{
return $this->configuration['default_route_with_page'];
}
/**
* Generate object url.
*
* @param string $objectType
* @param integer $objectId
* @param string $locale
* @param boolean $absolute
*
* @return type
* @throws RouteNotFoundException
*/
public function generateUrl($objectType, $objectId, $locale = false, $absolute = false)
{
if ($locale === false)
$locale = $this->getCurrentLocale();
return $this->generateCustomUrl($this->getDefaultRoute(), $objectType, $objectId, array(
'_locale' => $locale,
), $absolute);
}
/**
* Generate object url with page.
*
* @param string $objectType
* @param integer $objectId
* @param integer $page
* @param string $locale
* @param boolean $absolute
*
* @return string
*/
public function generateUrlWithPage($objectType, $objectId, $page, $locale = false, $absolute = false)
{
if ($locale === false)
$locale = $this->getCurrentLocale();
return $this->generateCustomUrl($this->getDefaultRouteWithPage(), $objectType, $objectId, array(
'page' => $page,
'_locale' => $locale,
), $absolute);
}
/**
* Generate object url for specified routing action with specified parameters.
*
* @param string $route Route name
* @param string $objectType
* @param integer $objectId
* @param array $parameters Custom route parameters
* @param boolean $absolute Generate absolute url
*
* @return string The generated URL
* @throws RouteNotFoundException
*/
public function generateCustomUrl($route, $objectType, $objectId, $parameters = array(), $absolute = false)
{
$locale = isset($parameters['_locale']) ? $parameters['_locale'] : $this->request->getLocale();
$slug = $this->getSlug($objectType, $objectId, $locale);
if ($slug === false)
throw new RouteNotFoundException('Could not find a route for object id ' . $objectId . ' of type ' . $objectType . ' in ' . $locale . ' locale. Maybe route is not visible?');
return $this->generateCustomUrlForSlug($route, $locale, $slug, $parameters, $absolute);
}
/**
* Generate url with explicitly specified slug
*
* @param string $route Route name
* @param string $locale
* @param string $slug
* @param array $parameters Custom route parameters
* @param boolean $absolute Generate absolute url
*
* @return type The generated URL
*/
public function generateCustomUrlForSlug($route, $locale, $slug, $parameters = array(), $absolute = false)
{
$parameters['slug'] = $slug;
if (!isset($parameters['_locale']))
$parameters['_locale'] = $locale;
return $this->router->generate($route, $parameters, $absolute);
}
public function generateDefaultUrlForSlug($locale, $slug, $absolute = false)
{
return $this->generateCustomUrlForSlug($this->getDefaultRoute(), $locale, $slug, array(), $absolute);
}
public function generateDefaultUrlWithPageForSlug($locale, $slug, $page, $absolute = false)
{
return $this->generateCustomUrlForSlug($this->getDefaultRoute(), $locale, $slug, array('page' => $page), $absolute);
}
}