ConfigurationProvider.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <?php
  2. namespace Aws\DefaultsMode;
  3. use Aws\AbstractConfigurationProvider;
  4. use Aws\CacheInterface;
  5. use Aws\ConfigurationProviderInterface;
  6. use Aws\DefaultsMode\Exception\ConfigurationException;
  7. use GuzzleHttp\Promise;
  8. use GuzzleHttp\Promise\PromiseInterface;
  9. /**
  10. * A configuration provider is a function that returns a promise that is
  11. * fulfilled with a {@see \Aws\DefaultsMode\ConfigurationInterface}
  12. * or rejected with an {@see \Aws\DefaultsMode\Exception\ConfigurationException}.
  13. *
  14. * <code>
  15. * use Aws\Sts\RegionalEndpoints\ConfigurationProvider;
  16. * $provider = ConfigurationProvider::defaultProvider();
  17. * // Returns a ConfigurationInterface or throws.
  18. * $config = $provider()->wait();
  19. * </code>
  20. *
  21. * Configuration providers can be composed to create configuration using
  22. * conditional logic that can create different configurations in different
  23. * environments. You can compose multiple providers into a single provider using
  24. * {@see \Aws\DefaultsMode\ConfigurationProvider::chain}. This function
  25. * accepts providers as variadic arguments and returns a new function that will
  26. * invoke each provider until a successful configuration is returned.
  27. *
  28. * <code>
  29. * // First try an INI file at this location.
  30. * $a = ConfigurationProvider::ini(null, '/path/to/file.ini');
  31. * // Then try an INI file at this location.
  32. * $b = ConfigurationProvider::ini(null, '/path/to/other-file.ini');
  33. * // Then try loading from environment variables.
  34. * $c = ConfigurationProvider::env();
  35. * // Combine the three providers together.
  36. * $composed = ConfigurationProvider::chain($a, $b, $c);
  37. * // Returns a promise that is fulfilled with a configuration or throws.
  38. * $promise = $composed();
  39. * // Wait on the configuration to resolve.
  40. * $config = $promise->wait();
  41. * </code>
  42. */
  43. class ConfigurationProvider extends AbstractConfigurationProvider
  44. implements ConfigurationProviderInterface
  45. {
  46. const DEFAULT_MODE = 'legacy';
  47. const ENV_MODE = 'AWS_DEFAULTS_MODE';
  48. const ENV_PROFILE = 'AWS_PROFILE';
  49. const INI_MODE = 'defaults_mode';
  50. public static $cacheKey = 'aws_defaults_mode';
  51. protected static $interfaceClass = ConfigurationInterface::class;
  52. protected static $exceptionClass = ConfigurationException::class;
  53. /**
  54. * Create a default config provider that first checks for environment
  55. * variables, then checks for a specified profile in the environment-defined
  56. * config file location (env variable is 'AWS_CONFIG_FILE', file location
  57. * defaults to ~/.aws/config), then checks for the "default" profile in the
  58. * environment-defined config file location, and failing those uses a default
  59. * fallback set of configuration options.
  60. *
  61. * This provider is automatically wrapped in a memoize function that caches
  62. * previously provided config options.
  63. *
  64. * @param array $config
  65. *
  66. * @return callable
  67. */
  68. public static function defaultProvider(array $config = [])
  69. {
  70. $configProviders = [self::env()];
  71. if (
  72. !isset($config['use_aws_shared_config_files'])
  73. || $config['use_aws_shared_config_files'] != false
  74. ) {
  75. $configProviders[] = self::ini();
  76. }
  77. $configProviders[] = self::fallback();
  78. $memo = self::memoize(
  79. call_user_func_array([ConfigurationProvider::class, 'chain'], $configProviders)
  80. );
  81. if (isset($config['defaultsMode'])
  82. && $config['defaultsMode'] instanceof CacheInterface
  83. ) {
  84. return self::cache($memo, $config['defaultsMode'], self::$cacheKey);
  85. }
  86. return $memo;
  87. }
  88. /**
  89. * Provider that creates config from environment variables.
  90. *
  91. * @return callable
  92. */
  93. public static function env()
  94. {
  95. return function () {
  96. // Use config from environment variables, if available
  97. $mode = getenv(self::ENV_MODE);
  98. if (!empty($mode)) {
  99. return Promise\Create::promiseFor(
  100. new Configuration($mode)
  101. );
  102. }
  103. return self::reject('Could not find environment variable config'
  104. . ' in ' . self::ENV_MODE);
  105. };
  106. }
  107. /**
  108. * Fallback config options when other sources are not set.
  109. *
  110. * @return callable
  111. */
  112. public static function fallback()
  113. {
  114. return function () {
  115. return Promise\Create::promiseFor(
  116. new Configuration( self::DEFAULT_MODE)
  117. );
  118. };
  119. }
  120. /**
  121. * Config provider that creates config using a config file whose location
  122. * is specified by an environment variable 'AWS_CONFIG_FILE', defaulting to
  123. * ~/.aws/config if not specified
  124. *
  125. * @param string|null $profile Profile to use. If not specified will use
  126. * the "default" profile.
  127. * @param string|null $filename If provided, uses a custom filename rather
  128. * than looking in the default directory.
  129. *
  130. * @return callable
  131. */
  132. public static function ini(
  133. $profile = null,
  134. $filename = null
  135. ) {
  136. $filename = $filename ?: (self::getDefaultConfigFilename());
  137. $profile = $profile ?: (getenv(self::ENV_PROFILE) ?: 'default');
  138. return function () use ($profile, $filename) {
  139. if (!is_readable($filename)) {
  140. return self::reject("Cannot read configuration from $filename");
  141. }
  142. $data = \Aws\parse_ini_file($filename, true);
  143. if ($data === false) {
  144. return self::reject("Invalid config file: $filename");
  145. }
  146. if (!isset($data[$profile])) {
  147. return self::reject("'$profile' not found in config file");
  148. }
  149. if (!isset($data[$profile][self::INI_MODE])) {
  150. return self::reject("Required defaults mode config values
  151. not present in INI profile '{$profile}' ({$filename})");
  152. }
  153. return Promise\Create::promiseFor(
  154. new Configuration(
  155. $data[$profile][self::INI_MODE]
  156. )
  157. );
  158. };
  159. }
  160. /**
  161. * Unwraps a configuration object in whatever valid form it is in,
  162. * always returning a ConfigurationInterface object.
  163. *
  164. * @param mixed $config
  165. * @return ConfigurationInterface
  166. * @throws \InvalidArgumentException
  167. */
  168. public static function unwrap($config)
  169. {
  170. if (is_callable($config)) {
  171. $config = $config();
  172. }
  173. if ($config instanceof PromiseInterface) {
  174. $config = $config->wait();
  175. }
  176. if ($config instanceof ConfigurationInterface) {
  177. return $config;
  178. }
  179. if (is_string($config)) {
  180. return new Configuration($config);
  181. }
  182. throw new \InvalidArgumentException('Not a valid defaults mode configuration'
  183. . ' argument.');
  184. }
  185. }