Version 1
[yaffs-website] / vendor / drush / drush / commands / runserver / runserver-prepend.php
diff --git a/vendor/drush/drush/commands/runserver/runserver-prepend.php b/vendor/drush/drush/commands/runserver/runserver-prepend.php
new file mode 100644 (file)
index 0000000..48802ee
--- /dev/null
@@ -0,0 +1,68 @@
+<?php
+
+// We set the base_url so that Drupal generates correct URLs for runserver
+// (e.g. http://127.0.0.1:8888/...), but can still select and serve a specific
+// site in a multisite configuration (e.g. http://mysite.com/...).
+$base_url = runserver_env('RUNSERVER_BASE_URL');
+
+// Complete $_GET['q'] for Drupal 6 with built in server
+// - this uses the Drupal 7 method.
+if (!isset($_GET['q']) && isset($_SERVER['REQUEST_URI'])) {
+    // This request is either a clean URL, or 'index.php', or nonsense.
+    // Extract the path from REQUEST_URI.
+    $request_path = strtok($_SERVER['REQUEST_URI'], '?');
+    $base_path_len = strlen(rtrim(dirname($_SERVER['SCRIPT_NAME']), '\/'));
+    // Unescape and strip $base_path prefix, leaving q without a leading slash.
+  $_GET['q'] = substr(urldecode($request_path), $base_path_len + 1);
+}
+
+// We hijack filter_init (which core filter module does not implement) as
+// a convenient place to affect early changes.
+if (!function_exists('filter_init')) {
+  // Check function_exists as a safety net in case it is added in future.
+  function filter_init() {
+    global $conf, $user;
+    // Inject values into the $conf array - will apply to all sites.
+    // This can be a useful place to apply generic development settings.
+    $conf_inject = unserialize(urldecode(runserver_env('RUNSERVER_CONF')));
+    // Merge in the injected conf, overriding existing items.
+    $conf = array_merge($conf, $conf_inject);
+  }
+}
+
+// We hijack system_watchdog (which core system module does not implement) as
+// a convenient place to capture logs.
+if (!function_exists('system_watchdog')) {
+  // Check function_exists as a safety net in case it is added in future.
+  function system_watchdog($log_entry = array()) {
+    // Drupal <= 7.x defines VERSION. Drupal 8 defines \Drupal::VERSION instead.
+    if (defined('VERSION')) {
+      $uid = $log_entry['user']->uid;
+    }
+    else {
+      $uid = $log_entry['user']->id();
+    }
+    $message = strtr('Watchdog: !message | severity: !severity | type: !type | uid: !uid | !ip | !request_uri | !referer | !link', array(
+      '!message'     => strip_tags(!isset($log_entry['variables']) ? $log_entry['message'] : strtr($log_entry['message'], $log_entry['variables'])),
+      '!severity'    => $log_entry['severity'],
+      '!type'        => $log_entry['type'],
+      '!ip'          => $log_entry['ip'],
+      '!request_uri' => $log_entry['request_uri'],
+      '!referer'     => $log_entry['referer'],
+      '!uid'         => $uid,
+      '!link'        => strip_tags($log_entry['link']),
+    ));
+    error_log($message);
+  }
+}
+
+// Get a $_SERVER key, or equivalent environment variable
+// if it is not set in $_SERVER.
+function runserver_env($key) {
+  if (isset($_SERVER[$key])) {
+    return $_SERVER[$key];
+  }
+  else {
+    return getenv($key);
+  }
+}