/var/www/hkosl.com/littleark/webadmin/libraies/illuminate/database/Schema/Grammars/Grammar.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<?php

namespace Illuminate\Database\Schema\Grammars;

use 
RuntimeException;
use 
Doctrine\DBAL\Types\Type;
use 
Illuminate\Support\Fluent;
use 
Doctrine\DBAL\Schema\Table;
use 
Doctrine\DBAL\Schema\Column;
use 
Doctrine\DBAL\Schema\TableDiff;
use 
Illuminate\Database\Connection;
use 
Doctrine\DBAL\Schema\Comparator;
use 
Illuminate\Database\Query\Expression;
use 
Illuminate\Database\Schema\Blueprint;
use 
Illuminate\Database\Grammar as BaseGrammar;
use 
Doctrine\DBAL\Schema\AbstractSchemaManager as SchemaManager;

abstract class 
Grammar extends BaseGrammar
{
    
/**
     * If this Grammar supports schema changes wrapped in a transaction.
     *
     * @var bool
     */
    
protected $transactions false;

    
/**
     * Compile a rename column command.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Illuminate\Support\Fluent  $command
     * @param  \Illuminate\Database\Connection  $connection
     * @return array
     */
    
public function compileRenameColumn(Blueprint $blueprintFluent $commandConnection $connection)
    {
        
$schema $connection->getDoctrineSchemaManager();

        
$table $this->getTablePrefix().$blueprint->getTable();

        
$column $connection->getDoctrineColumn($table$command->from);

        
$tableDiff $this->getRenamedDiff($blueprint$command$column$schema);

        return (array) 
$schema->getDatabasePlatform()->getAlterTableSQL($tableDiff);
    }

    
/**
     * Get a new column instance with the new column name.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Illuminate\Support\Fluent  $command
     * @param  \Doctrine\DBAL\Schema\Column  $column
     * @param  \Doctrine\DBAL\Schema\AbstractSchemaManager  $schema
     * @return \Doctrine\DBAL\Schema\TableDiff
     */
    
protected function getRenamedDiff(Blueprint $blueprintFluent $commandColumn $columnSchemaManager $schema)
    {
        
$tableDiff $this->getDoctrineTableDiff($blueprint$schema);

        return 
$this->setRenamedColumns($tableDiff$command$column);
    }

    
/**
     * Set the renamed columns on the table diff.
     *
     * @param  \Doctrine\DBAL\Schema\TableDiff  $tableDiff
     * @param  \Illuminate\Support\Fluent  $command
     * @param  \Doctrine\DBAL\Schema\Column  $column
     * @return \Doctrine\DBAL\Schema\TableDiff
     */
    
protected function setRenamedColumns(TableDiff $tableDiffFluent $commandColumn $column)
    {
        
$newColumn = new Column($command->to$column->getType(), $column->toArray());

        
$tableDiff->renamedColumns = [$command->from => $newColumn];

        return 
$tableDiff;
    }

    
/**
     * Compile a foreign key command.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Illuminate\Support\Fluent  $command
     * @return string
     */
    
public function compileForeign(Blueprint $blueprintFluent $command)
    {
        
$table $this->wrapTable($blueprint);

        
$index $this->wrap($command->index);

        
$on $this->wrapTable($command->on);

        
// We need to prepare several of the elements of the foreign key definition
        // before we can create the SQL, such as wrapping the tables and convert
        // an array of columns to comma-delimited strings for the SQL queries.
        
$columns $this->columnize($command->columns);

        
$onColumns $this->columnize((array) $command->references);

        
$sql "alter table {$table} add constraint {$index} ";

        
$sql .= "foreign key ({$columns}) references {$on} ({$onColumns})";

        
// Once we have the basic foreign key creation statement constructed we can
        // build out the syntax for what should happen on an update or delete of
        // the affected columns, which will get something like "cascade", etc.
        
if (! is_null($command->onDelete)) {
            
$sql .= " on delete {$command->onDelete}";
        }

        if (! 
is_null($command->onUpdate)) {
            
$sql .= " on update {$command->onUpdate}";
        }

        return 
$sql;
    }

    
/**
     * Compile the blueprint's column definitions.
     *
     * @param  \Illuminate\Database\Schema\Blueprint $blueprint
     * @return array
     */
    
protected function getColumns(Blueprint $blueprint)
    {
        
$columns = [];

        foreach (
$blueprint->getAddedColumns() as $column) {
            
// Each of the column types have their own compiler functions which are tasked
            // with turning the column definition into its SQL format for this platform
            // used by the connection. The column's modifiers are compiled and added.
            
$sql $this->wrap($column).' '.$this->getType($column);

            
$columns[] = $this->addModifiers($sql$blueprint$column);
        }

        return 
$columns;
    }

    
/**
     * Add the column modifiers to the definition.
     *
     * @param  string  $sql
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Illuminate\Support\Fluent  $column
     * @return string
     */
    
protected function addModifiers($sqlBlueprint $blueprintFluent $column)
    {
        foreach (
$this->modifiers as $modifier) {
            if (
method_exists($this$method "modify{$modifier}")) {
                
$sql .= $this->{$method}($blueprint$column);
            }
        }

        return 
$sql;
    }

    
/**
     * Get the primary key command if it exists on the blueprint.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  string  $name
     * @return \Illuminate\Support\Fluent|null
     */
    
protected function getCommandByName(Blueprint $blueprint$name)
    {
        
$commands $this->getCommandsByName($blueprint$name);

        if (
count($commands) > 0) {
            return 
reset($commands);
        }
    }

    
/**
     * Get all of the commands with a given name.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  string  $name
     * @return array
     */
    
protected function getCommandsByName(Blueprint $blueprint$name)
    {
        return 
array_filter($blueprint->getCommands(), function ($value) use ($name) {
            return 
$value->name == $name;
        });
    }

    
/**
     * Get the SQL for the column data type.
     *
     * @param  \Illuminate\Support\Fluent  $column
     * @return string
     */
    
protected function getType(Fluent $column)
    {
        return 
$this->{'type'.ucfirst($column->type)}($column);
    }

    
/**
     * Add a prefix to an array of values.
     *
     * @param  string  $prefix
     * @param  array   $values
     * @return array
     */
    
public function prefixArray($prefix, array $values)
    {
        return 
array_map(function ($value) use ($prefix) {
            return 
$prefix.' '.$value;
        }, 
$values);
    }

    
/**
     * Wrap a table in keyword identifiers.
     *
     * @param  mixed   $table
     * @return string
     */
    
public function wrapTable($table)
    {
        if (
$table instanceof Blueprint) {
            
$table $table->getTable();
        }

        return 
parent::wrapTable($table);
    }

    
/**
     * {@inheritdoc}
     */
    
public function wrap($value$prefixAlias false)
    {
        if (
$value instanceof Fluent) {
            
$value $value->name;
        }

        return 
parent::wrap($value$prefixAlias);
    }

    
/**
     * Format a value so that it can be used in "default" clauses.
     *
     * @param  mixed   $value
     * @return string
     */
    
protected function getDefaultValue($value)
    {
        if (
$value instanceof Expression) {
            return 
$value;
        }

        if (
is_bool($value)) {
            return 
"'".(int) $value."'";
        }

        return 
"'".strval($value)."'";
    }

    
/**
     * Create an empty Doctrine DBAL TableDiff from the Blueprint.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Doctrine\DBAL\Schema\AbstractSchemaManager  $schema
     * @return \Doctrine\DBAL\Schema\TableDiff
     */
    
protected function getDoctrineTableDiff(Blueprint $blueprintSchemaManager $schema)
    {
        
$table $this->getTablePrefix().$blueprint->getTable();

        
$tableDiff = new TableDiff($table);

        
$tableDiff->fromTable $schema->listTableDetails($table);

        return 
$tableDiff;
    }

    
/**
     * Compile a change column command into a series of SQL statements.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Illuminate\Support\Fluent  $command
     * @param  \Illuminate\Database\Connection $connection
     * @return array
     *
     * @throws \RuntimeException
     */
    
public function compileChange(Blueprint $blueprintFluent $commandConnection $connection)
    {
        if (! 
$connection->isDoctrineAvailable()) {
            throw new 
RuntimeException(sprintf(
                
'Changing columns for table "%s" requires Doctrine DBAL; install "doctrine/dbal".',
                
$blueprint->getTable()
            ));
        }

        
$schema $connection->getDoctrineSchemaManager();

        
$tableDiff $this->getChangedDiff($blueprint$schema);

        if (
$tableDiff !== false) {
            return (array) 
$schema->getDatabasePlatform()->getAlterTableSQL($tableDiff);
        }

        return [];
    }

    
/**
     * Get the Doctrine table difference for the given changes.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Doctrine\DBAL\Schema\AbstractSchemaManager  $schema
     * @return \Doctrine\DBAL\Schema\TableDiff|bool
     */
    
protected function getChangedDiff(Blueprint $blueprintSchemaManager $schema)
    {
        
$table $schema->listTableDetails($this->getTablePrefix().$blueprint->getTable());

        return (new 
Comparator)->diffTable($table$this->getTableWithColumnChanges($blueprint$table));
    }

    
/**
     * Get a copy of the given Doctrine table after making the column changes.
     *
     * @param  \Illuminate\Database\Schema\Blueprint  $blueprint
     * @param  \Doctrine\DBAL\Schema\Table  $table
     * @return \Doctrine\DBAL\Schema\TableDiff
     */
    
protected function getTableWithColumnChanges(Blueprint $blueprintTable $table)
    {
        
$table = clone $table;

        foreach (
$blueprint->getChangedColumns() as $fluent) {
            
$column $this->getDoctrineColumnForChange($table$fluent);

            
// Here we will spin through each fluent column definition and map it to the proper
            // Doctrine column definitions - which is necessary because Laravel and Doctrine
            // use some different terminology for various column attributes on the tables.
            
foreach ($fluent->getAttributes() as $key => $value) {
                if (! 
is_null($option $this->mapFluentOptionToDoctrine($key))) {
                    if (
method_exists($column$method 'set'.ucfirst($option))) {
                        
$column->{$method}($this->mapFluentValueToDoctrine($option$value));
                    }
                }
            }
        }

        return 
$table;
    }

    
/**
     * Get the Doctrine column instance for a column change.
     *
     * @param  \Doctrine\DBAL\Schema\Table  $table
     * @param  \Illuminate\Support\Fluent  $fluent
     * @return \Doctrine\DBAL\Schema\Column
     */
    
protected function getDoctrineColumnForChange(Table $tableFluent $fluent)
    {
        return 
$table->changeColumn(
            
$fluent['name'], $this->getDoctrineColumnChangeOptions($fluent)
        )->
getColumn($fluent['name']);
    }

    
/**
     * Get the Doctrine column change options.
     *
     * @param  \Illuminate\Support\Fluent  $fluent
     * @return array
     */
    
protected function getDoctrineColumnChangeOptions(Fluent $fluent)
    {
        
$options = ['type' => $this->getDoctrineColumnType($fluent['type'])];

        if (
in_array($fluent['type'], ['text''mediumText''longText'])) {
            
$options['length'] = $this->calculateDoctrineTextLength($fluent['type']);
        }

        return 
$options;
    }

    
/**
     * Get the doctrine column type.
     *
     * @param  string  $type
     * @return \Doctrine\DBAL\Types\Type
     */
    
protected function getDoctrineColumnType($type)
    {
        
$type strtolower($type);

        switch (
$type) {
            case 
'biginteger':
                
$type 'bigint';
                break;
            case 
'smallinteger':
                
$type 'smallint';
                break;
            case 
'mediumtext':
            case 
'longtext':
                
$type 'text';
                break;
            case 
'binary':
                
$type 'blob';
                break;
        }

        return 
Type::getType($type);
    }

    
/**
     * Calculate the proper column length to force the Doctrine text type.
     *
     * @param  string  $type
     * @return int
     */
    
protected function calculateDoctrineTextLength($type)
    {
        switch (
$type) {
            case 
'mediumText':
                return 
65535 1;
            case 
'longText':
                return 
16777215 1;
            default:
                return 
255 1;
        }
    }

    
/**
     * Get the matching Doctrine option for a given Fluent attribute name.
     *
     * @param  string  $attribute
     * @return string|null
     */
    
protected function mapFluentOptionToDoctrine($attribute)
    {
        switch (
$attribute) {
            case 
'type':
            case 
'name':
                return;
            case 
'nullable':
                return 
'notnull';
            case 
'total':
                return 
'precision';
            case 
'places':
                return 
'scale';
            default:
                return 
$attribute;
        }
    }

    
/**
     * Get the matching Doctrine value for a given Fluent attribute.
     *
     * @param  string  $option
     * @param  mixed  $value
     * @return mixed
     */
    
protected function mapFluentValueToDoctrine($option$value)
    {
        return 
$option == 'notnull' ? ! $value $value;
    }

    
/**
     * Check if this Grammar supports schema changes wrapped in a transaction.
     *
     * @return bool
     */
    
public function supportsSchemaTransactions()
    {
        return 
$this->transactions;
    }
}