Compare commits

..

No commits in common. "ed84e3be719a7ece5ae343912addbe1aad4e4aca" and "ef25c5b3afecae05db273d31d85914b8cea12d03" have entirely different histories.

4 changed files with 0 additions and 83 deletions

3
.gitignore vendored
View File

@ -1,6 +1,3 @@
composer.lock
vendor
php/version.php
php-docs
.phpdoc
phpdoc

23
php/cache/cache.php vendored
View File

@ -1,23 +0,0 @@
<?php
/**
* SPDX-FileCopyrightText: 2024 Sascha Nitsch (grumpydeveloper) https://contentnation.net/@grumpydevelop
* SPDX-License-Identifier: GPL-3.0-or-later
*
* @author Sascha Nitsch (grumpydeveloper)
**/
namespace Federator\Cache;
/**
* base class for remote authentication
*/
interface Cache extends \Federator\Connector\Connector
{
/**
* save remote user by given session
* @param string $_session session id
* @param string $_user user/profile name
* @return \Federator\Data\User | null
*/
public function saveRemoteUserBySession(string $_session, string $_user, \Federator\Data\User $user);
}

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor configVersion="3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://www.phpdoc.org">
<title>Federator</title>
<paths>
<output>php-docs</output>
</paths>
<version number="develop">
<api format="php">
<visibility>internal</visibility>
<ignore>
<path>vendor</path>
</ignore>
</api>
</version>
</phpdocumentor>

View File

@ -1,42 +0,0 @@
<?php
/**
* SPDX-FileCopyrightText: 2024 Sascha Nitsch (grumpydeveloper) https://contentnation.net/@grumpydevelop
* SPDX-License-Identifier: GPL-3.0-or-later
*
* @author Sascha Nitsch <grumpydevelop@contentnation.net>
**/
namespace Federator\Cache;
/**
* Caching class using redis
*/
class RedisCache implements Cache
{
/** @var \Redis connection handle */
private $redis;
public function __construct()
{
}
/**
* get remote user by given session
* @param string $_session session id
* @param string $_user user/profile name
* @return \Data\User | null
*/
public function getRemoteUserBySession(string $_session, string $_user)
{
}
public function saveRemoteUserBySession(string $_session, string $_user, \Federator\Data\User $user)
{
}
}
function dummy_rediscache(\Federator\Main $main)
{
$rc = new RedisCache();
$main->setCache($rc);
}