watchlist/Classes/Session/CookieSessionService.php
Daniel Siepmann ca9d22298e Fix broken cookie handling on PHP side
Fix broken cookie path within middleware. For some reason we used the
`/typo3/` path while storing cookies server side. But we used `/` in
JavaScript. That didn't play together and was fixed to always be `/` for
now, but it should be configurable in general. The fix revealed that the
detection of whether to store a cookie was broken, which was fixed
within the corresponding service.

Furthermore the dates how long the cookie should be stored was
different. We now always use 7 days.
2024-02-21 10:16:34 +01:00

95 lines
2.7 KiB
PHP

<?php
declare(strict_types=1);
/*
* Copyright (C) 2022 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
namespace WerkraumMedia\Watchlist\Session;
use TYPO3\CMS\Core\Http\ServerRequest;
use TYPO3\CMS\Extbase\Property\PropertyMapper;
use WerkraumMedia\Watchlist\Domain\Model\Item;
use WerkraumMedia\Watchlist\Domain\Model\Watchlist;
class CookieSessionService implements SessionServiceInterface
{
private PropertyMapper $propertyMapper;
private array $watchlists = [];
public function __construct(
) {
$this->watchlists['default'] = array_filter(explode(
',',
$this->getRequest()->getCookieParams()[$this->getCookieName()] ?? ''
));
}
// Seems to be a bug leading to different instances if we use constructor.
public function injectPropertyMapper(PropertyMapper $propertyMapper): void
{
$this->propertyMapper = $propertyMapper;
}
public function getWatchlist(string $identifier): ?Watchlist
{
$items = $this->watchlists['default'];
if ($items === []) {
return null;
}
$watchlist = new Watchlist();
array_map(function (string $item) use ($watchlist) {
$mappedItem = $this->propertyMapper->convert($item, Item::class);
if (!$mappedItem instanceof Item) {
return;
}
$watchlist->addItem($mappedItem);
}, $items);
return $watchlist;
}
public function update(Watchlist $watchlist): void
{
$this->watchlists[$watchlist->getIdentifier()] = array_map(
fn (Item $item) => $item->getUniqueIdentifier(),
$watchlist->getItems()
);
}
public function getCookieName(): string
{
return 'watchlist';
}
public function getCookieValue(): string
{
return implode(',', $this->watchlists['default'] ?? []);
}
private function getRequest(): ServerRequest
{
return $GLOBALS['TYPO3_REQUEST'];
}
}