Skip to content

Commit

Permalink
Merge pull request coral-erm#9 from jcuenod/unified_installer
Browse files Browse the repository at this point in the history
Merge in array_column fix (fixes coral-erm#8)
  • Loading branch information
jeffnm authored Oct 17, 2016
2 parents 0cc5b3e + 104110c commit 755f5d6
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 1 deletion.
115 changes: 115 additions & 0 deletions common/array_column.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<?php
/**
* This file is part of the array_column library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey (http://benramsey.com)
* @license http://opensource.org/licenses/MIT MIT
*/

if (!function_exists('array_column')) {
/**
* Returns the values from a single column of the input array, identified by
* the $columnKey.
*
* Optionally, you may provide an $indexKey to index the values in the returned
* array by the values from the $indexKey column in the input array.
*
* @param array $input A multi-dimensional array (record set) from which to pull
* a column of values.
* @param mixed $columnKey The column of values to return. This value may be the
* integer key of the column you wish to retrieve, or it
* may be the string key name for an associative array.
* @param mixed $indexKey (Optional.) The column to use as the index/keys for
* the returned array. This value may be the integer key
* of the column, or it may be the string key name.
* @return array
*/
function array_column($input = null, $columnKey = null, $indexKey = null)
{
// Using func_get_args() in order to check for proper number of
// parameters and trigger errors exactly as the built-in array_column()
// does in PHP 5.5.
$argc = func_num_args();
$params = func_get_args();

if ($argc < 2) {
trigger_error("array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING);
return null;
}

if (!is_array($params[0])) {
trigger_error(
'array_column() expects parameter 1 to be array, ' . gettype($params[0]) . ' given',
E_USER_WARNING
);
return null;
}

if (!is_int($params[1])
&& !is_float($params[1])
&& !is_string($params[1])
&& $params[1] !== null
&& !(is_object($params[1]) && method_exists($params[1], '__toString'))
) {
trigger_error('array_column(): The column key should be either a string or an integer', E_USER_WARNING);
return false;
}

if (isset($params[2])
&& !is_int($params[2])
&& !is_float($params[2])
&& !is_string($params[2])
&& !(is_object($params[2]) && method_exists($params[2], '__toString'))
) {
trigger_error('array_column(): The index key should be either a string or an integer', E_USER_WARNING);
return false;
}

$paramsInput = $params[0];
$paramsColumnKey = ($params[1] !== null) ? (string) $params[1] : null;

$paramsIndexKey = null;
if (isset($params[2])) {
if (is_float($params[2]) || is_int($params[2])) {
$paramsIndexKey = (int) $params[2];
} else {
$paramsIndexKey = (string) $params[2];
}
}

$resultArray = array();

foreach ($paramsInput as $row) {
$key = $value = null;
$keySet = $valueSet = false;

if ($paramsIndexKey !== null && array_key_exists($paramsIndexKey, $row)) {
$keySet = true;
$key = (string) $row[$paramsIndexKey];
}

if ($paramsColumnKey === null) {
$valueSet = true;
$value = $row;
} elseif (is_array($row) && array_key_exists($paramsColumnKey, $row)) {
$valueSet = true;
$value = $row[$paramsColumnKey];
}

if ($valueSet) {
if ($keySet) {
$resultArray[$key] = $value;
} else {
$resultArray[] = $value;
}
}

}

return $resultArray;
}

}
10 changes: 9 additions & 1 deletion install/installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,13 @@ function __construct() {
private function getKeyFromUid($test_uid, $haystack = null)
{
$haystack = $haystack === null ? $this->checklist : $haystack;

/**
* TODO: remove this shim when we stop caring about PHP <= 5.5.0 being
* able to *run* the installer. Note that this is needed before we
* test for meeting system requirements and the installer needs
* to be more generous about system reqs than CORAL as a whole.
*/
require_once("common/array_column.php");
$key = array_search($test_uid, array_column($haystack, 'uid'));
if ($key === false)
throw new OutOfBoundsException("Test '$test_uid' not found in checklist.", self::ERR_MODULE_DOES_NOT_EXIST);
Expand All @@ -70,6 +76,7 @@ private function getKeyFromUid($test_uid, $haystack = null)
}
public function getRequiredProviders($what_for = self::REQUIRED_FOR_INSTALL)
{
require_once("common/array_column.php");
return array_column(array_filter($this->checklist, function($item) use ($what_for) {
return isset($item["required_for"]) && in_array($what_for, $item["required_for"]);
}), "uid");
Expand Down Expand Up @@ -183,6 +190,7 @@ public function runTestForResult($test_uid, $version, $required_for = [])

$bundle = $this->checklist[$key]["bundle"]($version);
foreach ($this->getDependencies($test_uid, $bundle) as $dependency) {
require_once("common/array_column.php");
$dep_key = array_search($dependency, array_column($this->checklist, 'uid'));
if ($dep_key === false)
{
Expand Down

0 comments on commit 755f5d6

Please sign in to comment.