2021-04-02 17:20:02 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2021 Ad Aures
|
2021-04-02 17:20:02 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
2021-08-23 11:05:16 +00:00
|
|
|
namespace Modules\Fediverse\Config;
|
2021-04-02 17:20:02 +00:00
|
|
|
|
2023-09-26 15:20:25 +00:00
|
|
|
use App\Libraries\NoteObject;
|
2021-04-02 17:20:02 +00:00
|
|
|
use CodeIgniter\Config\BaseConfig;
|
2021-08-23 11:05:16 +00:00
|
|
|
use Modules\Fediverse\Objects\ActorObject;
|
2021-04-02 17:20:02 +00:00
|
|
|
|
2021-08-23 11:05:16 +00:00
|
|
|
class Fediverse extends BaseConfig
|
2021-04-02 17:20:02 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------
|
2021-08-27 10:58:22 +00:00
|
|
|
* Fediverse Objects
|
2021-04-02 17:20:02 +00:00
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $actorObject = ActorObject::class;
|
2021-05-06 14:00:48 +00:00
|
|
|
|
2023-09-26 15:20:25 +00:00
|
|
|
// FIXME: hotfix applied to have episodes show up in posts
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $noteObject = NoteObject::class;
|
2021-04-14 13:37:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
* Default avatar and cover images
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*/
|
2023-04-13 11:45:03 +00:00
|
|
|
public string $defaultAvatarImagePath = 'avatar-default.jpg';
|
2021-05-06 14:00:48 +00:00
|
|
|
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $defaultAvatarImageMimetype = 'image/jpeg';
|
2021-04-14 13:37:11 +00:00
|
|
|
|
2023-04-13 11:45:03 +00:00
|
|
|
public string $defaultCoverImagePath = 'banner-default.jpg';
|
2021-05-06 14:00:48 +00:00
|
|
|
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $defaultCoverImageMimetype = 'image/jpeg';
|
2021-04-22 17:20:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
* Cache options
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $cachePrefix = 'ap_';
|
2021-04-02 17:20:02 +00:00
|
|
|
}
|