forked from schmittjoh/JMSJobQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJobQueueExtension.php
96 lines (78 loc) · 2.37 KB
/
JobQueueExtension.php
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
<?php
namespace JMS\JobQueueBundle\Twig;
class JobQueueExtension extends \Twig_Extension
{
private $linkGenerators = array();
public function __construct(array $generators = array())
{
$this->linkGenerators = $generators;
}
public function getTests()
{
return array(
new \Twig_SimpleTest('jms_job_queue_linkable', array($this, 'isLinkable'))
);
}
public function getFunctions()
{
return array(
new \Twig_SimpleFunction('jms_job_queue_path', array($this, 'generatePath'), array('is_safe' => array('html' => true)))
);
}
public function getFilters()
{
return array(
new \Twig_SimpleFilter('jms_job_queue_linkname', array($this, 'getLinkname')),
new \Twig_SimpleFilter('jms_job_queue_args', array($this, 'formatArgs'))
);
}
public function formatArgs(array $args, $maxLength = 60)
{
$str = '';
$first = true;
foreach ($args as $arg) {
$argLength = strlen($arg);
if ( ! $first) {
$str .= ' ';
}
$first = false;
if (strlen($str) + $argLength > $maxLength) {
$str .= substr($arg, 0, $maxLength - strlen($str) - 4).'...';
break;
}
$str .= escapeshellarg($arg);
}
return $str;
}
public function isLinkable($entity)
{
foreach ($this->linkGenerators as $generator) {
if ($generator->supports($entity)) {
return true;
}
}
return false;
}
public function generatePath($entity)
{
foreach ($this->linkGenerators as $generator) {
if ($generator->supports($entity)) {
return $generator->generate($entity);
}
}
throw new \RuntimeException(sprintf('The entity "%s" has no link generator.', get_class($entity)));
}
public function getLinkname($entity)
{
foreach ($this->linkGenerators as $generator) {
if ($generator->supports($entity)) {
return $generator->getLinkname($entity);
}
}
throw new \RuntimeException(sprintf('The entity "%s" has no link generator.', get_class($entity)));
}
public function getName()
{
return 'jms_job_queue';
}
}