1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Merge pull request #1188 from lohanidamodar/fix-clamav-health-status

fixing clamav status when clamav is not running
This commit is contained in:
Eldad A. Fux 2021-05-25 23:06:10 +03:00 committed by GitHub
commit d9a0765efc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@ use Utopia\Storage\Device\Local;
use Utopia\Storage\Storage;
use Appwrite\ClamAV\Network;
use Appwrite\Event\Event;
use RuntimeException;
App::get('/v1/health')
->desc('Get HTTP')
@ -262,11 +263,17 @@ App::get('/v1/health/anti-virus')
$antiVirus = new Network(App::getEnv('_APP_STORAGE_ANTIVIRUS_HOST', 'clamav'),
(int) App::getEnv('_APP_STORAGE_ANTIVIRUS_PORT', 3310));
$response->json([
'status' => (@$antiVirus->ping()) ? 'online' : 'offline',
'version' => @$antiVirus->version(),
]);
try {
$response->json([
'status' => (@$antiVirus->ping()) ? 'online' : 'offline',
'version' => @$antiVirus->version(),
]);
} catch( RuntimeException $e) {
$response->json([
'status' => 'offline',
'version' => '',
]);
}
});
App::get('/v1/health/stats') // Currently only used internally