/var/www/hkosl.com/imusiccircle/webadmin/libraies/illuminate/database/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
<?php namespace Illuminate\Database\Schema\Grammars;

use 
Illuminate\Support\Fluent;
use 
Doctrine\DBAL\Schema\Column;
use 
Doctrine\DBAL\Schema\TableDiff;
use 
Illuminate\Database\Connection;
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 {

    
/**
     * 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 = array($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);

        
$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 {$command->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 = array();

        foreach (
$blueprint->getColumns() 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
     * @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);
    }

    
/**
     * Wrap a value in keyword identifiers.
     *
     * @param  string  $value
     * @return string
     */
    
public function wrap($value)
    {
        if (
$value instanceof Fluent$value $value->name;

        return 
parent::wrap($value);
    }

    
/**
     * 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 "'".intval($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;
    }

}