-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathupdate-project-statuses
executable file
·106 lines (93 loc) · 3.12 KB
/
update-project-statuses
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/php
<?
require_once('/standardebooks.org/web/lib/Core.php');
use Safe\DateTimeImmutable;
use function Safe\file_get_contents;
use function Safe\sleep;
/**
* Iterate over all `Project`s that are in progress or stalled and get their latest GitHub commit.
*
* If the last activity was more than 30 days old, mark the `Project` as stalled and send a reminder email.
*
* 60 days after the reminder email, the `Project` is marked as abandoned if there has not been any activity since.
*
* If a `Project` stalls and is re-activated, the process will repeat except no further reminder emails will be sent.
*/
/** @var array<Project> $projects */
$projects = Project::GetAllByStatuses([Enums\ProjectStatusType::InProgress, Enums\ProjectStatusType::AwaitingReview, Enums\ProjectStatusType::Reviewed, Enums\ProjectStatusType::Stalled]);
$apiKey = trim(file_get_contents('/standardebooks.org/config/secrets/[email protected]'));
$oldestStalledTimestamp = new DateTimeImmutable('60 days ago');
$oldestAbandonedTimestamp = new DateTimeImmutable('60 days ago');
foreach($projects as $project){
try{
$project->FetchLastDiscussionTimestamp();
}
catch(Exceptions\AppException $ex){
Log::WriteErrorLogEntry($ex->getMessage());
}
try{
$project->FetchLastCommitTimestamp($apiKey);
}
catch(Exceptions\AppException $ex){
// 404, continue.
}
if($project->IsStatusAutomaticallyUpdated){
// Check if this project is in review.
if($project->Status == Enums\ProjectStatusType::InProgress){
try{
$project->FetchReviewStatus();
}
catch(Exceptions\AppException){
// 404, continue.
}
}
if(
(
$project->Status == Enums\ProjectStatusType::InProgress
||
$project->Status == Enums\ProjectStatusType::AwaitingReview
||
$project->Status == Enums\ProjectStatusType::Reviewed
)
&&
$project->LastActivityTimestamp < $oldestStalledTimestamp
){
// An active `Project` has stalled.
$project->Status = Enums\ProjectStatusType::Stalled;
// Send an email to the producer.
$project->SendReminder(Enums\ProjectReminderType::Stalled);
}
elseif(
$project->Status == Enums\ProjectStatusType::Stalled
&&
$project->LastActivityTimestamp >= $oldestStalledTimestamp
){
// Revive previously-stalled `Project`s.
$project->Status = Enums\ProjectStatusType::InProgress;
}
elseif(
$project->Status == Enums\ProjectStatusType::Stalled
&&
$project->LastActivityTimestamp < $oldestStalledTimestamp
&&
$project->GetReminder(Enums\ProjectReminderType::Stalled)?->Created < $oldestAbandonedTimestamp
){
// A stalled `Project` is now abandoned.
$project->Status = Enums\ProjectStatusType::Abandoned;
// Set the corresponding `EbookPlaceholder` to not be "in progress" any more.
if($project->Ebook->EbookPlaceholder !== null){
try{
$project->Ebook->EbookPlaceholder->IsInProgress = false;
$project->Ebook->EbookPlaceholder->Save();
}
catch(Exceptions\InvalidEbookPlaceholderException){
// Pass.
}
}
// Send a notification to the producer.
$project->SendReminder(Enums\ProjectReminderType::Abandoned);
}
}
$project->Save();
sleep(5);
}