silverstripe-environmentcheck/src/Checks/DatabaseCheck.php
Robbie Averill b9af2d0734 FIX Update config API, Logger alias, dotenv config, remove PHP 5.5, other fixes
Remove PHP 5.5 from Travis configuration. Dotenv used for environment management now,
examples and tests updated to use putenv instead of define. Logger alias update to
LoggerInterface. Update mutable config API calls. Replace array declaration with
short version: []. Update license year.
2017-05-04 16:11:25 +12:00

51 lines
1.1 KiB
PHP

<?php
namespace SilverStripe\EnvironmentCheck\Checks;
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
use SilverStripe\ORM\DB;
/**
* Check that the connection to the database is working, by ensuring that the table exists and that
* the table contains some records.
*
* @package environmentcheck
*/
class DatabaseCheck implements EnvironmentCheck
{
/**
* @var string
*/
protected $checkTable;
/**
* By default, Member will be checked.
*
* @param string $checkTable
*/
public function __construct($checkTable = 'Member')
{
$this->checkTable = $checkTable;
}
/**
* {@inheritDoc}
*
* @return array
*/
public function check()
{
if (!DB::get_schema()->hasTable($this->checkTable)) {
return [EnvironmentCheck::ERROR, "$this->checkTable not present in the database"];
}
$count = DB::query("SELECT COUNT(*) FROM \"$this->checkTable\"")->value();
if ($count > 0) {
return [EnvironmentCheck::OK, ''];
}
return [EnvironmentCheck::WARNING, "$this->checkTable queried ok but has no records"];
}
}