1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* Copyright (C) 2020 Jan Böhmer |
4
|
|
|
* |
5
|
|
|
* This program is free software: you can redistribute it and/or modify |
6
|
|
|
* it under the terms of the GNU Affero General Public License as published |
7
|
|
|
* by the Free Software Foundation, either version 3 of the License, or |
8
|
|
|
* (at your option) any later version. |
9
|
|
|
* |
10
|
|
|
* This program is distributed in the hope that it will be useful, |
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
* GNU Affero General Public License for more details. |
14
|
|
|
* |
15
|
|
|
* You should have received a copy of the GNU Affero General Public License |
16
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
17
|
|
|
*/ |
18
|
|
|
|
19
|
|
|
namespace App\Controller; |
20
|
|
|
|
21
|
|
|
use App\Entity\PaymentOrder; |
22
|
|
|
use App\Services\PDF\PaymentOrderPDFGenerator; |
23
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
24
|
|
|
use Symfony\Component\HttpFoundation\Response; |
25
|
|
|
use Symfony\Component\Routing\Annotation\Route; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @Route("/admin/pdf") |
29
|
|
|
*/ |
30
|
|
|
class PDFGeneratorController extends AbstractController |
31
|
|
|
{ |
32
|
|
|
/** |
33
|
|
|
* @Route("/payment_order/{id}") |
34
|
|
|
*/ |
35
|
|
|
public function pdf(PaymentOrder $paymentOrder, PaymentOrderPDFGenerator $paymentOrderPDFGenerator): Response |
36
|
|
|
{ |
37
|
|
|
$this->denyAccessUnlessGranted('ROLE_SHOW_PAYMENT_ORDERS'); |
38
|
|
|
|
39
|
|
|
$data = $paymentOrderPDFGenerator->generatePDF($paymentOrder); |
40
|
|
|
$response = new Response($data); |
41
|
|
|
|
42
|
|
|
$response->headers->set('Content-type', 'application/pdf'); |
43
|
|
|
$response->headers->set('Content-length', strlen($data)); |
44
|
|
|
$response->headers->set('Cache-Control', 'private'); |
45
|
|
|
$response->headers->set('Content-Disposition', 'inline'); |
46
|
|
|
|
47
|
|
|
return $response; |
48
|
|
|
} |
49
|
|
|
} |
50
|
|
|
|