Tasks.php in Zircon Profile 8
File
core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
View source
<?php
namespace Drupal\Core\Database\Driver\sqlite\Install;
use Drupal\Core\Database\Database;
use Drupal\Core\Database\Driver\sqlite\Connection;
use Drupal\Core\Database\DatabaseNotFoundException;
use Drupal\Core\Database\Install\Tasks as InstallTasks;
class Tasks extends InstallTasks {
protected $pdoDriver = 'sqlite';
public function name() {
return t('SQLite');
}
public function minimumVersion() {
return '3.6.8';
}
public function getFormOptions(array $database) {
$form = parent::getFormOptions($database);
unset($form['username'], $form['password'], $form['advanced_options']['host'], $form['advanced_options']['port']);
$form['database']['#title'] = t('Database file');
$form['database']['#description'] = t('The absolute path to the file where @drupal data will be stored. This must be writable by the web server and should exist outside of the web root.', array(
'@drupal' => drupal_install_profile_distribution_name(),
));
$default_database = \Drupal::service('site.path') . '/files/.ht.sqlite';
$form['database']['#default_value'] = empty($database['database']) ? $default_database : $database['database'];
return $form;
}
protected function connect() {
try {
db_set_active();
Database::getConnection();
$this
->pass('Drupal can CONNECT to the database ok.');
} catch (\Exception $e) {
if ($e
->getCode() == Connection::DATABASE_NOT_FOUND) {
$connection_info = Database::getConnectionInfo();
$database = $connection_info['default']['database'];
$connection_info['default']['database'] = drupal_tempnam(sys_get_temp_dir(), 'sqlite');
Database::removeConnection('default');
Database::addConnectionInfo('default', 'default', $connection_info['default']);
try {
Database::getConnection()
->createDatabase($database);
Database::closeConnection();
Database::removeConnection('default');
$connection_info['default']['database'] = $database;
Database::addConnectionInfo('default', 'default', $connection_info['default']);
Database::getConnection();
$this
->pass('Drupal can CONNECT to the database ok.');
} catch (DatabaseNotFoundException $e) {
$this
->fail(t('Database %database not found. The server reports the following message when attempting to create the database: %error.', array(
'%database' => $database,
'%error' => $e
->getMessage(),
)));
}
}
else {
$this
->fail(t('Failed to connect to your database server. The server reports the following message: %error.<ul><li>Is the database server running?</li><li>Does the database exist, and have you entered the correct database name?</li><li>Have you entered the correct username and password?</li><li>Have you entered the correct database hostname?</li></ul>', array(
'%error' => $e
->getMessage(),
)));
return FALSE;
}
}
return TRUE;
}
}
Classes
Name |
Description |
Tasks |
Specifies installation tasks for SQLite databases. |