-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPresentation.php
278 lines (241 loc) · 6.79 KB
/
Presentation.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
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
<?php
namespace Orkestra\Bundle\ReportBundle;
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface,
Symfony\Component\Form\FormFactory,
Symfony\Component\HttpFoundation\Request;
use Doctrine\ORM\QueryBuilder;
use Orkestra\Bundle\ReportBundle\Form\FilterFormType;
/**
* Represents a compiled report, ready for rendering to the client
*/
class Presentation
{
/**
* @var \Symfony\Bundle\FrameworkBundle\Templating\EngineInterface
*/
protected $engine;
/**
* @var \Doctrine\ORM\QueryBuilder
*/
protected $queryBuilder;
/**
* @var \Symfony\Component\Form\FormFactory
*/
protected $formFactory;
/**
* @var \Orkestra\Bundle\ReportBundle\ReportFactory
*/
protected $reportFactory;
/**
* @var \Orkestra\Bundle\ReportBundle\PresenterInterface
*/
protected $presenter;
/**
* @var \Orkestra\Bundle\ReportBundle\ReportInterface
*/
protected $report;
/**
* @var \Symfony\Component\HttpFoundation\Request
*/
protected $request;
/**
* @var \Doctrine\Common\Collections\ArrayCollection
*/
protected $snapshots;
/**
* @var \Symfony\Component\Form\Form
*/
protected $form;
/**
* @var array
*/
protected $filters;
/**
* Constructor
*
* @param \Symfony\Bundle\FrameworkBundle\Templating\EngineInterface $engine
* @param \Doctrine\ORM\QueryBuilder $queryBuilder
* @param \Symfony\Component\Form\FormFactory $formFactory
* @param \Orkestra\Bundle\ReportBundle\ReportFactory $reportFactory
* @param \Orkestra\Bundle\ReportBundle\PresenterInterface $presenter
* @param \Orkestra\Bundle\ReportBundle\ReportInterface $report
* @param \Symfony\Component\HttpFoundation\Request $request Optional Request to bind the Presentation to
*
* @throws \RuntimeException
*/
public function __construct(
EngineInterface $engine,
QueryBuilder $queryBuilder,
FormFactory $formFactory,
ReportFactory $reportFactory,
PresenterInterface $presenter,
ReportInterface $report,
Request $request = null
) {
if (!$presenter->supports($report)) {
throw new \RuntimeException(sprintf('The report "%s" does not support the functionality required by the presenter "%s"', $report->getName(), $presenter->getName()));
}
$this->engine = $engine;
$this->queryBuilder = $queryBuilder;
$this->formFactory = $formFactory;
$this->reportFactory = $reportFactory;
$this->presenter = $presenter;
$this->report = $report;
$this->filters = $presenter->getFilters();
if ($request) {
$this->bindRequest($request);
}
}
/**
* Gets the associated presenter
*
* @return \Orkestra\Bundle\ReportBundle\PresenterInterface
*/
public function getPresenter()
{
return $this->presenter;
}
/**
* Gets the associated report
*
* @return \Orkestra\Bundle\ReportBundle\ReportInterface
*/
public function getReport()
{
return $this->report;
}
/**
* Returns true if the Presentation has been bound to a Request
*
* @return boolean
*/
public function isBound()
{
return empty($this->request) ? false : true;
}
/**
* Binds the Presentation to a Request
*
* @param \Symfony\Component\HttpFoundation\Request $request
*/
public function bindRequest(Request $request)
{
$this->request = $request;
$this->getForm()->bind($request);
foreach ($this->filters as $filter) {
/** @var \Orkestra\Bundle\ReportBundle\FilterInterface $filter */
$filter->bindRequest($this->request);
}
}
/**
* Appends a filter to this Presentation
*
* TODO: Should this fail silently?
*
* @param \Orkestra\Bundle\ReportBundle\FilterInterface $filter
*/
public function appendFilter(FilterInterface $filter)
{
if (!$this->isBound()) {
array_push($this->filters, $filter);
}
}
/**
* Prepends a filter to this Presentation
*
* TODO: Should this fail silently?
*
* @param \Orkestra\Bundle\ReportBundle\FilterInterface $filter
*/
public function prependFilter(FilterInterface $filter)
{
if (!$this->isBound()) {
array_unshift($this->filters, $filter);
}
}
/**
* Renders the Presentation using the injected templating Engine
*
* @return string
*/
public function render()
{
return $this->engine->render($this->presenter->getTemplate(), array('presentation' => $this));
}
/**
* Gets the Form associated with this Presentation.
*
* If the Form does not yet exist, it will be created at the time of this method call
*
* @return \Symfony\Component\Form\Form
*/
public function getForm()
{
if (!$this->form) {
$this->form = $this->formFactory->create(new FilterFormType($this->presenter->getFilters()));
}
return $this->form;
}
/**
* Gets the associated Snapshots after all filters have been applied.
*
* If the Snapshots have not yet been fetched, they will be at the time of this method call
*
* @return \Doctrine\Common\Collections\ArrayCollection
*/
public function getSnapshots()
{
if (!$this->snapshots) {
$qb = $this->queryBuilder;
$qb->select('s')
->from('Orkestra\Bundle\ReportBundle\Entity\Snapshot', 's')
->where('s.report = :report');
$qb->setParameter('report', $this->report->getName());
foreach ($this->filters as $filter) {
/** @var \Orkestra\Bundle\ReportBundle\FilterInterface $filter */
$filter->apply($qb);
}
$query = $qb->getQuery();
$this->snapshots = $query->getResult();
}
return $this->snapshots;
}
/**
* Gets the name of the associated report
*
* @return string
*/
public function getName()
{
return $this->report->getName();
}
/**
* Gets the name of the associated template
*
* @return string
*/
public function getTemplate()
{
return $this->presenter->getTemplate();
}
/**
* Gets an array of facts from the associated report
*
* @return array
*/
public function getFacts()
{
return $this->report->getFacts();
}
/**
* Gets a pretty label for a fact from the associated report
*
* @param string $fact
*
* @return string
*/
public function getLabel($fact)
{
return $this->report->getLabel($fact);
}
}