這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Centinel API

外掛說明

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 off-site database backups and application log checks.

Requirements

  • PHP 5.6+
  • WordPress 4.4+

Usage

It’s highly recommended to use this plugin only on websites that use HTTPS!

After installing the plugin, go to Settings > Centinel API Settings in your WordPress Admin zone. From there, copy privateKey, encryptionKey and routePrefix to Centinel, and you’re ready to schedule your application log checks and database backups.

Settings

  • Private Key – random string, used for authentication
  • Encryption Key – random string, used for additional security layer
  • Route Prefix – random string, prefixing the API routes
  • Log Routes Enabled – disable if you do not wish to send logs to Centinel
  • Database Routes Enabled – disable if you do not wish to send database dumps to Centinel
  • Disable Time Based Authorization – check this option 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 error
  • Zip Password – password used when zipping the database dump. Make sure to save the Zip Password so you can restore your database in case of server crash
  • Dump Folder – folder where the database dumps are going to be created. All database dumps, along with this folder, are always deleted after being sent to Centinel.
  • MySQL Settings – various database dump options

All MySQL settings are optional. If you’re developing on Windows (WAMP, for example), you may want to set your Dump Binary Path to something like 'C:\Progra~1\wamp\bin\mysql\mysql5.7.18\bin'.

Some MySQL settings will be ignored for PHP 5.6. For more details check Spatie DB Dumper v1.5.1

For details on how to use the dump options check the installed version of the package. For PHP 7 that will be Spatie DB Dumper v2.9

API Routes

  • [POST] /{routePrefix}/create-log
  • [POST] /{routePrefix}/download-log
  • [POST] /{routePrefix}/dump-database
  • [POST] /{routePrefix}/download-database

For more details check /app/Controllers/CentinelApiApiController.php controller.

Application Logs

By default, WordPress does not write any errors to the log file. To change this, you can open up wp-config.php and set the following options:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);

You can read more about these options in WordPress documentation

Database Backups

Spatie DB Dumper is used to make database dumps. MySQL is supported, and requires mysqldump utility.

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 Check Zip Availability in Centinel API Settings 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, unchecking Database Routes Enabled in the settings.

Authentication

For details check /app/Middleware/CentinelApiAuthorizeRequest.php middleware.

License

WordPress Centinel API is open-sourced software licensed under the MIT license.

安裝方式

  • upload the plugin files to the /wp-content/plugins/centinel-api directory, or install the plugin through the WordPress plugins screen directly
  • activate the plugin through the ‘Plugins’ screen in WordPress

常見問題集

Installation Instructions
  • upload the plugin files to the /wp-content/plugins/centinel-api directory, or install the plugin through the WordPress plugins screen directly
  • activate the plugin through the ‘Plugins’ screen in WordPress

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈Centinel API〉的開發相關工作。

參與者

將〈Centinel API〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0.0

  • Initial release