blob: a29fce13da9384d9e5e17337c16ee78d9d66ec51 (
plain)
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
|
<?php
namespace Lightscale\LaralightSvg\Http\Controllers;
use Lightscale\LaralightSvg\SvgService;
use Illuminate\Routing\Controller;
use Illuminate\Http\Request;
class SvgController extends Controller
{
public function serveSvg(SvgService $svg, Request $request, string $collection)
{
$collection = $svg->getCollection($collection);
if ($collection === null) abort(404);
$svgContent = $collection->getSvg();
if ($svgContent === null) abort(404);
$cacheControl = '';
if ($request->query('v') && ($maxAge = $collection->getMaxAge()) > 0) {
$cacheControl = "max-age={$maxAge}, public";
}
else {
$cacheControl = 'no-store, private';
}
return response(
$svgContent,
200,
[
'Content-Type' => 'image/svg+xml',
'Cache-Control' => $cacheControl,
]
);
}
}
|