gtcrais/laravel-centinel-api is a Laravel package for laravel centinel api.
It currently has 0 GitHub stars and 46 downloads on Packagist (latest version v2.4.0).
Install it with composer require gtcrais/laravel-centinel-api.
Discover more Laravel packages by gtcrais
or browse all Laravel packages to compare alternatives.
Last updated
This package provides API for downloading the application log file, and dumping and downloading the database. It ships with authentication middleware which protects the API routes.
Centinel API is designed to work in combination with Centinel - centralized application management system.
For Laravel 4.2 use Centinel API v1.2
"gtcrais/laravel-centinel-api": "2.3.*" to your composer.json and run composer update<=5.4 add GTCrais\LaravelCentinelApi\LaravelCentinelApiServiceProvider::class, to providers array in /app/config/app.php and run composer dump-autoloadphp artisan centinel-api:setup"gtcrais/laravel-centinel-api": "2.3.*" to your composer.json and run composer update$app->withFacades(); in /bootstrap/app.php$app->configure('centinelApi'); to /bootstrap/app.php. This will load Centinel API configuration$app->register(GTCrais\LaravelCentinelApi\LumenCentinelApiServiceProvider::class); to /bootstrap/app.php below config file registrationphp artisan centinel-api:setuproutePrefix to VerifyCsrfToken middleware's $except array. Example:protected $except = [
'Hts71OwsRTwjXDb5Kdp5zk5l6KsvEz7Q/*' // Note the /* at the end
];
Centinel API will first look for database connection configuration in /config/database.php. If it's not available there,
it will look in .env file. Make sure one of these options is available if you wish to use the database dump functionality.
It's highly recommended to use this plugin only on websites that use HTTPS!
After going through the installation process you will find centinelApi.php configuration file in /config directory.
From there, copy privateKey, encryptionKey and routePrefix to Centinel, and you're ready to schedule your application log checks and database backups.
privateKey - random string, used for authenticationencryptionKey - random string, used for additional security layerroutePrefix - random string, prefixing the API routesenabledRoutes - if you only wish to expose a part of the API, you can disable either Log or Database routes heredisableTimeBasedAuthorization - set to true in case of your server's and Centinel's datetime being out of sync which results in Request time mismatch or Too many API calls errorzipPassword - password used when zipping the database dump. Make sure to save the Zip Password so you can restore your database in case of server crashdatabase - database settings and optionsAll of the database options except for connection are optional.
Some of the database options are not available for Laravel/Lumen 5.1, and on PHP 5 (regardless of the framework version). For more details check Spatie DB Dumper v1.5.1
For details on how to use the options check the installed version of the package. For Laravel/Lumen 5.2+ on PHP 7 that will be Spatie DB Dumper v2.9
To ignore a database setting/option, set it to null.
/{routePrefix}/create-log/{routePrefix}/download-log/{routePrefix}/dump-database/{routePrefix}/download-databaseFor more details check /Controllers/CentinelApiController.php controller.
Spatie DB Dumper is used to make database dumps. MySQL and PostgreSQL
are supported, and require mysqldump and pg_dump utilities, respectively.
Additionally, on Laravel/Lumen 5.2+ applications running on PHP 7, Sqlite and MongoDB are supported, and require
sqlite3 and mongodump utilities, respectively.
Centinel API will try to zip and password protect database dumps before sending them to Centinel. In case you're using PHP 7.2+, it will use
PHP's native ZipArchive class to zip and encrypt the database. Otherwise, it will look for 7-Zip and Zip libraries to do so. If no option
is available, dumps will be sent without being zipped and password protected.
Run php artisan centinel-api:check-zip to see which library is available on your server. Note that Zip encryption algorithm is much less
secure than that of ZipArchive and 7-Zip. Ultimately it is up to you to decide which level of security is satisfactory. You can always opt out of
backing up your database by disabling database backups in Centinel, and additionally, commenting out DatabaseRoutes in the
enabledRoutes config option.
For details check /Middleware/AuthorizeCentinelApiRequest.php middleware.
Laravel Centinel API is open-sourced software licensed under the MIT license.