forked from RaymiiOrg/certificate-expiry-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cron.php
164 lines (142 loc) · 5.3 KB
/
cron.php
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
// Copyright (C) 2015 Remy van Elst
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
error_reporting(E_ALL & ~E_NOTICE);
$result = array();
if (php_sapi_name() == "cli") {
foreach (glob( __DIR__ . "/functions/*.php") as $filename) {
require($filename);
}
$removal_queue = array();
$tmp_check_file = $check_file . ".tmp";
if (!copy($check_file, $tmp_check_file)) {
echo "Failed to copy $check_file to $tmp_check_file.\n";
break;
}
$file = file_get_contents($tmp_check_file);
if ($file === FALSE) {
$result['errors'][] = "Can't open database.";
}
$json_a = json_decode($file, true);
if ($json_a === null && json_last_error() !== JSON_ERROR_NONE) {
$result['errors'][] = "Can't read database: " . htmlspecialchars(json_last_error());
}
if (count($json_a) == 0) {
echo "Empty checklist.\n";
exit;
}
foreach ($json_a as $key => $value) {
$domain = $value['domain'];
$email = $value['email'];
echo "Domain: " . $domain . ".\n";
echo "Email: " . $email . ".\n";
$val_domain = validate_domains($domain);
if (count($val_domain['errors']) >= 1 ) {
$errors = $val_domain['errors'];
foreach ($errors as $error_value) {
echo "\t" . $error_value . ". \n";
}
send_error_mail($domain, $email, $errors);
$json_a[$key]['errors'] += 1;
$check_json = json_encode($json_a);
if(file_put_contents($check_file, $check_json, LOCK_EX)) {
echo "\tError count updated to " . $json_a[$key]['errors'] . ".\n";
} else {
echo "Can't write database.\n";
continue;
}
if ($json_a[$key]['errors'] >= 7) {
echo "\tToo many errors. Adding domain to removal queue.\n";
$removal_queue[] = $key;
}
continue;
}
$raw_chain = get_raw_chain($domain);
$counter = 0;
foreach ($raw_chain['chain'] as $chain_key => $chain_value) {
$counter += 1;
$cert_exp_date = cert_expiry_date($chain_value);
$cert_cn = cert_cn($chain_value);
$cert_expiry = cert_expiry($chain_value);
echo "\tCert Chain #" . $counter . ". Expiry Date: " . date("Y-m-d H:i:s T", $cert_exp_date) . ". Common Name: " . $cert_cn . "\n";
cert_expiry_emails($domain, $email, $cert_expiry, $chain_value);
}
$file = file_get_contents($check_file);
if ($file === FALSE) {
echo "\tCan't open database.\n";
continue;
}
$json_a = json_decode($file, true);
if ($json_a === null && json_last_error() !== JSON_ERROR_NONE) {
echo "\tCan't read database\n";
continue;
}
if ($json_a[$key]['errors'] != 0) {
$json_a[$key]['errors'] = 0;
$check_json = json_encode($json_a);
if(file_put_contents($check_file, $check_json, LOCK_EX)) {
echo "\tError count reset to 0.\n";
} else {
echo "Can't write database.\n";
}
}
echo "\n";
}
if ( count($removal_queue) != 0 ) {
echo "Processing removal queue.\n";
foreach ($removal_queue as $remove_key => $remove_value) {
$unsub_url = "http://" . $current_domain . "/unsubscribe.php?id=" . $remove_value;
$file = file_get_contents($unsub_url);
if ($file === FALSE) {
echo "\tRemoval Error.\n";
continue;
} else {
echo "\tRemoved $remove_value.\n";
}
}
}
// remove non-confirmed subs older than 7 days
$tmp_pre_check_file = $pre_check_file . ".tmp";
if (!copy($pre_check_file, $tmp_pre_check_file)) {
echo "Failed to copy $pre_check_file to $tmp_pre_check_file.\n";
}
$tmp_pre_file = file_get_contents($tmp_pre_check_file);
if ($tmp_pre_file === FALSE) {
echo "Can't open database.\n";
}
$tmp_pre_json_a = json_decode($tmp_pre_file, true);
if ($tmp_pre_json_a === null && json_last_error() !== JSON_ERROR_NONE) {
echo "Can't read database.\n";
}
if (count($tmp_pre_json_a) == 0) {
echo "Empty pre-checklist.\n";
exit;
}
foreach ($tmp_pre_json_a as $pre_key => $pre_value) {
$today = strtotime(date("Y-m-d"));
$pre_add_date = strtotime(date("Y-m-d",$pre_value['pre_add_date']));
$pre_add_diff = $today - $pre_add_date;
if ($pre_add_diff > "604800") {
unset($tmp_pre_json_a[$pre_key]);
$tmp_pre_json = json_encode($tmp_pre_json_a);
if(file_put_contents($pre_check_file, $tmp_pre_json, LOCK_EX)) {
echo "Subscription for " . $pre_value['domain'] . " from " . $pre_value['email'] . " older than 7 days. Removing from subscription list.\n";
} else {
echo "Failed to remove subscription for " . $pre_value['domain'] . " from " . $pre_value['email'] . " older than 7 days from subscription list.\n";
}
}
}
} else {
header('HTTP/1.0 301 Moved Permanently');
header('Location: /');
}
?>