Newer
Older

Yassine Doghri
committed
<?php

Yassine Doghri
committed
declare(strict_types=1);

Yassine Doghri
committed
namespace Config;
use App\Entities\Actor;
use App\Entities\Post;
use App\Models\EpisodeModel;
use CodeIgniter\Events\Events;
use CodeIgniter\Exceptions\FrameworkException;

Yassine Doghri
committed
use Modules\Auth\Entities\User;
/*
* --------------------------------------------------------------------
* Application Events
* --------------------------------------------------------------------
* Events allow you to tap into the execution of the program without
* modifying or extending core files. This file provides a central
* location to define your events, though they can always be added
* at run-time, also, if needed.
*
* You create code that can execute by subscribing to events with
* the 'on()' method. This accepts any form of callable, including
* Closures, that will be executed when the event is triggered.
*
* Example:
* Events::on('create', [$myInstance, 'myMethod']);
*/
Events::on('pre_system', function () {
// @phpstan-ignore-next-line
if (ENVIRONMENT !== 'testing') {
if (ini_get('zlib.output_compression')) {
throw FrameworkException::forEnabledZlibOutputCompression();
while (ob_get_level() > 0) {
ob_end_flush();
}
ob_start(function ($buffer) {
return $buffer;
});
}
/*
* --------------------------------------------------------------------
* Debug Toolbar Listeners.
* --------------------------------------------------------------------
* If you delete, they will no longer be collected.
*
* @phpstan-ignore-next-line
if (CI_DEBUG && ! is_cli()) {

Yassine Doghri
committed
Events::on('DBQuery', 'CodeIgniter\Debug\Toolbar\Collectors\Database::collect');
Services::toolbar()->respond();
}
Events::on('login', function (User $user): void {
helper('auth');
// set interact_as_actor_id value
$userPodcasts = $user->podcasts;
if ($userPodcasts = $user->podcasts) {
set_interact_as_actor($userPodcasts[0]->actor_id);
}
});
Events::on('logout', function (User $user): void {
helper('auth');
// remove user's interact_as_actor session
remove_interact_as_actor();
});
/*
* --------------------------------------------------------------------

Yassine Doghri
committed
* Fediverse events
* --------------------------------------------------------------------
*/

Yassine Doghri
committed
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/**
* @param Actor $actor
* @param Actor $targetActor
*/
Events::on('on_follow', function ($actor, $targetActor): void {
if ($actor->is_podcast) {
cache()
->deleteMatching("podcast#{$actor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$actor->podcast->id}*");
}
if ($targetActor->is_podcast) {
cache()
->deleteMatching("podcast#{$targetActor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$targetActor->podcast->id}*");
}
});
/**
* @param Actor $actor
* @param Actor $targetActor
*/
Events::on('on_undo_follow', function ($actor, $targetActor): void {
if ($actor->is_podcast) {
cache()
->deleteMatching("podcast#{$actor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$actor->podcast->id}*");
}
if ($targetActor->is_podcast) {
cache()
->deleteMatching("podcast#{$targetActor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$targetActor->podcast->id}*");
}
});
/**
* @param Post $post

Yassine Doghri
committed
*/
Events::on('on_post_add', function ($post): void {
$isReply = $post->in_reply_to_id !== null;
if ($isReply) {
$post = $post->reply_to_post;

Yassine Doghri
committed
}
if ($post->episode_id !== null) {
if ($isReply) {
model(EpisodeModel::class, false)
->where('id', $post->episode_id)
->increment('comments_count');
} else {
model(EpisodeModel::class, false)
->where('id', $post->episode_id)
->increment('posts_count');
}
}
if ($post->actor->is_podcast) {

Yassine Doghri
committed
// Removing all of the podcast pages is a bit overkill, but works to avoid caching bugs
// same for other events below
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
});

Yassine Doghri
committed
/**
* @param Post $post

Yassine Doghri
committed
*/
Events::on('on_post_remove', function ($post): void {
if ($post->in_reply_to_id !== null) {
Events::trigger('on_post_remove', $post->reply_to_post);

Yassine Doghri
committed
}
if ($episodeId = $post->episode_id) {
model(EpisodeModel::class, false)

Yassine Doghri
committed
->where('id', $episodeId)
->decrement('posts_count');
}
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
cache()
->deleteMatching("page_post#{$post->id}*");
});

Yassine Doghri
committed
/**
* @param Actor $actor
* @param Post $post

Yassine Doghri
committed
*/
Events::on('on_post_reblog', function ($actor, $post): void {
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
if ($actor->is_podcast) {
cache()->deleteMatching("podcast#{$actor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$actor->podcast->id}*");
}
cache()
->deleteMatching("page_post#{$post->id}*");
if ($post->in_reply_to_id !== null) {
cache()->deleteMatching("page_post#{$post->in_reply_to_id}");
}
});

Yassine Doghri
committed
/**
* @param Post $reblogPost

Yassine Doghri
committed
*/
Events::on('on_post_undo_reblog', function ($reblogPost): void {
$post = $reblogPost->reblog_of_post;
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
cache()
->deleteMatching("page_post#{$post->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_post#{$reblogPost->id}*");

Yassine Doghri
committed
if ($post->in_reply_to_id !== null) {
cache()->deleteMatching("page_post#{$post->in_reply_to_id}");

Yassine Doghri
committed
}
if ($reblogPost->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$reblogPost->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$reblogPost->actor->podcast->id}*");
}
});

Yassine Doghri
committed
/**
* @param Post $reply

Yassine Doghri
committed
*/
Events::on('on_post_reply', function ($reply): void {
$post = $reply->reply_to_post;
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
cache()
->deleteMatching("page_post#{$post->id}*");
});

Yassine Doghri
committed
/**
* @param Post $reply

Yassine Doghri
committed
*/
Events::on('on_reply_remove', function ($reply): void {
$post = $reply->reply_to_post;
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
cache()
->deleteMatching("page_post#{$post->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_post#{$reply->id}*");
});

Yassine Doghri
committed
/**
* @param Actor $actor
* @param Post $post

Yassine Doghri
committed
*/
Events::on('on_post_favourite', function ($actor, $post): void {
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
cache()
->deleteMatching("page_post#{$post->id}*");
if ($post->in_reply_to_id !== null) {
cache()->deleteMatching("page_post#{$post->in_reply_to_id}*");
}

Yassine Doghri
committed
if ($actor->is_podcast) {
cache()->deleteMatching("podcast#{$actor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$actor->podcast->id}*");
}
});

Yassine Doghri
committed
/**
* @param Actor $actor
* @param Post $post

Yassine Doghri
committed
*/
Events::on('on_post_undo_favourite', function ($actor, $post): void {
if ($post->actor->is_podcast) {

Yassine Doghri
committed
cache()
->deleteMatching("podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
cache()
->deleteMatching("page_podcast#{$post->actor->podcast->id}*");

Yassine Doghri
committed
}
cache()
->deleteMatching("page_post#{$post->id}*");
if ($post->in_reply_to_id !== null) {
cache()->deleteMatching("page_post#{$post->in_reply_to_id}*");
}

Yassine Doghri
committed
if ($actor->is_podcast) {
cache()->deleteMatching("podcast#{$actor->podcast->id}*");
cache()
->deleteMatching("page_podcast#{$actor->podcast->id}*");
}
});
Events::on('on_block_actor', function (int $actorId): void {
cache()->deleteMatching('page_podcast*');

Yassine Doghri
committed
cache()
->deleteMatching('podcast*');
cache()
->deleteMatching('page_post*');
});
Events::on('on_unblock_actor', function (int $actorId): void {
cache()->deleteMatching('page_podcast*');

Yassine Doghri
committed
cache()
->deleteMatching('podcast*');
cache()
->deleteMatching('page_post*');
});
Events::on('on_block_domain', function (string $domainName): void {
cache()->deleteMatching('page_podcast*');

Yassine Doghri
committed
cache()
->deleteMatching('podcast*');
cache()
->deleteMatching('page_post*');
});
Events::on('on_unblock_domain', function (string $domainName): void {
cache()->deleteMatching('page_podcast*');

Yassine Doghri
committed
cache()
->deleteMatching('podcast*');
cache()
->deleteMatching('page_post*');