/var/www/hkosl.com/littleark/webadmin/libraies/illuminate/database/Query/Grammars/MySqlGrammar.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
<?php

namespace Illuminate\Database\Query\Grammars;

use 
Illuminate\Support\Str;
use 
Illuminate\Database\Query\Builder;
use 
Illuminate\Database\Query\JsonExpression;

class 
MySqlGrammar extends Grammar
{
    
/**
     * The components that make up a select clause.
     *
     * @var array
     */
    
protected $selectComponents = [
        
'aggregate',
        
'columns',
        
'from',
        
'joins',
        
'wheres',
        
'groups',
        
'havings',
        
'orders',
        
'limit',
        
'offset',
        
'lock',
    ];

    
/**
     * Compile a select query into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @return string
     */
    
public function compileSelect(Builder $query)
    {
        
$sql parent::compileSelect($query);

        if (
$query->unions) {
            
$sql '('.$sql.') '.$this->compileUnions($query);
        }

        return 
$sql;
    }

    
/**
     * Compile a single union statement.
     *
     * @param  array  $union
     * @return string
     */
    
protected function compileUnion(array $union)
    {
        
$joiner $union['all'] ? ' union all ' ' union ';

        return 
$joiner.'('.$union['query']->toSql().')';
    }

    
/**
     * Compile the random statement into SQL.
     *
     * @param  string  $seed
     * @return string
     */
    
public function compileRandom($seed)
    {
        return 
'RAND('.$seed.')';
    }

    
/**
     * Compile the lock into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  bool|string  $value
     * @return string
     */
    
protected function compileLock(Builder $query$value)
    {
        if (
is_string($value)) {
            return 
$value;
        }

        return 
$value 'for update' 'lock in share mode';
    }

    
/**
     * Compile an update statement into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $values
     * @return string
     */
    
public function compileUpdate(Builder $query$values)
    {
        
$table $this->wrapTable($query->from);

        
$columns = [];

        
// Each one of the columns in the update statements needs to be wrapped in the
        // keyword identifiers, also a place-holder needs to be created for each of
        // the values in the list of bindings so we can make the sets statements.
        
foreach ($values as $key => $value) {
            if (
$this->isJsonSelector($key)) {
                
$columns[] = $this->compileJsonUpdateColumn(
                    
$key, new JsonExpression($value)
                );
            } else {
                
$columns[] = $this->wrap($key).' = '.$this->parameter($value);
            }
        }

        
$columns implode(', '$columns);

        
// If the query has any "join" clauses, we will setup the joins on the builder
        // and compile them so we can attach them to this update, as update queries
        // can get join statements to attach to other tables when they're needed.
        
if (isset($query->joins)) {
            
$joins ' '.$this->compileJoins($query$query->joins);
        } else {
            
$joins '';
        }

        
// Of course, update queries may also be constrained by where clauses so we'll
        // need to compile the where clauses and attach it to the query so only the
        // intended records are updated by the SQL statements we generate to run.
        
$where $this->compileWheres($query);

        
$sql rtrim("update {$table}{$joins} set $columns $where");

        if (! empty(
$query->orders)) {
            
$sql .= ' '.$this->compileOrders($query$query->orders);
        }

        if (isset(
$query->limit)) {
            
$sql .= ' '.$this->compileLimit($query$query->limit);
        }

        return 
rtrim($sql);
    }

    
/**
     * Prepares a JSON column being updated using the JSON_SET function.
     *
     * @param  string  $key
     * @param  \Illuminate\Database\Query\JsonExpression  $value
     * @return string
     */
    
protected function compileJsonUpdateColumn($keyJsonExpression $value)
    {
        
$path explode('->'$key);

        
$field $this->wrapValue(array_shift($path));

        
$accessor '"$.'.implode('.'$path).'"';

        return 
"{$field} = json_set({$field}{$accessor}{$value->getValue()})";
    }

    
/**
     * Prepare the bindings for an update statement.
     *
     * @param  array  $bindings
     * @param  array  $values
     * @return array
     */
    
public function prepareBindingsForUpdate(array $bindings, array $values)
    {
        foreach (
$values as $column => $value) {
            if (
$this->isJsonSelector($column) &&
                
in_array(gettype($value), ['boolean''integer''double'])) {
                unset(
$values[$column]);
            }
        }

        return 
parent::prepareBindingsForUpdate($bindings$values);
    }

    
/**
     * Compile a delete statement into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @return string
     */
    
public function compileDelete(Builder $query)
    {
        
$table $this->wrapTable($query->from);

        
$where is_array($query->wheres) ? $this->compileWheres($query) : '';

        if (isset(
$query->joins)) {
            
$joins ' '.$this->compileJoins($query$query->joins);

            
$sql trim("delete $table from {$table}{$joins} $where");
        } else {
            
$sql trim("delete from $table $where");

            if (! empty(
$query->orders)) {
                
$sql .= ' '.$this->compileOrders($query$query->orders);
            }

            if (isset(
$query->limit)) {
                
$sql .= ' '.$this->compileLimit($query$query->limit);
            }
        }

        return 
$sql;
    }

    
/**
     * Wrap a single string in keyword identifiers.
     *
     * @param  string  $value
     * @return string
     */
    
protected function wrapValue($value)
    {
        if (
$value === '*') {
            return 
$value;
        }

        if (
$this->isJsonSelector($value)) {
            return 
$this->wrapJsonSelector($value);
        }

        return 
'`'.str_replace('`''``'$value).'`';
    }

    
/**
     * Wrap the given JSON selector.
     *
     * @param  string  $value
     * @return string
     */
    
protected function wrapJsonSelector($value)
    {
        
$path explode('->'$value);

        
$field $this->wrapValue(array_shift($path));

        
$path collect($path)->map(function ($part) {
            return 
'"'.$part.'"';
        })->
implode('.');

        return 
sprintf('%s->\'$.%s\''$field$path);
    }

    
/**
     * Determine if the given string is a JSON selector.
     *
     * @param  string  $value
     * @return bool
     */
    
protected function isJsonSelector($value)
    {
        return 
Str::contains($value'->');
    }
}