✨ Add scribbles POST API
This commit is contained in:
parent
8d84fda8af
commit
250f072201
5 changed files with 115 additions and 3 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -49,6 +49,10 @@ Icon
|
||||||
|
|
||||||
/site/config/.license
|
/site/config/.license
|
||||||
|
|
||||||
|
# Env
|
||||||
|
# ---------------
|
||||||
|
/site/config/env.php
|
||||||
|
|
||||||
# Content
|
# Content
|
||||||
# ---------------
|
# ---------------
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
title: Scribble
|
title: Scribble
|
||||||
|
|
||||||
num: '{{ page.date.toDate("YmdHis") }}'
|
num: '{{ page.date.toDate("YmdHi") }}'
|
||||||
|
|
||||||
create:
|
create:
|
||||||
title: "{{ page.date.toDate('Y-m-d H:i') }}"
|
title: "{{ page.date.toDate('Y-m-d H:i') }}"
|
||||||
|
@ -17,7 +17,9 @@ sections:
|
||||||
label: Date
|
label: Date
|
||||||
required: true
|
required: true
|
||||||
time:
|
time:
|
||||||
step: 1
|
step:
|
||||||
|
unit: second
|
||||||
|
size: 1
|
||||||
default: now
|
default: now
|
||||||
text:
|
text:
|
||||||
type: textarea
|
type: textarea
|
||||||
|
|
|
@ -1,7 +1,20 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Kirby\Cms\App as Kirby;
|
||||||
use Kirby\Filesystem\F;
|
use Kirby\Filesystem\F;
|
||||||
|
|
||||||
F::loadClasses([
|
F::loadClasses([
|
||||||
'Mmk2410\\KirbyHelpers\\RssFeed' => 'src/RssFeed.php'
|
'Mmk2410\\KirbyHelpers\\RssFeed' => 'src/RssFeed.php',
|
||||||
|
'Mmk2410\\KirbyHelpers\\Middleware\\ApiAuthentication' => 'src/Middleware/ApiAuthentication.php',
|
||||||
|
'Mmk2410\\KirbyHelpers\\Controller\\ScribbleController' => 'src/Controller/ScribbleController.php',
|
||||||
], __DIR__);
|
], __DIR__);
|
||||||
|
|
||||||
|
Kirby::plugin('mmk2410/kirby-helpers', [
|
||||||
|
'routes' => [
|
||||||
|
[
|
||||||
|
'pattern' => 'my/api/v1/scribble',
|
||||||
|
'action' => fn () => (new Mmk2410\KirbyHelpers\Controller\ScribbleController())->addScribble(),
|
||||||
|
'method' => 'POST'
|
||||||
|
],
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
|
@ -0,0 +1,57 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Mmk2410\KirbyHelpers\Controller;
|
||||||
|
|
||||||
|
use DateTimeImmutable;
|
||||||
|
use Kirby\Cms\Page;
|
||||||
|
use Kirby\Cms\Response;
|
||||||
|
use Kirby\Exception\BadMethodCallException;
|
||||||
|
use Mmk2410\KirbyHelpers\Middleware\ApiAuthentication;
|
||||||
|
|
||||||
|
class ScribbleController
|
||||||
|
{
|
||||||
|
private const SCRIBBLES_PAGE = 'scribbles';
|
||||||
|
|
||||||
|
private const SCRIBBLE_TEMPLATE = 'scribble';
|
||||||
|
|
||||||
|
private const STATUS_LISTED = 'listed';
|
||||||
|
|
||||||
|
private const SLUG_DATE_FORMAT = 'Ymd-Hi';
|
||||||
|
|
||||||
|
private const TITLE_DATE_FORMAT = 'Y-m-d H:i';
|
||||||
|
|
||||||
|
private const NUM_DATE_FORMAT = 'YmdHi';
|
||||||
|
|
||||||
|
private const CONTENT_DATE_FORMAT = 'Y-m-d H:i';
|
||||||
|
|
||||||
|
public function addScribble(): Response
|
||||||
|
{
|
||||||
|
(new ApiAuthentication())->auth();
|
||||||
|
|
||||||
|
$text = kirby()->request()->body()->get('text');
|
||||||
|
|
||||||
|
if ($text === null) {
|
||||||
|
throw new BadMethodCallException('Invalid request');
|
||||||
|
}
|
||||||
|
|
||||||
|
$date = new DateTimeImmutable();
|
||||||
|
$num = (int) $date->format(self::NUM_DATE_FORMAT);
|
||||||
|
|
||||||
|
kirby()->impersonate('kirby');
|
||||||
|
$page = Page::create([
|
||||||
|
'parent' => page(self::SCRIBBLES_PAGE),
|
||||||
|
'slug' => $date->format(self::SLUG_DATE_FORMAT),
|
||||||
|
'draft' => false,
|
||||||
|
'template' => self::SCRIBBLE_TEMPLATE,
|
||||||
|
'content' => [
|
||||||
|
'title' => $date->format(self::TITLE_DATE_FORMAT),
|
||||||
|
'text' => $text,
|
||||||
|
'date' => $date->format(self::CONTENT_DATE_FORMAT),
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
$page->changeStatus(self::STATUS_LISTED, $num);
|
||||||
|
kirby()->impersonate('nobody');
|
||||||
|
|
||||||
|
return new Response(code: 200);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Mmk2410\KirbyHelpers\Middleware;
|
||||||
|
|
||||||
|
use Kirby\Exception\Exception;
|
||||||
|
use Kirby\Exception\PermissionException;
|
||||||
|
|
||||||
|
class ApiAuthentication
|
||||||
|
{
|
||||||
|
public function auth(): void
|
||||||
|
{
|
||||||
|
$request = kirby()->request();
|
||||||
|
$apiKeyHeader = $request->header('Api-Key');
|
||||||
|
|
||||||
|
if ($apiKeyHeader === null) {
|
||||||
|
throw new PermissionException();
|
||||||
|
}
|
||||||
|
|
||||||
|
$apiKey = $this->getApiKey();
|
||||||
|
|
||||||
|
if ($apiKey !== $apiKeyHeader) {
|
||||||
|
throw new PermissionException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getApiKey(): string
|
||||||
|
{
|
||||||
|
$apiKey = kirby()->option('mmk2410.kirby-helpers.api-key');
|
||||||
|
|
||||||
|
if ($apiKey === null) {
|
||||||
|
throw new Exception('No API key set!');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $apiKey;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue