Added main execution point for syncing the database

This commit is contained in:
Zi Xing 2021-12-20 15:32:32 -05:00
parent a7ef95c15d
commit 121205da66
2 changed files with 45 additions and 2 deletions

38
src/khm/main Normal file
View File

@ -0,0 +1,38 @@
<?php
require 'ppm';
require 'net.intellivoid.khm';
$inline_memory = [
'tor_last_sync' => 0
];
$khm = new \khm\khm();
print('KHM Automated Processing System v1.0' . PHP_EOL);
while(true)
{
print('Connecting to Database' . PHP_EOL);
$khm->connectDatabase();
if(time() - $inline_memory['tor_last_sync'] > 600)
{
print('Syncing Tor network...');
try
{
$khm->syncOnionRelays();
$inline_memory['tor_last_sync'] = time();
print('OK' . PHP_EOL);
}
catch(Exception $e)
{
print('Failed to sync tor network, ' . $e->getMessage() . PHP_EOL);
}
}
print('Disconnecting from Database' . PHP_EOL);
$khm->disconnectDatabase();
print('Sleeping for 180 seconds' . PHP_EOL);
sleep(180);
}

View File

@ -35,7 +35,11 @@
],
"configuration": {
"autoload_method": "generated_spl",
"main": null,
"main": {
"execution_point": "main",
"create_symlink": true,
"name": "khm_sync"
},
"post_installation": [],
"pre_installation": []
}
@ -267,6 +271,7 @@
"data/asn.json",
"data/mobile2.regex",
"data/regexes.json",
"data/mobile1.regex"
"data/mobile1.regex",
"main"
]
}