mirror of
https://github.com/projectsend/projectsend.git
synced 2026-09-18 17:45:09 +00:00
c21658f6f7
Staff can give a client an expiry date on the create and edit screens, and through /api/v1/clients. When the date passes, the client is refused at sign-in and on their next request, and their API access ends too. Files and history stay, and a later date (or none) brings them back. Access is checked through one predicate, User::maySignIn(), at every door: sign-in, the web session, API tokens and the two-factor challenge. An hourly sweep also switches `active` off, so the list, its filter and seat counts agree. The sweep is not what enforces it, so a scheduler that is not running cannot keep an account open. An account cannot be active with a date that has passed. Reactivating an expired client needs a new date in the same save. The day-means-end-of-day-where-you-are rule moved out of FileExpiry into a shared DateInput, so file and account expiry read dates the same way. Requested by @Drardollan in #1310.
30 lines
1.4 KiB
PHP
30 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
Schedule::command('projectsend:purge-erasures')->daily();
|
|
// Hourly, not daily: this one frees disk that an account is holding
|
|
// against its own upload limits, so the gap between a session going stale
|
|
// and the sweep noticing is a gap where somebody cannot upload. Daily made
|
|
// that gap up to two days wide.
|
|
Schedule::command('projectsend:purge-stale-uploads')->hourly();
|
|
// Hourly for the same reason: an expired client still marked active holds
|
|
// a seat on a managed plan. Access itself does not wait for this — see
|
|
// User::maySignIn().
|
|
Schedule::command('projectsend:expire-client-accounts')->hourly();
|
|
Schedule::command('projectsend:purge-zip-downloads')->daily();
|
|
Schedule::command('projectsend:check-for-updates')->daily();
|
|
Schedule::command('projectsend:fetch-news')->daily();
|
|
Schedule::command('projectsend:purge-expired-files')->daily();
|
|
Schedule::command('projectsend:purge-orphan-files')->daily();
|
|
Schedule::command('projectsend:purge-api-request-logs')->daily();
|
|
Schedule::command('projectsend:purge-failed-jobs')->daily();
|
|
Schedule::command('projectsend:purge-notifications')->daily();
|
|
Schedule::command('projectsend:refresh-mail-oauth-tokens')->daily();
|