forked from pkp/ojs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pkp#4332 from touhidurabir/i9678_main
pkp/pkp-lib#9678 Replacing task schedular with laravel scheduler
- Loading branch information
Showing
19 changed files
with
144 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?php | ||
|
||
/** | ||
* @file classes/scheduler/Scheduler.php | ||
* | ||
* Copyright (c) 2024 Simon Fraser University | ||
* Copyright (c) 2024 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @class Scheduler | ||
* | ||
* @brief Core scheduler class, responsible to register scheduled tasks specific for the application | ||
*/ | ||
|
||
namespace APP\scheduler; | ||
|
||
use APP\tasks\OpenAccessNotification; | ||
use APP\tasks\SubscriptionExpiryReminder; | ||
use APP\tasks\UsageStatsLoader; | ||
use PKP\scheduledTask\PKPScheduler; | ||
use PKP\task\DepositDois; | ||
use PKP\task\EditorialReminders; | ||
use PKP\task\ReviewReminder; | ||
|
||
class Scheduler extends PKPScheduler | ||
{ | ||
/** | ||
* @copydoc \PKP\scheduledTask\PKPScheduler::registerSchedules | ||
*/ | ||
public function registerSchedules(): void | ||
{ | ||
parent::registerSchedules(); | ||
|
||
$this | ||
->schedule | ||
->call(fn () => (new ReviewReminder())->execute()) | ||
->hourly() | ||
->name(ReviewReminder::class) | ||
->withoutOverlapping(); | ||
|
||
$this | ||
->schedule | ||
->call(fn () => (new DepositDois())->execute()) | ||
->hourly() | ||
->name(DepositDois::class) | ||
->withoutOverlapping(); | ||
|
||
$this | ||
->schedule | ||
->call(fn () => (new EditorialReminders())->execute()) | ||
->daily() | ||
->name(EditorialReminders::class) | ||
->withoutOverlapping(); | ||
|
||
$this | ||
->schedule | ||
->call(fn () => (new SubscriptionExpiryReminder())->execute()) | ||
->daily() | ||
->name(SubscriptionExpiryReminder::class) | ||
->withoutOverlapping(); | ||
|
||
$this | ||
->schedule | ||
->call(fn () => (new UsageStatsLoader([]))->execute()) | ||
->daily() | ||
->name(UsageStatsLoader::class) | ||
->withoutOverlapping(); | ||
|
||
$this | ||
->schedule | ||
->call(fn () => (new OpenAccessNotification())->execute()) | ||
->hourly() | ||
->name(OpenAccessNotification::class) | ||
->withoutOverlapping(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule pkp
updated
30 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule acron
deleted from
cb707f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.