functions.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. <?php
  2. namespace Aws;
  3. use GuzzleHttp\Client;
  4. use Psr\Http\Message\RequestInterface;
  5. use GuzzleHttp\ClientInterface;
  6. use GuzzleHttp\Promise\FulfilledPromise;
  7. //-----------------------------------------------------------------------------
  8. // Functional functions
  9. //-----------------------------------------------------------------------------
  10. /**
  11. * Returns a function that always returns the same value;
  12. *
  13. * @param mixed $value Value to return.
  14. *
  15. * @return callable
  16. */
  17. function constantly($value)
  18. {
  19. return function () use ($value) {
  20. return $value;
  21. };
  22. }
  23. /**
  24. * Filters values that do not satisfy the predicate function $pred.
  25. *
  26. * @param mixed $iterable Iterable sequence of data.
  27. * @param callable $pred Function that accepts a value and returns true/false
  28. *
  29. * @return \Generator
  30. */
  31. function filter($iterable, callable $pred)
  32. {
  33. foreach ($iterable as $value) {
  34. if ($pred($value)) {
  35. yield $value;
  36. }
  37. }
  38. }
  39. /**
  40. * Applies a map function $f to each value in a collection.
  41. *
  42. * @param mixed $iterable Iterable sequence of data.
  43. * @param callable $f Map function to apply.
  44. *
  45. * @return \Generator
  46. */
  47. function map($iterable, callable $f)
  48. {
  49. foreach ($iterable as $value) {
  50. yield $f($value);
  51. }
  52. }
  53. /**
  54. * Creates a generator that iterates over a sequence, then iterates over each
  55. * value in the sequence and yields the application of the map function to each
  56. * value.
  57. *
  58. * @param mixed $iterable Iterable sequence of data.
  59. * @param callable $f Map function to apply.
  60. *
  61. * @return \Generator
  62. */
  63. function flatmap($iterable, callable $f)
  64. {
  65. foreach (map($iterable, $f) as $outer) {
  66. foreach ($outer as $inner) {
  67. yield $inner;
  68. }
  69. }
  70. }
  71. /**
  72. * Partitions the input sequence into partitions of the specified size.
  73. *
  74. * @param mixed $iterable Iterable sequence of data.
  75. * @param int $size Size to make each partition (except possibly the last chunk)
  76. *
  77. * @return \Generator
  78. */
  79. function partition($iterable, $size)
  80. {
  81. $buffer = [];
  82. foreach ($iterable as $value) {
  83. $buffer[] = $value;
  84. if (count($buffer) === $size) {
  85. yield $buffer;
  86. $buffer = [];
  87. }
  88. }
  89. if ($buffer) {
  90. yield $buffer;
  91. }
  92. }
  93. /**
  94. * Returns a function that invokes the provided variadic functions one
  95. * after the other until one of the functions returns a non-null value.
  96. * The return function will call each passed function with any arguments it
  97. * is provided.
  98. *
  99. * $a = function ($x, $y) { return null; };
  100. * $b = function ($x, $y) { return $x + $y; };
  101. * $fn = \Aws\or_chain($a, $b);
  102. * echo $fn(1, 2); // 3
  103. *
  104. * @return callable
  105. */
  106. function or_chain()
  107. {
  108. $fns = func_get_args();
  109. return function () use ($fns) {
  110. $args = func_get_args();
  111. foreach ($fns as $fn) {
  112. $result = $args ? call_user_func_array($fn, $args) : $fn();
  113. if ($result) {
  114. return $result;
  115. }
  116. }
  117. return null;
  118. };
  119. }
  120. //-----------------------------------------------------------------------------
  121. // JSON compiler and loading functions
  122. //-----------------------------------------------------------------------------
  123. /**
  124. * Loads a compiled JSON file from a PHP file.
  125. *
  126. * If the JSON file has not been cached to disk as a PHP file, it will be loaded
  127. * from the JSON source file and returned.
  128. *
  129. * @param string $path Path to the JSON file on disk
  130. *
  131. * @return mixed Returns the JSON decoded data. Note that JSON objects are
  132. * decoded as associative arrays.
  133. */
  134. function load_compiled_json($path)
  135. {
  136. static $compiledList = [];
  137. $compiledFilepath = "{$path}.php";
  138. if (!isset($compiledList[$compiledFilepath])) {
  139. if (is_readable($compiledFilepath)) {
  140. $compiledList[$compiledFilepath] = include($compiledFilepath);
  141. }
  142. }
  143. if (isset($compiledList[$compiledFilepath])) {
  144. return $compiledList[$compiledFilepath];
  145. }
  146. if (!file_exists($path)) {
  147. throw new \InvalidArgumentException(
  148. sprintf("File not found: %s", $path)
  149. );
  150. }
  151. return json_decode(file_get_contents($path), true);
  152. }
  153. /**
  154. * No-op
  155. */
  156. function clear_compiled_json()
  157. {
  158. // pass
  159. }
  160. //-----------------------------------------------------------------------------
  161. // Directory iterator functions.
  162. //-----------------------------------------------------------------------------
  163. /**
  164. * Iterates over the files in a directory and works with custom wrappers.
  165. *
  166. * @param string $path Path to open (e.g., "s3://foo/bar").
  167. * @param resource $context Stream wrapper context.
  168. *
  169. * @return \Generator Yields relative filename strings.
  170. */
  171. function dir_iterator($path, $context = null)
  172. {
  173. $dh = $context ? opendir($path, $context) : opendir($path);
  174. if (!$dh) {
  175. throw new \InvalidArgumentException('File not found: ' . $path);
  176. }
  177. while (($file = readdir($dh)) !== false) {
  178. yield $file;
  179. }
  180. closedir($dh);
  181. }
  182. /**
  183. * Returns a recursive directory iterator that yields absolute filenames.
  184. *
  185. * This iterator is not broken like PHP's built-in DirectoryIterator (which
  186. * will read the first file from a stream wrapper, then rewind, then read
  187. * it again).
  188. *
  189. * @param string $path Path to traverse (e.g., s3://bucket/key, /tmp)
  190. * @param resource $context Stream context options.
  191. *
  192. * @return \Generator Yields absolute filenames.
  193. */
  194. function recursive_dir_iterator($path, $context = null)
  195. {
  196. $invalid = ['.' => true, '..' => true];
  197. $pathLen = strlen($path) + 1;
  198. $iterator = dir_iterator($path, $context);
  199. $queue = [];
  200. do {
  201. while ($iterator->valid()) {
  202. $file = $iterator->current();
  203. $iterator->next();
  204. if (isset($invalid[basename($file)])) {
  205. continue;
  206. }
  207. $fullPath = "{$path}/{$file}";
  208. yield $fullPath;
  209. if (is_dir($fullPath)) {
  210. $queue[] = $iterator;
  211. $iterator = map(
  212. dir_iterator($fullPath, $context),
  213. function ($file) use ($fullPath, $pathLen) {
  214. return substr("{$fullPath}/{$file}", $pathLen);
  215. }
  216. );
  217. continue;
  218. }
  219. }
  220. $iterator = array_pop($queue);
  221. } while ($iterator);
  222. }
  223. //-----------------------------------------------------------------------------
  224. // Misc. functions.
  225. //-----------------------------------------------------------------------------
  226. /**
  227. * Debug function used to describe the provided value type and class.
  228. *
  229. * @param mixed $input
  230. *
  231. * @return string Returns a string containing the type of the variable and
  232. * if a class is provided, the class name.
  233. */
  234. function describe_type($input)
  235. {
  236. switch (gettype($input)) {
  237. case 'object':
  238. return 'object(' . get_class($input) . ')';
  239. case 'array':
  240. return 'array(' . count($input) . ')';
  241. default:
  242. ob_start();
  243. var_dump($input);
  244. // normalize float vs double
  245. return str_replace('double(', 'float(', rtrim(ob_get_clean()));
  246. }
  247. }
  248. /**
  249. * Creates a default HTTP handler based on the available clients.
  250. *
  251. * @return callable
  252. */
  253. function default_http_handler()
  254. {
  255. $version = guzzle_major_version();
  256. // If Guzzle 6 or 7 installed
  257. if ($version === 6 || $version === 7) {
  258. return new \Aws\Handler\GuzzleV6\GuzzleHandler();
  259. }
  260. // If Guzzle 5 installed
  261. if ($version === 5) {
  262. return new \Aws\Handler\GuzzleV5\GuzzleHandler();
  263. }
  264. throw new \RuntimeException('Unknown Guzzle version: ' . $version);
  265. }
  266. /**
  267. * Gets the default user agent string depending on the Guzzle version
  268. *
  269. * @return string
  270. */
  271. function default_user_agent()
  272. {
  273. $version = guzzle_major_version();
  274. // If Guzzle 6 or 7 installed
  275. if ($version === 6 || $version === 7) {
  276. return \GuzzleHttp\default_user_agent();
  277. }
  278. // If Guzzle 5 installed
  279. if ($version === 5) {
  280. return \GuzzleHttp\Client::getDefaultUserAgent();
  281. }
  282. throw new \RuntimeException('Unknown Guzzle version: ' . $version);
  283. }
  284. /**
  285. * Get the major version of guzzle that is installed.
  286. *
  287. * @internal This function is internal and should not be used outside aws/aws-sdk-php.
  288. * @return int
  289. * @throws \RuntimeException
  290. */
  291. function guzzle_major_version()
  292. {
  293. static $cache = null;
  294. if (null !== $cache) {
  295. return $cache;
  296. }
  297. if (defined('\GuzzleHttp\ClientInterface::VERSION')) {
  298. $version = (string) ClientInterface::VERSION;
  299. if ($version[0] === '6') {
  300. return $cache = 6;
  301. }
  302. if ($version[0] === '5') {
  303. return $cache = 5;
  304. }
  305. } elseif (defined('\GuzzleHttp\ClientInterface::MAJOR_VERSION')) {
  306. return $cache = ClientInterface::MAJOR_VERSION;
  307. }
  308. throw new \RuntimeException('Unable to determine what Guzzle version is installed.');
  309. }
  310. /**
  311. * Serialize a request for a command but do not send it.
  312. *
  313. * Returns a promise that is fulfilled with the serialized request.
  314. *
  315. * @param CommandInterface $command Command to serialize.
  316. *
  317. * @return RequestInterface
  318. * @throws \RuntimeException
  319. */
  320. function serialize(CommandInterface $command)
  321. {
  322. $request = null;
  323. $handlerList = $command->getHandlerList();
  324. // Return a mock result.
  325. $handlerList->setHandler(
  326. function (CommandInterface $_, RequestInterface $r) use (&$request) {
  327. $request = $r;
  328. return new FulfilledPromise(new Result([]));
  329. }
  330. );
  331. call_user_func($handlerList->resolve(), $command)->wait();
  332. if (!$request instanceof RequestInterface) {
  333. throw new \RuntimeException(
  334. 'Calling handler did not serialize request'
  335. );
  336. }
  337. return $request;
  338. }
  339. /**
  340. * Retrieves data for a service from the SDK's service manifest file.
  341. *
  342. * Manifest data is stored statically, so it does not need to be loaded more
  343. * than once per process. The JSON data is also cached in opcache.
  344. *
  345. * @param string $service Case-insensitive namespace or endpoint prefix of the
  346. * service for which you are retrieving manifest data.
  347. *
  348. * @return array
  349. * @throws \InvalidArgumentException if the service is not supported.
  350. */
  351. function manifest($service = null)
  352. {
  353. // Load the manifest and create aliases for lowercased namespaces
  354. static $manifest = [];
  355. static $aliases = [];
  356. if (empty($manifest)) {
  357. $manifest = load_compiled_json(__DIR__ . '/data/manifest.json');
  358. foreach ($manifest as $endpoint => $info) {
  359. $alias = strtolower($info['namespace']);
  360. if ($alias !== $endpoint) {
  361. $aliases[$alias] = $endpoint;
  362. }
  363. }
  364. }
  365. // If no service specified, then return the whole manifest.
  366. if ($service === null) {
  367. return $manifest;
  368. }
  369. // Look up the service's info in the manifest data.
  370. $service = strtolower($service);
  371. if (isset($manifest[$service])) {
  372. return $manifest[$service] + ['endpoint' => $service];
  373. }
  374. if (isset($aliases[$service])) {
  375. return manifest($aliases[$service]);
  376. }
  377. throw new \InvalidArgumentException(
  378. "The service \"{$service}\" is not provided by the AWS SDK for PHP."
  379. );
  380. }
  381. /**
  382. * Checks if supplied parameter is a valid hostname
  383. *
  384. * @param string $hostname
  385. * @return bool
  386. */
  387. function is_valid_hostname($hostname)
  388. {
  389. return (
  390. preg_match("/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*\.?$/i", $hostname)
  391. && preg_match("/^.{1,253}$/", $hostname)
  392. && preg_match("/^[^\.]{1,63}(\.[^\.]{0,63})*$/", $hostname)
  393. );
  394. }
  395. /**
  396. * Checks if supplied parameter is a valid host label
  397. *
  398. * @param $label
  399. * @return bool
  400. */
  401. function is_valid_hostlabel($label)
  402. {
  403. return preg_match("/^(?!-)[a-zA-Z0-9-]{1,63}(?<!-)$/", $label);
  404. }
  405. /**
  406. * Ignores '#' full line comments, which parse_ini_file no longer does
  407. * in PHP 7+.
  408. *
  409. * @param $filename
  410. * @param bool $process_sections
  411. * @param int $scanner_mode
  412. * @return array|bool
  413. */
  414. function parse_ini_file(
  415. $filename,
  416. $process_sections = false,
  417. $scanner_mode = INI_SCANNER_NORMAL)
  418. {
  419. return parse_ini_string(
  420. preg_replace('/^#.*\\n/m', "", file_get_contents($filename)),
  421. $process_sections,
  422. $scanner_mode
  423. );
  424. }
  425. /**
  426. * Outputs boolean value of input for a select range of possible values,
  427. * null otherwise
  428. *
  429. * @param $input
  430. * @return bool|null
  431. */
  432. function boolean_value($input)
  433. {
  434. if (is_bool($input)) {
  435. return $input;
  436. }
  437. if ($input === 0) {
  438. return false;
  439. }
  440. if ($input === 1) {
  441. return true;
  442. }
  443. if (is_string($input)) {
  444. switch (strtolower($input)) {
  445. case "true":
  446. case "on":
  447. case "1":
  448. return true;
  449. break;
  450. case "false":
  451. case "off":
  452. case "0":
  453. return false;
  454. break;
  455. }
  456. }
  457. return null;
  458. }
  459. /**
  460. * Parses ini sections with subsections (i.e. the service section)
  461. *
  462. * @param $filename
  463. * @param $filename
  464. * @return array
  465. */
  466. function parse_ini_section_with_subsections($filename, $section_name) {
  467. $config = [];
  468. $stream = fopen($filename, 'r');
  469. if (!$stream) {
  470. return $config;
  471. }
  472. $current_subsection = '';
  473. while (!feof($stream)) {
  474. $line = trim(fgets($stream));
  475. if (empty($line) || in_array($line[0], [';', '#'])) {
  476. continue;
  477. }
  478. if (preg_match('/^\[.*\]$/', $line)
  479. && trim($line, '[]') === $section_name)
  480. {
  481. while (!feof($stream)) {
  482. $line = trim(fgets($stream));
  483. if (empty($line) || in_array($line[0], [';', '#'])) {
  484. continue;
  485. }
  486. if (preg_match('/^\[.*\]$/', $line)
  487. && trim($line, '[]') === $section_name)
  488. {
  489. continue;
  490. } elseif (strpos($line, '[') === 0) {
  491. break;
  492. }
  493. if (strpos($line, ' = ') !== false) {
  494. list($key, $value) = explode(' = ', $line, 2);
  495. if (empty($current_subsection)) {
  496. $config[$key] = $value;
  497. } else {
  498. $config[$current_subsection][$key] = $value;
  499. }
  500. } else {
  501. $current_subsection = trim(str_replace('=', '', $line));
  502. $config[$current_subsection] = [];
  503. }
  504. }
  505. }
  506. }
  507. fclose($stream);
  508. return $config;
  509. }
  510. /**
  511. * Checks if an input is a valid epoch time
  512. *
  513. * @param $input
  514. * @return bool
  515. */
  516. function is_valid_epoch($input)
  517. {
  518. if (is_string($input) || is_numeric($input)) {
  519. if (is_string($input) && !preg_match("/^-?[0-9]+\.?[0-9]*$/", $input)) {
  520. return false;
  521. }
  522. return true;
  523. }
  524. return false;
  525. }
  526. /**
  527. * Checks if an input is a fips pseudo region
  528. *
  529. * @param $region
  530. * @return bool
  531. */
  532. function is_fips_pseudo_region($region)
  533. {
  534. return strpos($region, 'fips-') !== false || strpos($region, '-fips') !== false;
  535. }
  536. /**
  537. * Returns a region without a fips label
  538. *
  539. * @param $region
  540. * @return string
  541. */
  542. function strip_fips_pseudo_regions($region)
  543. {
  544. return str_replace(['fips-', '-fips'], ['', ''], $region);
  545. }