blob: caa1d760029f212d3b4c80789ee51358531a47d7 (
plain)
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
|
<?php
$options = json_decode($argv[1], true);
$_SERVER['DOCUMENT_ROOT'] = "..";
echo("Loading...\n");
$app = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/app.json"), true);
$system = $options["system"];
if ($app["other"]["id"] === $system) {
echo("Using authentication\n");
$ctx = stream_context_create([
'http' => [
'method' => 'GET',
'header' =>
"Authorization: " . $app["other"]["token"] . "\r\n"
]
]);
} else {
echo("Not using authentication\n");
$ctx = stream_context_create([
'http' => [
'method' => 'GET',
'headers' => "User-Agent: Mozilla/5.0 (+Cold-Haze/1.1)\r\n"
]
]);
}
echo("Fetching...\n");
sleep(1);
$data = file_get_contents("https://pluralkit.equestria.dev/v2/systems/$system/fronters", false, $ctx);
json_decode($data);
if (trim($data) !== "" && $data !== false && json_last_error() === JSON_ERROR_NONE) {
echo("Data is valid, saved it\n");
file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/$system/fronters.json", $data);
} else {
echo("Data is invalid: " . json_last_error_msg() . ": " . $data . "\n");
}
echo("Running Signal integration...\n");
chdir("/opt/peh/daemons");
if ($system === "gdapd") exec("nice -n 19 /usr/local/bin/node signal.js raindrops");
if ($system === "hrbom") exec("nice -n 19 /usr/local/bin/node signal.js moonglow");
if ($system !== "gdapd" && $system !== "hrbom") exec("nice -n 19 /usr/local/bin/node signal.js other");
|