mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
commit
111ba70473
6 changed files with 58 additions and 43 deletions
|
@ -96,6 +96,8 @@
|
||||||
- Update AP helpers, more efficently update post count ([7caed381](https://github.com/pixelfed/pixelfed/commit/7caed381))
|
- Update AP helpers, more efficently update post count ([7caed381](https://github.com/pixelfed/pixelfed/commit/7caed381))
|
||||||
- Update AP helpers, refactor post count decrement logic ([b81ae577](https://github.com/pixelfed/pixelfed/commit/b81ae577))
|
- Update AP helpers, refactor post count decrement logic ([b81ae577](https://github.com/pixelfed/pixelfed/commit/b81ae577))
|
||||||
- Update AP helpers, fix sensitive bug ([00ed330c](https://github.com/pixelfed/pixelfed/commit/00ed330c))
|
- Update AP helpers, fix sensitive bug ([00ed330c](https://github.com/pixelfed/pixelfed/commit/00ed330c))
|
||||||
|
- Update NotificationEpochUpdatePipeline, use more efficient query ([4d401389](https://github.com/pixelfed/pixelfed/commit/4d401389))
|
||||||
|
- Update notification pipelines, fix non-local saving ([fa97a1f3](https://github.com/pixelfed/pixelfed/commit/fa97a1f3))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.9 (2023-08-21)](https://github.com/pixelfed/pixelfed/compare/v0.11.8...v0.11.9)
|
## [v0.11.9 (2023-08-21)](https://github.com/pixelfed/pixelfed/compare/v0.11.8...v0.11.9)
|
||||||
|
|
|
@ -91,19 +91,21 @@ class CommentPipeline implements ShouldQueue
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::transaction(function() use($target, $actor, $comment) {
|
if($target->user_id && $target->domain === null) {
|
||||||
$notification = new Notification();
|
DB::transaction(function() use($target, $actor, $comment) {
|
||||||
$notification->profile_id = $target->id;
|
$notification = new Notification();
|
||||||
$notification->actor_id = $actor->id;
|
$notification->profile_id = $target->id;
|
||||||
$notification->action = 'comment';
|
$notification->actor_id = $actor->id;
|
||||||
$notification->item_id = $comment->id;
|
$notification->action = 'comment';
|
||||||
$notification->item_type = "App\Status";
|
$notification->item_id = $comment->id;
|
||||||
$notification->save();
|
$notification->item_type = "App\Status";
|
||||||
|
$notification->save();
|
||||||
|
|
||||||
NotificationService::setNotification($notification);
|
NotificationService::setNotification($notification);
|
||||||
NotificationService::set($notification->profile_id, $notification->id);
|
NotificationService::set($notification->profile_id, $notification->id);
|
||||||
StatusService::del($comment->id);
|
StatusService::del($comment->id);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if($exists = Cache::get('status:replies:all:' . $status->id)) {
|
if($exists = Cache::get('status:replies:all:' . $status->id)) {
|
||||||
if($exists && $exists->count() == 3) {
|
if($exists && $exists->count() == 3) {
|
||||||
|
|
|
@ -72,16 +72,18 @@ class FollowPipeline implements ShouldQueue
|
||||||
$target->save();
|
$target->save();
|
||||||
AccountService::del($target->id);
|
AccountService::del($target->id);
|
||||||
|
|
||||||
try {
|
if($target->user_id && $target->domain === null) {
|
||||||
$notification = new Notification();
|
try {
|
||||||
$notification->profile_id = $target->id;
|
$notification = new Notification();
|
||||||
$notification->actor_id = $actor->id;
|
$notification->profile_id = $target->id;
|
||||||
$notification->action = 'follow';
|
$notification->actor_id = $actor->id;
|
||||||
$notification->item_id = $target->id;
|
$notification->action = 'follow';
|
||||||
$notification->item_type = "App\Profile";
|
$notification->item_id = $target->id;
|
||||||
$notification->save();
|
$notification->item_type = "App\Profile";
|
||||||
} catch (Exception $e) {
|
$notification->save();
|
||||||
Log::error($e);
|
} catch (Exception $e) {
|
||||||
|
Log::error($e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,12 @@ class NotificationEpochUpdatePipeline implements ShouldQueue, ShouldBeUniqueUnti
|
||||||
*/
|
*/
|
||||||
public function handle(): void
|
public function handle(): void
|
||||||
{
|
{
|
||||||
$rec = Notification::where('created_at', '>', now()->subMonths(6))->first();
|
$pid = Cache::get(NotificationService::EPOCH_CACHE_KEY . '6');
|
||||||
|
if($pid && $pid > 1) {
|
||||||
|
$rec = Notification::where('id', '>', $pid)->whereDate('created_at', now()->subMonths(6)->format('Y-m-d'))->first();
|
||||||
|
} else {
|
||||||
|
$rec = Notification::whereDate('created_at', now()->subMonths(6)->format('Y-m-d'))->first();
|
||||||
|
}
|
||||||
$id = 1;
|
$id = 1;
|
||||||
if($rec) {
|
if($rec) {
|
||||||
$id = $rec->id;
|
$id = $rec->id;
|
||||||
|
|
|
@ -79,16 +79,18 @@ class LikePipeline implements ShouldQueue
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
if($status->uri === null && $status->object_url === null && $status->url === null) {
|
||||||
$notification = new Notification();
|
try {
|
||||||
$notification->profile_id = $status->profile_id;
|
$notification = new Notification();
|
||||||
$notification->actor_id = $actor->id;
|
$notification->profile_id = $status->profile_id;
|
||||||
$notification->action = 'like';
|
$notification->actor_id = $actor->id;
|
||||||
$notification->item_id = $status->id;
|
$notification->action = 'like';
|
||||||
$notification->item_type = "App\Status";
|
$notification->item_id = $status->id;
|
||||||
$notification->save();
|
$notification->item_type = "App\Status";
|
||||||
|
$notification->save();
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,18 +87,20 @@ class StatusReplyPipeline implements ShouldQueue
|
||||||
Cache::forget('status:replies:all:' . $reply->id);
|
Cache::forget('status:replies:all:' . $reply->id);
|
||||||
Cache::forget('status:replies:all:' . $status->id);
|
Cache::forget('status:replies:all:' . $status->id);
|
||||||
|
|
||||||
DB::transaction(function() use($target, $actor, $status) {
|
if($target->user_id && $target->domain === null) {
|
||||||
$notification = new Notification();
|
DB::transaction(function() use($target, $actor, $status) {
|
||||||
$notification->profile_id = $target->id;
|
$notification = new Notification();
|
||||||
$notification->actor_id = $actor->id;
|
$notification->profile_id = $target->id;
|
||||||
$notification->action = 'comment';
|
$notification->actor_id = $actor->id;
|
||||||
$notification->item_id = $status->id;
|
$notification->action = 'comment';
|
||||||
$notification->item_type = "App\Status";
|
$notification->item_id = $status->id;
|
||||||
$notification->save();
|
$notification->item_type = "App\Status";
|
||||||
|
$notification->save();
|
||||||
|
|
||||||
NotificationService::setNotification($notification);
|
NotificationService::setNotification($notification);
|
||||||
NotificationService::set($notification->profile_id, $notification->id);
|
NotificationService::set($notification->profile_id, $notification->id);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if($exists = Cache::get('status:replies:all:' . $reply->id)) {
|
if($exists = Cache::get('status:replies:all:' . $reply->id)) {
|
||||||
if($exists && $exists->count() == 3) {
|
if($exists && $exists->count() == 3) {
|
||||||
|
|
Loading…
Reference in a new issue