-
-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathConsoleSettings.php
More file actions
178 lines (159 loc) · 5.69 KB
/
ConsoleSettings.php
File metadata and controls
178 lines (159 loc) · 5.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
namespace Drupal\Console\Bootstrap;
use Drupal\Component\Utility\Crypt;
use Drupal\Core\Database\Database;
/**
* Read only settings that are initialized with the class.
*
* @ingroup utility
*/
final class ConsoleSettings {
/**
* Array with the settings.
*
* @var array
*/
private $storage = [];
/**
* Singleton instance.
*
* @var \Drupal\Console\Bootstrap/ConsoleSettings
*/
private static $instance = NULL;
/**
* Constructor.
*
* @param array $settings
* Array with the settings.
*/
public function __construct(array $settings) {
$this->storage = $settings;
self::$instance = $this;
}
/**
* Returns the settings instance.
*
* A singleton is used because this class is used before the container is
* available.
*
* @return \Drupal\Console\Bootstrap\ConsoleSettings
*
* @throws \BadMethodCallException
* Thrown when the settings instance has not been initialized yet.
*/
public static function getInstance() {
if (self::$instance === NULL) {
throw new \BadMethodCallException('ConsoleSettings::$instance is not initialized yet. Whatever you are trying to do, it might be too early for that. You could call ConsoleSettings::initialize(), but it is probably better to wait until it is called in the regular way. Also check for recursions.');
}
return self::$instance;
}
/**
* Protects creating with clone.
*/
private function __clone() {
}
/**
* Prevents settings from being serialized.
*/
public function __sleep() {
throw new \LogicException('ConsoleSettings can not be serialized. This probably means you are serializing an object that has an indirect reference to the ConsoleSettings object. Adjust your code so that is not necessary.');
}
/**
* Returns a setting.
*
* ConsoleSettings can be set in settings.php in the $settings array and requested
* by this function. ConsoleSettings should be used over configuration for read-only,
* possibly low bootstrap configuration that is environment specific.
*
* @param string $name
* The name of the setting to return.
* @param mixed $default
* (optional) The default value to use if this setting is not set.
*
* @return mixed
* The value of the setting, the provided default if not set.
*/
public static function get($name, $default = NULL) {
return isset(self::$instance->storage[$name]) ? self::$instance->storage[$name] : $default;
}
/**
* Bootstraps settings.php and the ConsoleSettings singleton.
*
* @param string $app_root
* The app root.
* @param string $site_path
* The current site path.
* @param \Composer\Autoload\ClassLoader $class_loader
* The class loader that is used for this request. Passed by reference and
* exposed to the local scope of settings.php, so as to allow it to be
* decorated with Symfony's ApcClassLoader, for example.
*
* @see default.settings.php
*/
public static function initialize($app_root, $site_path, &$class_loader) {
// Export these settings.php variables to the global namespace.
global $config_directories, $config;
$settings = [];
$config = [];
$databases = [];
if (is_readable($app_root . '/' . $site_path . '/settings.php')) {
require $app_root . '/' . $site_path . '/settings.php';
}
// If datases is not set, check if drushrc.php contains valid setting (Aegir).
$items = array(
'driver' => 'db_type',
'database' => 'db_name',
'username'=> 'db_user',
'password' => 'db_passwd',
'host' => 'db_host',
'port' => 'db_port',
);
$db_settings_fail = TRUE;
foreach ($items as $key => $item) {
if (!empty($databases['default']['default'][$key])) {
$db_settings_fail = FALSE;
break;
}
}
if ($db_settings_fail) {
if (is_readable($app_root . '/' . $site_path . '/drushrc.php')) {
require $app_root . '/' . $site_path . '/drushrc.php';
foreach ($items as $key => $item) {
if (!empty($options[$item])) {
$databases['default']['default'][$key] = $options[$item];
}
}
}
}
// Initialize Database.
Database::setMultipleConnectionInfo($databases);
// Initialize ConsoleSettings.
new ConsoleSettings($settings);
}
/**
* Generates a prefix for APCu user cache keys.
*
* A standardized prefix is useful to allow visual inspection of an APCu user
* cache. By default, this method will produce a unique prefix per site using
* the hash salt. If the setting 'apcu_ensure_unique_prefix' is set to FALSE
* then if the caller does not provide a $site_path only the Drupal root will
* be used. This allows WebTestBase to use the same prefix ensuring that the
* number of APCu items created during a full test run is kept to a minimum.
* Additionally, if a multi site implementation does not use site specific
* module directories setting apcu_ensure_unique_prefix would allow the sites
* to share APCu cache items.
*
* @param $identifier
* An identifier for the prefix. For example, 'class_loader' or
* 'cache_backend'.
*
* @return string
* The prefix for APCu user cache keys.
*/
public static function getApcuPrefix($identifier, $root, $site_path = '') {
if (static::get('apcu_ensure_unique_prefix', TRUE)) {
return 'drupal.' . $identifier . '.' . \Drupal::VERSION . '.' . static::get('deployment_identifier') . '.' . hash_hmac('sha256', $identifier, static::get('hash_salt') . '.' . $root . '/' . $site_path);
}
return 'drupal.' . $identifier . '.' . \Drupal::VERSION . '.' . static::get('deployment_identifier') . '.' . Crypt::hashBase64($root . '/' . $site_path);
}
}