Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

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