/var/www/hkosl.com/littleark/webadmin/libraies/illuminate/database/Connectors/ConnectionFactory.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php

namespace Illuminate\Database\Connectors;

use 
PDO;
use 
PDOException;
use 
Illuminate\Support\Arr;
use 
InvalidArgumentException;
use 
Illuminate\Database\MySqlConnection;
use 
Illuminate\Database\SQLiteConnection;
use 
Illuminate\Database\PostgresConnection;
use 
Illuminate\Database\SqlServerConnection;
use 
Illuminate\Contracts\Container\Container;
use 
Illuminate\Contracts\Debug\ExceptionHandler;

class 
ConnectionFactory
{
    
/**
     * The IoC container instance.
     *
     * @var \Illuminate\Contracts\Container\Container
     */
    
protected $container;

    
/**
     * Create a new connection factory instance.
     *
     * @param  \Illuminate\Contracts\Container\Container  $container
     * @return void
     */
    
public function __construct(Container $container)
    {
        
$this->container $container;
    }

    
/**
     * Establish a PDO connection based on the configuration.
     *
     * @param  array   $config
     * @param  string  $name
     * @return \Illuminate\Database\Connection
     */
    
public function make(array $config$name null)
    {
        
$config $this->parseConfig($config$name);

        if (isset(
$config['read'])) {
            return 
$this->createReadWriteConnection($config);
        }

        return 
$this->createSingleConnection($config);
    }

    
/**
     * Create a single database connection instance.
     *
     * @param  array  $config
     * @return \Illuminate\Database\Connection
     */
    
protected function createSingleConnection(array $config)
    {
        
$pdo $this->createPdoResolver($config);

        return 
$this->createConnection(
            
$config['driver'], $pdo$config['database'], $config['prefix'], $config
        
);
    }

    
/**
     * Create a single database connection instance.
     *
     * @param  array  $config
     * @return \Illuminate\Database\Connection
     */
    
protected function createReadWriteConnection(array $config)
    {
        
$connection $this->createSingleConnection($this->getWriteConfig($config));

        return 
$connection->setReadPdo($this->createReadPdo($config));
    }

    
/**
     * Create a new PDO instance for reading.
     *
     * @param  array  $config
     * @return \Closure
     */
    
protected function createReadPdo(array $config)
    {
        return 
$this->createPdoResolver($this->getReadConfig($config));
    }

    
/**
     * Create a new Closure that resolves to a PDO instance.
     *
     * @param  array  $config
     * @return \Closure
     */
    
protected function createPdoResolver(array $config)
    {
        if (
array_key_exists('host'$config)) {
            return 
$this->createPdoResolverWithHosts($config);
        }

        return 
$this->createPdoResolverWithoutHosts($config);
    }

    
/**
     * Create a new Closure that resolves to a PDO instance with a specific host or an array of hosts.
     *
     * @param  array  $config
     * @return \Closure
     */
    
protected function createPdoResolverWithHosts(array $config)
    {
        return function () use (
$config) {
            
$hosts is_array($config['host']) ? $config['host'] : [$config['host']];

            if (empty(
$hosts)) {
                throw new 
InvalidArgumentException('Database hosts array is empty.');
            }

            foreach (
Arr::shuffle($hosts) as $key => $host) {
                
$config['host'] = $host;

                try {
                    return 
$this->createConnector($config)->connect($config);
                } catch (
PDOException $e) {
                    if (
count($hosts) - === $key) {
                        
$this->container->make(ExceptionHandler::class)->report($e);
                    }
                }
            }

            throw 
$e;
        };
    }

    
/**
     * Create a new Closure that resolves to a PDO instance where there is no configured host.
     *
     * @param  array  $config
     * @return \Closure
     */
    
protected function createPdoResolverWithoutHosts(array $config)
    {
        return function () use (
$config) {
            return 
$this->createConnector($config)->connect($config);
        };
    }

    
/**
     * Get the read configuration for a read / write connection.
     *
     * @param  array  $config
     * @return array
     */
    
protected function getReadConfig(array $config)
    {
        
$readConfig $this->getReadWriteConfig($config'read');

        return 
$this->mergeReadWriteConfig($config$readConfig);
    }

    
/**
     * Get the read configuration for a read / write connection.
     *
     * @param  array  $config
     * @return array
     */
    
protected function getWriteConfig(array $config)
    {
        
$writeConfig $this->getReadWriteConfig($config'write');

        return 
$this->mergeReadWriteConfig($config$writeConfig);
    }

    
/**
     * Get a read / write level configuration.
     *
     * @param  array   $config
     * @param  string  $type
     * @return array
     */
    
protected function getReadWriteConfig(array $config$type)
    {
        if (isset(
$config[$type][0])) {
            return 
$config[$type][array_rand($config[$type])];
        }

        return 
$config[$type];
    }

    
/**
     * Merge a configuration for a read / write connection.
     *
     * @param  array  $config
     * @param  array  $merge
     * @return array
     */
    
protected function mergeReadWriteConfig(array $config, array $merge)
    {
        return 
Arr::except(array_merge($config$merge), ['read''write']);
    }

    
/**
     * Parse and prepare the database configuration.
     *
     * @param  array   $config
     * @param  string  $name
     * @return array
     */
    
protected function parseConfig(array $config$name)
    {
        return 
Arr::add(Arr::add($config'prefix'''), 'name'$name);
    }

    
/**
     * Create a connector instance based on the configuration.
     *
     * @param  array  $config
     * @return \Illuminate\Database\Connectors\ConnectorInterface
     *
     * @throws \InvalidArgumentException
     */
    
public function createConnector(array $config)
    {
        if (! isset(
$config['driver'])) {
            throw new 
InvalidArgumentException('A driver must be specified.');
        }

        if (
$this->container->bound($key "db.connector.{$config['driver']}")) {
            return 
$this->container->make($key);
        }

        switch (
$config['driver']) {
            case 
'mysql':
                return new 
MySqlConnector;
            case 
'pgsql':
                return new 
PostgresConnector;
            case 
'sqlite':
                return new 
SQLiteConnector;
            case 
'sqlsrv':
                return new 
SqlServerConnector;
        }

        throw new 
InvalidArgumentException("Unsupported driver [{$config['driver']}]");
    }

    
/**
     * Create a new connection instance.
     *
     * @param  string   $driver
     * @param  \PDO|\Closure     $connection
     * @param  string   $database
     * @param  string   $prefix
     * @param  array    $config
     * @return \Illuminate\Database\Connection
     *
     * @throws \InvalidArgumentException
     */
    
protected function createConnection($driver$connection$database$prefix '', array $config = [])
    {
        if (
$this->container->bound($key "db.connection.{$driver}")) {
            return 
$this->container->make($key, [$connection$database$prefix$config]);
        }

        switch (
$driver) {
            case 
'mysql':
                return new 
MySqlConnection($connection$database$prefix$config);
            case 
'pgsql':
                return new 
PostgresConnection($connection$database$prefix$config);
            case 
'sqlite':
                return new 
SQLiteConnection($connection$database$prefix$config);
            case 
'sqlsrv':
                return new 
SqlServerConnection($connection$database$prefix$config);
        }

        throw new 
InvalidArgumentException("Unsupported driver [$driver]");
    }
}