Update AccountService

pull/5172/head
Daniel Supernault 9 months ago
parent 165df0ca52
commit d339b5c251
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -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;

@ -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;
}

Loading…
Cancel
Save