summaryrefslogtreecommitdiff
path: root/src/Http/Controllers/SvgController.php
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2024-06-15 23:03:44 +0100
committerSam Light <samlight1994@gmail.com>2024-06-15 23:03:44 +0100
commit2cc8c1a8ea904ec2de857ede865a7bccc0000de4 (patch)
treeb8613eff0d5c55920252898fd89d287a8c57011c /src/Http/Controllers/SvgController.php
parentf07af8db3b58bafb840ddcbc23cda5e6644feaff (diff)
Implemented everything
Diffstat (limited to 'src/Http/Controllers/SvgController.php')
-rw-r--r--src/Http/Controllers/SvgController.php19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/Http/Controllers/SvgController.php b/src/Http/Controllers/SvgController.php
index 5296024..9e9c550 100644
--- a/src/Http/Controllers/SvgController.php
+++ b/src/Http/Controllers/SvgController.php
@@ -4,14 +4,27 @@ namespace Lightscale\LaralightSvg\Http\Controllers;
use Lightscale\LaralightSvg\SvgService;
-use Illuminate\Http\Controller;
+use Illuminate\Routing\Controller;
+use Illuminate\Http\Request;
class SvgController extends Controller
{
- public function serveSvg(SvgService $svg, string $collection)
+ public function serveSvg(SvgService $svg, Request $request, string $collection)
{
- \Log::debug($collection);
+ $collection = $svg->getCollection($collection);
+ if ($collection === null) abort(404);
+
+ $svgContent = $collection->getSvg();
+ if ($svgContent === null) abort(404);
+
+ return response(
+ $svgContent,
+ 200,
+ [
+ 'Content-Type' => 'image/svg+xml',
+ ]
+ );
}
}