Update AccountService

This commit is contained in:
Daniel Supernault 2024-06-11 23:35:39 -06:00
parent 165df0ca52
commit d339b5c251
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
2 changed files with 4 additions and 6 deletions

View File

@ -3403,10 +3403,9 @@ class ApiV1Controller extends Controller
$limitKey = 'compose:rate-limit:store:'.$user->id;
$limitTtl = now()->addMinutes(15);
$limitReached = Cache::remember($limitKey, $limitTtl, function () use ($user) {
$minId = SnowflakeService::byDate(now()->subDays(1));
$dailyLimit = Status::whereProfileId($user->profile_id)
->whereNull('in_reply_to_id')
->whereNull('reblog_of_id')
->where('created_at', '>', now()->subDays(1))
->where('id', '>', $minId)
->count();
return $dailyLimit >= 1000;

View File

@ -202,15 +202,14 @@ class AccountService
}
$count = Status::whereProfileId($id)
->whereNull('in_reply_to_id')
->whereNull('reblog_of_id')
->whereNull(['in_reply_to_id','reblog_of_id'])
->whereIn('scope', ['public', 'unlisted', 'private'])
->count();
$profile->status_count = $count;
$profile->save();
Cache::put($key, 1, 900);
Cache::put($key, 1, 259200);
return true;
}