@@ -21,20 +21,20 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function __invoke(ControllerContainer $container, $ann, EntityContainerBuilder $entityBuilder) |
23 | 23 | { |
24 | - if(!$ann->parent){ |
|
24 | + if (!$ann->parent) { |
|
25 | 25 | //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()} should be used with parent route"); |
26 | 26 | return; |
27 | 27 | } |
28 | 28 | $target = $ann->parent->name; |
29 | 29 | $route = $container->getRoute($target); |
30 | - if(!$route){ |
|
30 | + if (!$route) { |
|
31 | 31 | //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target should be used with parent route"); |
32 | - return ; |
|
32 | + return; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | $params = new AnnotationParams($ann->description, 2); |
36 | 36 | $type = $doc = null; |
37 | - if(count($params)>0){ |
|
37 | + if (count($params)>0) { |
|
38 | 38 | $type = TypeHint::normalize($params[0], $container->getClassName()); |
39 | 39 | } |
40 | 40 | $doc = $params->getRawParam(1, ''); |
@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | list($_, $meta) = $route |
43 | 43 | ->getResponseHandler() |
44 | 44 | ->getMappingBySource('return'); |
45 | - if($meta){ |
|
45 | + if ($meta) { |
|
46 | 46 | $meta->description = $doc; |
47 | 47 | $meta->type = $type; |
48 | - $meta->container = $type == 'void'?null:ContainerFactory::create($entityBuilder, $type); |
|
48 | + $meta->container = $type == 'void' ?null:ContainerFactory::create($entityBuilder, $type); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | } |
52 | 52 | \ No newline at end of file |
@@ -55,12 +55,12 @@ |
||
55 | 55 | */ |
56 | 56 | public function rule($rule, $fields) |
57 | 57 | { |
58 | - if(is_string($rule)){ |
|
58 | + if (is_string($rule)) { |
|
59 | 59 | $rules = explode('|', $rule); |
60 | - foreach ($rules as $r){ |
|
60 | + foreach ($rules as $r) { |
|
61 | 61 | $params = explode(':', trim($r)); |
62 | 62 | $rule = $params[0]; |
63 | - $params = isset($params[1])?explode(',', $params[1]):[]; |
|
63 | + $params = isset($params[1]) ?explode(',', $params[1]) : []; |
|
64 | 64 | |
65 | 65 | call_user_func_array([$this, 'parent::rule'], array_merge([$rule, $fields], $params)); |
66 | 66 |
@@ -113,6 +113,9 @@ discard block |
||
113 | 113 | |
114 | 114 | class OrderByRule extends LimitRule |
115 | 115 | { |
116 | + /** |
|
117 | + * @param Context $context |
|
118 | + */ |
|
116 | 119 | public function __construct($context){ |
117 | 120 | parent::__construct($context); |
118 | 121 | $this->order = new OrderByImpl(); |
@@ -260,7 +263,7 @@ discard block |
||
260 | 263 | * "WHERE a=1 AND b IN(1,2) AND c BETWEEN 1 AND 2 AND d<>1" |
261 | 264 | * |
262 | 265 | * @param string|array|callable $conditions |
263 | - * @param mixed $_ |
|
266 | + * @param string $_ |
|
264 | 267 | * @return \PhpBoot\DB\rules\select\NextWhereRule |
265 | 268 | */ |
266 | 269 | public function where($conditions=null, $_=null) { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param string|false $asDict |
40 | 40 | * @return array |
41 | 41 | */ |
42 | - public function get($asDict=false) { |
|
42 | + public function get($asDict = false) { |
|
43 | 43 | return ExecImpl::get($this->context, $asDict); |
44 | 44 | } |
45 | 45 | |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * Execute sql and get one response |
54 | 54 | * @return null |
55 | 55 | */ |
56 | - public function getFirst(){ |
|
56 | + public function getFirst() { |
|
57 | 57 | $res = ExecImpl::get($this->context); |
58 | - if(count($res)){ |
|
58 | + if (count($res)) { |
|
59 | 59 | return $res[0]; |
60 | 60 | } |
61 | 61 | return null; |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | * @param string $table |
69 | 69 | * @return \PhpBoot\DB\rules\select\JoinRule |
70 | 70 | */ |
71 | - public function from($table, $as=null){ |
|
72 | - FromImpl::from($this->context, $table,$as); |
|
71 | + public function from($table, $as = null) { |
|
72 | + FromImpl::from($this->context, $table, $as); |
|
73 | 73 | return new JoinRule($this->context); |
74 | 74 | } |
75 | 75 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * @param string $column |
81 | 81 | * @return \PhpBoot\DB\rules\select\GetRule |
82 | 82 | */ |
83 | - public function of($column){ |
|
83 | + public function of($column) { |
|
84 | 84 | ForUpdateOfImpl::of($this->context, $column); |
85 | 85 | return new GetRule($this->context); |
86 | 86 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * forUpdate() => 'FOR UPDATE' |
92 | 92 | * @return \PhpBoot\DB\rules\select\ForUpdateOfRule |
93 | 93 | */ |
94 | - public function forUpdate(){ |
|
94 | + public function forUpdate() { |
|
95 | 95 | ForUpdateImpl::forUpdate($this->context); |
96 | 96 | return new ForUpdateOfRule($this->context); |
97 | 97 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | |
114 | 114 | class OrderByRule extends LimitRule |
115 | 115 | { |
116 | - public function __construct($context){ |
|
116 | + public function __construct($context) { |
|
117 | 117 | parent::__construct($context); |
118 | 118 | $this->order = new OrderByImpl(); |
119 | 119 | } |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * @param string $order Sql::ORDER_BY_ASC or Sql::ORDER_BY_DESC |
129 | 129 | * @return \PhpBoot\DB\rules\select\OrderByRule |
130 | 130 | */ |
131 | - public function orderBy($column, $order=null) { |
|
131 | + public function orderBy($column, $order = null) { |
|
132 | 132 | $this->order->orderBy($this->context, $column, $order); |
133 | 133 | return $this; |
134 | 134 | } |
@@ -174,17 +174,17 @@ discard block |
||
174 | 174 | * @param string $_ |
175 | 175 | * @return \PhpBoot\DB\rules\select\HavingRule |
176 | 176 | */ |
177 | - public function having($expr, $_=null) { |
|
178 | - if(is_callable($expr)){ |
|
179 | - $callback = function ($context)use($expr){ |
|
177 | + public function having($expr, $_ = null) { |
|
178 | + if (is_callable($expr)) { |
|
179 | + $callback = function($context)use($expr){ |
|
180 | 180 | $rule = new ScopedQuery($context); |
181 | 181 | $expr($rule); |
182 | 182 | }; |
183 | 183 | $expr = $callback; |
184 | 184 | } |
185 | - if($this->isTheFirst){ |
|
185 | + if ($this->isTheFirst) { |
|
186 | 186 | WhereImpl::where($this->context, 'HAVING', $expr, array_slice(func_get_args(), 1)); |
187 | - }else{ |
|
187 | + }else { |
|
188 | 188 | WhereImpl::where($this->context, 'AND', $expr, array_slice(func_get_args(), 1)); |
189 | 189 | } |
190 | 190 | |
@@ -211,9 +211,9 @@ discard block |
||
211 | 211 | * @param string $_ |
212 | 212 | * @return \PhpBoot\DB\rules\select\HavingRule |
213 | 213 | */ |
214 | - public function orHaving($expr, $_=null) { |
|
215 | - if(is_callable($expr)){ |
|
216 | - $callback = function ($context)use($expr){ |
|
214 | + public function orHaving($expr, $_ = null) { |
|
215 | + if (is_callable($expr)) { |
|
216 | + $callback = function($context)use($expr){ |
|
217 | 217 | $rule = new ScopedQuery($context); |
218 | 218 | $expr($rule); |
219 | 219 | }; |
@@ -263,17 +263,17 @@ discard block |
||
263 | 263 | * @param mixed $_ |
264 | 264 | * @return \PhpBoot\DB\rules\select\NextWhereRule |
265 | 265 | */ |
266 | - public function where($conditions=null, $_=null) { |
|
267 | - if(is_callable($conditions)){ |
|
268 | - $callback = function ($context)use($conditions){ |
|
266 | + public function where($conditions = null, $_ = null) { |
|
267 | + if (is_callable($conditions)) { |
|
268 | + $callback = function($context)use($conditions){ |
|
269 | 269 | $rule = new ScopedQuery($context); |
270 | 270 | $conditions($rule); |
271 | 271 | }; |
272 | 272 | $conditions = $callback; |
273 | 273 | } |
274 | - if($this->isTheFirst){ |
|
275 | - WhereImpl::where($this->context, 'WHERE' ,$conditions, array_slice(func_get_args(), 1)); |
|
276 | - }else{ |
|
274 | + if ($this->isTheFirst) { |
|
275 | + WhereImpl::where($this->context, 'WHERE', $conditions, array_slice(func_get_args(), 1)); |
|
276 | + }else { |
|
277 | 277 | WhereImpl::where($this->context, 'AND', $conditions, array_slice(func_get_args(), 1)); |
278 | 278 | } |
279 | 279 | return new NextWhereRule($this->context, false); |
@@ -304,9 +304,9 @@ discard block |
||
304 | 304 | * |
305 | 305 | * @TODO orWhere 只能跟在 Where 后 |
306 | 306 | */ |
307 | - public function orWhere($conditions=null, $_=null) { |
|
308 | - if(is_callable($conditions)){ |
|
309 | - $callback = function ($context)use($conditions){ |
|
307 | + public function orWhere($conditions = null, $_ = null) { |
|
308 | + if (is_callable($conditions)) { |
|
309 | + $callback = function($context)use($conditions){ |
|
310 | 310 | $rule = new ScopedQuery($context); |
311 | 311 | $conditions($rule); |
312 | 312 | }; |
@@ -325,8 +325,8 @@ discard block |
||
325 | 325 | * @param string $table |
326 | 326 | * @return \PhpBoot\DB\rules\select\JoinOnRule |
327 | 327 | */ |
328 | - public function join($table){ |
|
329 | - JoinImpl::join($this->context,null, $table); |
|
328 | + public function join($table) { |
|
329 | + JoinImpl::join($this->context, null, $table); |
|
330 | 330 | return new JoinOnRule($this->context); |
331 | 331 | } |
332 | 332 | /** |
@@ -334,8 +334,8 @@ discard block |
||
334 | 334 | * @param string $table |
335 | 335 | * @return \PhpBoot\DB\rules\select\JoinOnRule |
336 | 336 | */ |
337 | - public function leftJoin($table){ |
|
338 | - JoinImpl::join($this->context,'LEFT', $table); |
|
337 | + public function leftJoin($table) { |
|
338 | + JoinImpl::join($this->context, 'LEFT', $table); |
|
339 | 339 | return new JoinOnRule($this->context); |
340 | 340 | } |
341 | 341 | /** |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | * @return \PhpBoot\DB\rules\select\JoinOnRule |
345 | 345 | */ |
346 | 346 | public function rightJoin($table) { |
347 | - JoinImpl::join($this->context,'RIGHT', $table); |
|
347 | + JoinImpl::join($this->context, 'RIGHT', $table); |
|
348 | 348 | return new JoinOnRule($this->context); |
349 | 349 | } |
350 | 350 | /** |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | * @return \PhpBoot\DB\rules\select\JoinOnRule |
354 | 354 | */ |
355 | 355 | public function innerJoin($table) { |
356 | - JoinImpl::join($this->context,'INNER', $table); |
|
356 | + JoinImpl::join($this->context, 'INNER', $table); |
|
357 | 357 | return new JoinOnRule($this->context); |
358 | 358 | } |
359 | 359 | } |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | * @param string $condition |
366 | 366 | * @return \PhpBoot\DB\rules\select\JoinRule |
367 | 367 | */ |
368 | - public function on($condition){ |
|
368 | + public function on($condition) { |
|
369 | 369 | JoinOnImpl::on($this->context, $condition); |
370 | 370 | return new JoinRule($this->context); |
371 | 371 | } |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | } |
185 | 185 | if($this->isTheFirst){ |
186 | 186 | WhereImpl::where($this->context, 'HAVING', $expr, array_slice(func_get_args(), 1)); |
187 | - }else{ |
|
187 | + } else{ |
|
188 | 188 | WhereImpl::where($this->context, 'AND', $expr, array_slice(func_get_args(), 1)); |
189 | 189 | } |
190 | 190 | |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | } |
274 | 274 | if($this->isTheFirst){ |
275 | 275 | WhereImpl::where($this->context, 'WHERE' ,$conditions, array_slice(func_get_args(), 1)); |
276 | - }else{ |
|
276 | + } else{ |
|
277 | 277 | WhereImpl::where($this->context, 'AND', $conditions, array_slice(func_get_args(), 1)); |
278 | 278 | } |
279 | 279 | return new NextWhereRule($this->context, false); |
@@ -8,6 +8,11 @@ discard block |
||
8 | 8 | use PhpBoot\DB\Context; |
9 | 9 | |
10 | 10 | class ExecResult{ |
11 | + |
|
12 | + /** |
|
13 | + * @param \PDO $pdo |
|
14 | + * @param \PDOStatement $st |
|
15 | + */ |
|
11 | 16 | public function __construct($success, $pdo, $st){ |
12 | 17 | $this->pdo = $pdo; |
13 | 18 | $this->st = $st; |
@@ -41,6 +46,10 @@ discard block |
||
41 | 46 | |
42 | 47 | class SelectImpl |
43 | 48 | { |
49 | + /** |
|
50 | + * @param Context $context |
|
51 | + * @param string $columns |
|
52 | + */ |
|
44 | 53 | static public function select($context, $columns){ |
45 | 54 | $context->appendSql("SELECT $columns"); |
46 | 55 | } |
@@ -48,6 +57,10 @@ discard block |
||
48 | 57 | |
49 | 58 | class FromImpl |
50 | 59 | { |
60 | + /** |
|
61 | + * @param Context $context |
|
62 | + * @param string $tables |
|
63 | + */ |
|
51 | 64 | static public function from($context, $tables,$as=null){ |
52 | 65 | if($tables instanceof BasicRule){ |
53 | 66 | $context->appendSql("FROM (".$tables->context->sql.')'); |
@@ -63,6 +76,10 @@ discard block |
||
63 | 76 | |
64 | 77 | class DeleteImpl |
65 | 78 | { |
79 | + /** |
|
80 | + * @param Context $context |
|
81 | + * @param string $from |
|
82 | + */ |
|
66 | 83 | static public function deleteFrom($context, $from) |
67 | 84 | { |
68 | 85 | $context->appendSql("DELETE FROM ".DB::wrap($from)); |
@@ -71,6 +88,11 @@ discard block |
||
71 | 88 | |
72 | 89 | class JoinImpl |
73 | 90 | { |
91 | + /** |
|
92 | + * @param Context $context |
|
93 | + * @param null|string $type |
|
94 | + * @param string $table |
|
95 | + */ |
|
74 | 96 | static public function join($context, $type, $table) { |
75 | 97 | $table = DB::wrap($table); |
76 | 98 | if($type){ |
@@ -83,6 +105,10 @@ discard block |
||
83 | 105 | |
84 | 106 | class JoinOnImpl |
85 | 107 | { |
108 | + /** |
|
109 | + * @param Context $context |
|
110 | + * @param string $condition |
|
111 | + */ |
|
86 | 112 | static public function on($context, $condition) { |
87 | 113 | $context->appendSql("ON $condition"); |
88 | 114 | } |
@@ -90,6 +116,9 @@ discard block |
||
90 | 116 | |
91 | 117 | class ForUpdateImpl |
92 | 118 | { |
119 | + /** |
|
120 | + * @param Context $context |
|
121 | + */ |
|
93 | 122 | static public function forUpdate($context){ |
94 | 123 | $context->appendSql("FOR UPDATE"); |
95 | 124 | } |
@@ -97,6 +126,10 @@ discard block |
||
97 | 126 | |
98 | 127 | class ForUpdateOfImpl |
99 | 128 | { |
129 | + /** |
|
130 | + * @param Context $context |
|
131 | + * @param string $column |
|
132 | + */ |
|
100 | 133 | static public function of($context, $column){ |
101 | 134 | $column = DB::wrap($column); |
102 | 135 | $context->appendSql("OF $column"); |
@@ -105,6 +138,10 @@ discard block |
||
105 | 138 | |
106 | 139 | class InsertImpl |
107 | 140 | { |
141 | + /** |
|
142 | + * @param Context $context |
|
143 | + * @param string $table |
|
144 | + */ |
|
108 | 145 | static public function insertInto($context, $table) { |
109 | 146 | $table = DB::wrap($table); |
110 | 147 | $context->appendSql("INSERT INTO $table"); |
@@ -112,6 +149,10 @@ discard block |
||
112 | 149 | } |
113 | 150 | class ReplaceImpl |
114 | 151 | { |
152 | + /** |
|
153 | + * @param Context $context |
|
154 | + * @param string $table |
|
155 | + */ |
|
115 | 156 | static public function replaceInto($context, $table) { |
116 | 157 | $table = DB::wrap($table); |
117 | 158 | $context->appendSql("REPLACE INTO $table"); |
@@ -195,6 +236,10 @@ discard block |
||
195 | 236 | |
196 | 237 | class UpdateImpl |
197 | 238 | { |
239 | + /** |
|
240 | + * @param Context $context |
|
241 | + * @param string $table |
|
242 | + */ |
|
198 | 243 | static public function update($context, $table){ |
199 | 244 | $table = DB::wrap($table); |
200 | 245 | $context->appendSql("UPDATE $table"); |
@@ -211,6 +256,9 @@ discard block |
||
211 | 256 | } |
212 | 257 | } |
213 | 258 | |
259 | + /** |
|
260 | + * @param string $expr |
|
261 | + */ |
|
214 | 262 | public function setExpr(Context $context, $expr, $args){ |
215 | 263 | if($this->first){ |
216 | 264 | $this->first = false; |
@@ -273,6 +321,11 @@ discard block |
||
273 | 321 | } |
274 | 322 | return $this; |
275 | 323 | } |
324 | + |
|
325 | + /** |
|
326 | + * @param string $column |
|
327 | + * @param string $order |
|
328 | + */ |
|
276 | 329 | public function orderBy(Context $context, $column, $order=null){ |
277 | 330 | if(is_string($column)){ |
278 | 331 | if($order === null){ |
@@ -290,12 +343,20 @@ discard block |
||
290 | 343 | |
291 | 344 | class LimitImpl |
292 | 345 | { |
346 | + /** |
|
347 | + * @param integer $size |
|
348 | + */ |
|
293 | 349 | static public function limit(Context $context, $size){ |
294 | 350 | $intSize = intval($size); |
295 | 351 | strval($intSize) == $size or \PhpBoot\abort( |
296 | 352 | new \InvalidArgumentException("invalid params for limit($size)")); |
297 | 353 | $context->appendSql("LIMIT $size"); |
298 | 354 | } |
355 | + |
|
356 | + /** |
|
357 | + * @param integer $start |
|
358 | + * @param integer $size |
|
359 | + */ |
|
299 | 360 | static public function limitWithOffset(Context $context, $start, $size){ |
300 | 361 | $intStart = intval($start); |
301 | 362 | $intSize = intval($size); |
@@ -307,6 +368,9 @@ discard block |
||
307 | 368 | |
308 | 369 | class WhereImpl{ |
309 | 370 | |
371 | + /** |
|
372 | + * @param string $str |
|
373 | + */ |
|
310 | 374 | static private function findQ($str,$offset = 0,$no=0){ |
311 | 375 | $found = strpos($str, '?', $offset); |
312 | 376 | if($no == 0 || $found === false){ |
@@ -315,6 +379,9 @@ discard block |
||
315 | 379 | return self::findQ($str, $found+1, $no-1); |
316 | 380 | } |
317 | 381 | |
382 | + /** |
|
383 | + * @param string $prefix |
|
384 | + */ |
|
318 | 385 | static public function where(Context $context, $prefix, $expr, $args){ |
319 | 386 | if(empty($expr)){ |
320 | 387 | return; |
@@ -433,6 +500,10 @@ discard block |
||
433 | 500 | |
434 | 501 | self::condition($context, $prefix, implode(' AND ', $exprs), $params); |
435 | 502 | } |
503 | + |
|
504 | + /** |
|
505 | + * @param string $expr |
|
506 | + */ |
|
436 | 507 | static public function condition(Context $context, $prefix, $expr, $args){ |
437 | 508 | if(!empty($expr)){ |
438 | 509 | $expr = "($expr)"; |
@@ -505,6 +576,10 @@ discard block |
||
505 | 576 | } |
506 | 577 | |
507 | 578 | class GroupByImpl{ |
579 | + |
|
580 | + /** |
|
581 | + * @param string $column |
|
582 | + */ |
|
508 | 583 | static public function groupBy(Context $context, $column){ |
509 | 584 | $column = DB::wrap($column); |
510 | 585 | $context->appendSql("GROUP BY $column"); |
@@ -527,7 +602,6 @@ discard block |
||
527 | 602 | /** |
528 | 603 | * |
529 | 604 | * @param Context $context |
530 | - * @param string|false $asDict return as dict or array |
|
531 | 605 | * @return false|array |
532 | 606 | */ |
533 | 607 | static public function get($context, $dictAs=false){ |
@@ -586,6 +660,9 @@ discard block |
||
586 | 660 | } |
587 | 661 | class OnDuplicateKeyUpdateImpl |
588 | 662 | { |
663 | + /** |
|
664 | + * @param Context $context |
|
665 | + */ |
|
589 | 666 | public function set($context, $column, $value){ |
590 | 667 | if(is_string($column)){ |
591 | 668 | $this->setExpr($context, $column, $value); |
@@ -594,6 +671,9 @@ discard block |
||
594 | 671 | } |
595 | 672 | } |
596 | 673 | |
674 | + /** |
|
675 | + * @param string $expr |
|
676 | + */ |
|
597 | 677 | public function setExpr($context, $expr, $args){ |
598 | 678 | $prefix = ''; |
599 | 679 | if($this->first){ |
@@ -119,7 +119,7 @@ |
||
119 | 119 | } |
120 | 120 | class ValuesImpl |
121 | 121 | { |
122 | - static public function values(Context $context, array $values){ |
|
122 | + static public function values(Context $context, array $values){ |
|
123 | 123 | $params = []; |
124 | 124 | $stubs = []; |
125 | 125 | foreach ($values as $v){ |
@@ -7,14 +7,14 @@ discard block |
||
7 | 7 | use PhpBoot\DB\rules\basic\BasicRule; |
8 | 8 | use PhpBoot\DB\Context; |
9 | 9 | |
10 | -class ExecResult{ |
|
11 | - public function __construct($success, $pdo, $st){ |
|
10 | +class ExecResult { |
|
11 | + public function __construct($success, $pdo, $st) { |
|
12 | 12 | $this->pdo = $pdo; |
13 | 13 | $this->st = $st; |
14 | 14 | $this->success = $success; |
15 | 15 | $this->rows = $this->st->rowCount(); |
16 | 16 | } |
17 | - public function lastInsertId($name=null){ |
|
17 | + public function lastInsertId($name = null) { |
|
18 | 18 | return $this->pdo->lastInsertId($name); |
19 | 19 | } |
20 | 20 | /** |
@@ -41,21 +41,21 @@ discard block |
||
41 | 41 | |
42 | 42 | class SelectImpl |
43 | 43 | { |
44 | - static public function select($context, $columns){ |
|
44 | + static public function select($context, $columns) { |
|
45 | 45 | $context->appendSql("SELECT $columns"); |
46 | 46 | } |
47 | 47 | } |
48 | 48 | |
49 | 49 | class FromImpl |
50 | 50 | { |
51 | - static public function from($context, $tables,$as=null){ |
|
52 | - if($tables instanceof BasicRule){ |
|
51 | + static public function from($context, $tables, $as = null) { |
|
52 | + if ($tables instanceof BasicRule) { |
|
53 | 53 | $context->appendSql("FROM (".$tables->context->sql.')'); |
54 | - $context->params = array_merge($context->params,$tables->context->params); |
|
54 | + $context->params = array_merge($context->params, $tables->context->params); |
|
55 | 55 | }else { |
56 | 56 | $context->appendSql("FROM ".DB::wrap($tables)); |
57 | 57 | } |
58 | - if($as){ |
|
58 | + if ($as) { |
|
59 | 59 | $context->appendSql("AS ".DB::wrap($as)); |
60 | 60 | } |
61 | 61 | } |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | { |
74 | 74 | static public function join($context, $type, $table) { |
75 | 75 | $table = DB::wrap($table); |
76 | - if($type){ |
|
76 | + if ($type) { |
|
77 | 77 | $context->appendSql("$type JOIN $table"); |
78 | - }else{ |
|
78 | + }else { |
|
79 | 79 | $context->appendSql("JOIN $table"); |
80 | 80 | } |
81 | 81 | } |
@@ -90,14 +90,14 @@ discard block |
||
90 | 90 | |
91 | 91 | class ForUpdateImpl |
92 | 92 | { |
93 | - static public function forUpdate($context){ |
|
93 | + static public function forUpdate($context) { |
|
94 | 94 | $context->appendSql("FOR UPDATE"); |
95 | 95 | } |
96 | 96 | } |
97 | 97 | |
98 | 98 | class ForUpdateOfImpl |
99 | 99 | { |
100 | - static public function of($context, $column){ |
|
100 | + static public function of($context, $column) { |
|
101 | 101 | $column = DB::wrap($column); |
102 | 102 | $context->appendSql("OF $column"); |
103 | 103 | } |
@@ -119,57 +119,57 @@ discard block |
||
119 | 119 | } |
120 | 120 | class ValuesImpl |
121 | 121 | { |
122 | - static public function values(Context $context, array $values){ |
|
122 | + static public function values(Context $context, array $values) { |
|
123 | 123 | $params = []; |
124 | 124 | $stubs = []; |
125 | - foreach ($values as $v){ |
|
126 | - if(is_a($v, Raw::class)){//直接拼接sql,不需要转义 |
|
127 | - $stubs[]=$v->get(); |
|
128 | - }else{ |
|
129 | - $stubs[]='?'; |
|
125 | + foreach ($values as $v) { |
|
126 | + if (is_a($v, Raw::class)) {//直接拼接sql,不需要转义 |
|
127 | + $stubs[] = $v->get(); |
|
128 | + }else { |
|
129 | + $stubs[] = '?'; |
|
130 | 130 | $params[] = $v; |
131 | 131 | } |
132 | 132 | } |
133 | 133 | $stubs = implode(',', $stubs); |
134 | 134 | |
135 | - if(array_keys($values) === range(0, count($values) - 1)){ |
|
135 | + if (array_keys($values) === range(0, count($values) - 1)) { |
|
136 | 136 | //VALUES(val0, val1, val2) |
137 | 137 | $context->appendSql("VALUES($stubs)"); |
138 | 138 | |
139 | - }else{ |
|
139 | + }else { |
|
140 | 140 | //(col0, col1, col2) VALUES(val0, val1, val2) |
141 | - $columns = implode(',', array_map(function($k){return DB::wrap($k);}, array_keys($values))); |
|
142 | - $context->appendSql("($columns) VALUES($stubs)",false); |
|
141 | + $columns = implode(',', array_map(function($k) {return DB::wrap($k); }, array_keys($values))); |
|
142 | + $context->appendSql("($columns) VALUES($stubs)", false); |
|
143 | 143 | } |
144 | 144 | $context->appendParams($params); |
145 | 145 | } |
146 | 146 | static public function batchValues(Context $context, array $values) |
147 | 147 | { |
148 | 148 | $count = count($values); |
149 | - if($count == 0){ |
|
149 | + if ($count == 0) { |
|
150 | 150 | return; |
151 | 151 | } |
152 | 152 | $keys = array_keys($values[0]); |
153 | 153 | $row = implode(',', self::toSql(array_values($values[0]))); |
154 | - if($keys === range(0, count($keys) - 1)){ |
|
154 | + if ($keys === range(0, count($keys) - 1)) { |
|
155 | 155 | //VALUES(val0, val1, val2) |
156 | 156 | $context->appendSql("VALUES($row)"); |
157 | - }else{ |
|
157 | + }else { |
|
158 | 158 | //(col0, col1, col2) VALUES(val0, val1, val2) |
159 | - $columns = implode(',', array_map(function($k){return DB::wrap($k);}, $keys)); |
|
160 | - $context->appendSql("($columns) VALUES($row)",false); |
|
159 | + $columns = implode(',', array_map(function($k) {return DB::wrap($k); }, $keys)); |
|
160 | + $context->appendSql("($columns) VALUES($row)", false); |
|
161 | 161 | } |
162 | - for($i=1; $i<$count; $i++){ |
|
162 | + for ($i = 1; $i<$count; $i++) { |
|
163 | 163 | $value = self::pick($keys, $values[$i]); |
164 | 164 | $row = implode(',', self::toSql($value)); |
165 | - $context->appendSql(", ($row)",false); |
|
165 | + $context->appendSql(", ($row)", false); |
|
166 | 166 | } |
167 | 167 | } |
168 | 168 | |
169 | 169 | static protected function pick(array $keys, array $values) |
170 | 170 | { |
171 | 171 | $res = []; |
172 | - foreach ($keys as $key){ |
|
172 | + foreach ($keys as $key) { |
|
173 | 173 | array_key_exists($key, $values) or \PhpBoot\abort("key $key not exist from the given array"); |
174 | 174 | $res[$key] = $values[$key]; |
175 | 175 | } |
@@ -177,12 +177,12 @@ discard block |
||
177 | 177 | } |
178 | 178 | static protected function toSql(array $values) |
179 | 179 | { |
180 | - foreach ($values as &$v){ |
|
181 | - if($v instanceof Raw){ |
|
180 | + foreach ($values as &$v) { |
|
181 | + if ($v instanceof Raw) { |
|
182 | 182 | $v = $v->get(); |
183 | - }elseif(is_bool($v)){ |
|
184 | - $v = $v?'true':'false'; |
|
185 | - }elseif(!in_array(gettype($v), ['integer', 'boolean', 'double', 'float'])){ |
|
183 | + }elseif (is_bool($v)) { |
|
184 | + $v = $v ? 'true' : 'false'; |
|
185 | + }elseif (!in_array(gettype($v), ['integer', 'boolean', 'double', 'float'])) { |
|
186 | 186 | $v = (string)$v; |
187 | 187 | $v = str_replace("\\", "\\\\", $v); |
188 | 188 | $v = str_replace("'", "\\'", $v); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | |
196 | 196 | class UpdateImpl |
197 | 197 | { |
198 | - static public function update($context, $table){ |
|
198 | + static public function update($context, $table) { |
|
199 | 199 | $table = DB::wrap($table); |
200 | 200 | $context->appendSql("UPDATE $table"); |
201 | 201 | } |
@@ -203,81 +203,81 @@ discard block |
||
203 | 203 | |
204 | 204 | class UpdateSetImpl |
205 | 205 | { |
206 | - public function set(Context $context, $expr, $args){ |
|
207 | - if(is_string($expr)){ |
|
206 | + public function set(Context $context, $expr, $args) { |
|
207 | + if (is_string($expr)) { |
|
208 | 208 | return $this->setExpr($context, $expr, $args); |
209 | - }else{ |
|
209 | + }else { |
|
210 | 210 | return $this->setArgs($context, $expr); |
211 | 211 | } |
212 | 212 | } |
213 | 213 | |
214 | - public function setExpr(Context $context, $expr, $args){ |
|
215 | - if($this->first){ |
|
214 | + public function setExpr(Context $context, $expr, $args) { |
|
215 | + if ($this->first) { |
|
216 | 216 | $this->first = false; |
217 | 217 | $prefix = 'SET '; |
218 | - }else{ |
|
218 | + }else { |
|
219 | 219 | $prefix = ','; |
220 | 220 | } |
221 | 221 | |
222 | - $context->appendSql("$prefix$expr",$prefix == 'SET '); |
|
222 | + $context->appendSql("$prefix$expr", $prefix == 'SET '); |
|
223 | 223 | $context->appendParams($args); |
224 | 224 | |
225 | 225 | } |
226 | - public function setArgs(Context $context, $values){ |
|
226 | + public function setArgs(Context $context, $values) { |
|
227 | 227 | $set = []; |
228 | 228 | $params = []; |
229 | - foreach ($values as $k=>$v){ |
|
229 | + foreach ($values as $k=>$v) { |
|
230 | 230 | $k = DB::wrap($k); |
231 | - if(is_a($v, Raw::class)){//直接拼接sql,不需要转义 |
|
232 | - $set[]= "$k=".$v->get(); |
|
233 | - }else{ |
|
234 | - $set[]= "$k=?"; |
|
235 | - $params[]=$v; |
|
231 | + if (is_a($v, Raw::class)) {//直接拼接sql,不需要转义 |
|
232 | + $set[] = "$k=".$v->get(); |
|
233 | + }else { |
|
234 | + $set[] = "$k=?"; |
|
235 | + $params[] = $v; |
|
236 | 236 | } |
237 | 237 | } |
238 | - if($this->first){ |
|
238 | + if ($this->first) { |
|
239 | 239 | $this->first = false; |
240 | 240 | $context->appendSql('SET '.implode(',', $set)); |
241 | 241 | $context->appendParams($params); |
242 | - }else{ |
|
243 | - $context->appendSql(','.implode(',', $set),false); |
|
242 | + }else { |
|
243 | + $context->appendSql(','.implode(',', $set), false); |
|
244 | 244 | $context->appendParams($params); |
245 | 245 | } |
246 | 246 | } |
247 | - private $first=true; |
|
247 | + private $first = true; |
|
248 | 248 | } |
249 | 249 | class OrderByImpl |
250 | 250 | { |
251 | - public function orderByArgs(Context $context, $orders){ |
|
252 | - if(empty($orders)){ |
|
251 | + public function orderByArgs(Context $context, $orders) { |
|
252 | + if (empty($orders)) { |
|
253 | 253 | return $this; |
254 | 254 | } |
255 | 255 | $params = array(); |
256 | - foreach ($orders as $k=>$v){ |
|
257 | - if(is_integer($k)){ |
|
256 | + foreach ($orders as $k=>$v) { |
|
257 | + if (is_integer($k)) { |
|
258 | 258 | $params[] = DB::wrap($v); |
259 | - }else{ |
|
259 | + }else { |
|
260 | 260 | $k = DB::wrap($k); |
261 | 261 | |
262 | 262 | $v = strtoupper($v); |
263 | - ($v =='DESC' || $v =='ASC') or \PhpBoot\abort( new \InvalidArgumentException("invalid params for orderBy(".json_encode($orders).")")); |
|
263 | + ($v == 'DESC' || $v == 'ASC') or \PhpBoot\abort(new \InvalidArgumentException("invalid params for orderBy(".json_encode($orders).")")); |
|
264 | 264 | |
265 | 265 | $params[] = "$k $v"; |
266 | 266 | } |
267 | 267 | } |
268 | - if($this->first){ |
|
268 | + if ($this->first) { |
|
269 | 269 | $this->first = false; |
270 | 270 | $context->appendSql('ORDER BY '.implode(',', $params)); |
271 | - }else{ |
|
272 | - $context->appendSql(','.implode(',', $params),false); |
|
271 | + }else { |
|
272 | + $context->appendSql(','.implode(',', $params), false); |
|
273 | 273 | } |
274 | 274 | return $this; |
275 | 275 | } |
276 | - public function orderBy(Context $context, $column, $order=null){ |
|
277 | - if(is_string($column)){ |
|
278 | - if($order === null){ |
|
276 | + public function orderBy(Context $context, $column, $order = null) { |
|
277 | + if (is_string($column)) { |
|
278 | + if ($order === null) { |
|
279 | 279 | $column = [$column]; |
280 | - }else{ |
|
280 | + }else { |
|
281 | 281 | $column = [$column=>$order]; |
282 | 282 | } |
283 | 283 | } |
@@ -285,18 +285,18 @@ discard block |
||
285 | 285 | |
286 | 286 | |
287 | 287 | } |
288 | - private $first=true; |
|
288 | + private $first = true; |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | class LimitImpl |
292 | 292 | { |
293 | - static public function limit(Context $context, $size){ |
|
293 | + static public function limit(Context $context, $size) { |
|
294 | 294 | $intSize = intval($size); |
295 | 295 | strval($intSize) == $size or \PhpBoot\abort( |
296 | 296 | new \InvalidArgumentException("invalid params for limit($size)")); |
297 | 297 | $context->appendSql("LIMIT $size"); |
298 | 298 | } |
299 | - static public function limitWithOffset(Context $context, $start, $size){ |
|
299 | + static public function limitWithOffset(Context $context, $start, $size) { |
|
300 | 300 | $intStart = intval($start); |
301 | 301 | $intSize = intval($size); |
302 | 302 | strval($intStart) == $start && strval($intSize) == $size or \PhpBoot\abort( |
@@ -305,31 +305,31 @@ discard block |
||
305 | 305 | } |
306 | 306 | } |
307 | 307 | |
308 | -class WhereImpl{ |
|
308 | +class WhereImpl { |
|
309 | 309 | |
310 | - static private function findQ($str,$offset = 0,$no=0){ |
|
310 | + static private function findQ($str, $offset = 0, $no = 0) { |
|
311 | 311 | $found = strpos($str, '?', $offset); |
312 | - if($no == 0 || $found === false){ |
|
312 | + if ($no == 0 || $found === false) { |
|
313 | 313 | return $found; |
314 | 314 | } |
315 | - return self::findQ($str, $found+1, $no-1); |
|
315 | + return self::findQ($str, $found + 1, $no - 1); |
|
316 | 316 | } |
317 | 317 | |
318 | - static public function where(Context $context, $prefix, $expr, $args){ |
|
319 | - if(empty($expr)){ |
|
318 | + static public function where(Context $context, $prefix, $expr, $args) { |
|
319 | + if (empty($expr)) { |
|
320 | 320 | return; |
321 | 321 | } |
322 | - if(is_callable($expr)){ |
|
323 | - self::conditionClosure($context,$prefix, $expr); |
|
324 | - }elseif (is_string($expr)){ |
|
322 | + if (is_callable($expr)) { |
|
323 | + self::conditionClosure($context, $prefix, $expr); |
|
324 | + }elseif (is_string($expr)) { |
|
325 | 325 | self::condition($context, $prefix, $expr, $args); |
326 | - }else{ |
|
326 | + }else { |
|
327 | 327 | self::conditionArgs($context, $prefix, $expr); |
328 | 328 | } |
329 | 329 | |
330 | 330 | } |
331 | 331 | |
332 | - static public function conditionClosure(Context $context, $prefix, callable $callback){ |
|
332 | + static public function conditionClosure(Context $context, $prefix, callable $callback) { |
|
333 | 333 | $context->appendSql($prefix.' ('); |
334 | 334 | $callback($context); |
335 | 335 | $context->appendSql(')'); |
@@ -355,15 +355,15 @@ discard block |
||
355 | 355 | * NOT IN 'id'=>['NOT IN' => [1,2,3]] |
356 | 356 | * @return void |
357 | 357 | */ |
358 | - static public function conditionArgs(Context $context, $prefix, $args=[]){ |
|
359 | - if($args ===null){ |
|
360 | - return ; |
|
358 | + static public function conditionArgs(Context $context, $prefix, $args = []) { |
|
359 | + if ($args === null) { |
|
360 | + return; |
|
361 | 361 | } |
362 | 362 | $exprs = array(); |
363 | 363 | $params = array(); |
364 | - foreach ($args as $k => $v){ |
|
364 | + foreach ($args as $k => $v) { |
|
365 | 365 | $k = DB::wrap($k); |
366 | - if(!is_array($v)){ |
|
366 | + if (!is_array($v)) { |
|
367 | 367 | $v = ['='=>$v]; |
368 | 368 | } |
369 | 369 | |
@@ -375,56 +375,56 @@ discard block |
||
375 | 375 | new \InvalidArgumentException("invalid param $op for whereArgs")); |
376 | 376 | |
377 | 377 | $var = array_values($v)[0]; |
378 | - if($op == 'IN' || $op == 'NOT IN'){ |
|
378 | + if ($op == 'IN' || $op == 'NOT IN') { |
|
379 | 379 | $stubs = []; |
380 | 380 | |
381 | - if($var instanceof BasicRule){ |
|
381 | + if ($var instanceof BasicRule) { |
|
382 | 382 | $stubs = "({$var->context->sql})"; |
383 | 383 | $params = array_merge($params, $var->context->params); |
384 | 384 | $exprs[] = "$k $op $stubs"; |
385 | - }else{ |
|
386 | - foreach ($var as $i){ |
|
387 | - if(is_a($i, Raw::class)){ |
|
388 | - $stubs[]=strval($i); |
|
389 | - }elseif($i instanceof BasicRule){ |
|
385 | + }else { |
|
386 | + foreach ($var as $i) { |
|
387 | + if (is_a($i, Raw::class)) { |
|
388 | + $stubs[] = strval($i); |
|
389 | + }elseif ($i instanceof BasicRule) { |
|
390 | 390 | $stubs = "({$i->context->sql})"; |
391 | 391 | $params = array_merge($params, $i->context->params); |
392 | - }else{ |
|
393 | - $stubs[]='?'; |
|
392 | + }else { |
|
393 | + $stubs[] = '?'; |
|
394 | 394 | $params[] = $i; |
395 | 395 | } |
396 | 396 | } |
397 | 397 | $stubs = implode(',', $stubs); |
398 | 398 | $exprs[] = "$k $op ($stubs)"; |
399 | 399 | } |
400 | - }else if($op == 'BETWEEN'){ |
|
400 | + }else if ($op == 'BETWEEN') { |
|
401 | 401 | $cond = "$k BETWEEN"; |
402 | - if(is_a($var[0], Raw::class)){ |
|
402 | + if (is_a($var[0], Raw::class)) { |
|
403 | 403 | $cond = "$cond ".strval($var[0]); |
404 | - }elseif($var[0] instanceof BasicRule){ |
|
404 | + }elseif ($var[0] instanceof BasicRule) { |
|
405 | 405 | $cond = "$cond ({$var[0]->context->sql})"; |
406 | 406 | $params = array_merge($params, $var[0]->context->params); |
407 | - }else{ |
|
407 | + }else { |
|
408 | 408 | $cond = "$cond ?"; |
409 | 409 | $params[] = $var[0]; |
410 | 410 | } |
411 | - if(is_a($var[1], Raw::class)){ |
|
411 | + if (is_a($var[1], Raw::class)) { |
|
412 | 412 | $cond = "$cond AND ".strval($var[1]); |
413 | - }elseif($var[1] instanceof BasicRule){ |
|
413 | + }elseif ($var[1] instanceof BasicRule) { |
|
414 | 414 | $cond = "$cond AND ({$var[1]->context->sql})"; |
415 | 415 | $params = array_merge($params, $var[1]->context->params); |
416 | - }else{ |
|
416 | + }else { |
|
417 | 417 | $cond = "$cond AND ?"; |
418 | 418 | $params[] = $var[1]; |
419 | 419 | } |
420 | 420 | $exprs[] = $cond; |
421 | - }else{ |
|
422 | - if(is_a($var, Raw::class)){ |
|
421 | + }else { |
|
422 | + if (is_a($var, Raw::class)) { |
|
423 | 423 | $exprs[] = "$k $op ".strval($var); |
424 | - }elseif($var instanceof BasicRule){ |
|
424 | + }elseif ($var instanceof BasicRule) { |
|
425 | 425 | $exprs[] = "$k $op {$var->context->sql}"; |
426 | 426 | $params = array_merge($params, $var->context->params); |
427 | - }else{ |
|
427 | + }else { |
|
428 | 428 | $exprs[] = "$k $op ?"; |
429 | 429 | $params[] = $var; |
430 | 430 | } |
@@ -433,22 +433,22 @@ discard block |
||
433 | 433 | |
434 | 434 | self::condition($context, $prefix, implode(' AND ', $exprs), $params); |
435 | 435 | } |
436 | - static public function condition(Context $context, $prefix, $expr, $args){ |
|
437 | - if(!empty($expr)){ |
|
436 | + static public function condition(Context $context, $prefix, $expr, $args) { |
|
437 | + if (!empty($expr)) { |
|
438 | 438 | $expr = "($expr)"; |
439 | - if($args){ |
|
439 | + if ($args) { |
|
440 | 440 | //因为PDO不支持绑定数组变量, 这里需要手动展开数组 |
441 | 441 | //也就是说把 where("id IN(?)", [1,2]) 展开成 where("id IN(?,?)", 1,2) |
442 | 442 | $cutted = null; |
443 | 443 | $cut = null; |
444 | 444 | $toReplace = array(); |
445 | 445 | |
446 | - $newArgs=array(); |
|
446 | + $newArgs = array(); |
|
447 | 447 | //找到所有数组对应的?符位置 |
448 | - foreach ($args as $k =>$arg){ |
|
449 | - if(is_array($arg) || is_a($arg, Raw::class) || is_a($arg, BasicRule::class)){ |
|
448 | + foreach ($args as $k =>$arg) { |
|
449 | + if (is_array($arg) || is_a($arg, Raw::class) || is_a($arg, BasicRule::class)) { |
|
450 | 450 | |
451 | - if(!$cutted){ |
|
451 | + if (!$cutted) { |
|
452 | 452 | $cut = new NestedStringCut($expr); |
453 | 453 | $cutted = $cut->getText(); |
454 | 454 | } |
@@ -458,54 +458,54 @@ discard block |
||
458 | 458 | $pos !== false or \PhpBoot\abort( |
459 | 459 | new \InvalidArgumentException("unmatched params and ? @ $expr")); |
460 | 460 | |
461 | - if(is_array($arg)){ |
|
461 | + if (is_array($arg)) { |
|
462 | 462 | $stubs = []; |
463 | - foreach ($arg as $i){ |
|
464 | - if(is_a($i, Raw::class)){ |
|
463 | + foreach ($arg as $i) { |
|
464 | + if (is_a($i, Raw::class)) { |
|
465 | 465 | $stubs[] = strval($i); |
466 | - }else{ |
|
466 | + }else { |
|
467 | 467 | $stubs[] = '?'; |
468 | 468 | $newArgs[] = $i; |
469 | 469 | } |
470 | 470 | } |
471 | 471 | $stubs = implode(',', $stubs); |
472 | - }elseif($arg instanceof BasicRule){ |
|
472 | + }elseif ($arg instanceof BasicRule) { |
|
473 | 473 | $stubs = "({$arg->context->sql})"; |
474 | 474 | $newArgs = array_merge($newArgs, $arg->context->params); |
475 | - }else{ |
|
475 | + }else { |
|
476 | 476 | $stubs = strval($arg); |
477 | 477 | } |
478 | 478 | $toReplace[] = [$pos, $stubs]; |
479 | 479 | |
480 | - }else{ |
|
481 | - $newArgs[]=$arg; |
|
480 | + }else { |
|
481 | + $newArgs[] = $arg; |
|
482 | 482 | } |
483 | 483 | } |
484 | 484 | |
485 | - if(count($toReplace)){ |
|
485 | + if (count($toReplace)) { |
|
486 | 486 | $toReplace = array_reverse($toReplace); |
487 | - foreach ($toReplace as $i){ |
|
487 | + foreach ($toReplace as $i) { |
|
488 | 488 | list($pos, $v) = $i; |
489 | - $expr = substr($expr, 0, $pos).$v.substr($expr, $pos+1); |
|
489 | + $expr = substr($expr, 0, $pos).$v.substr($expr, $pos + 1); |
|
490 | 490 | } |
491 | 491 | $args = $newArgs; |
492 | 492 | } |
493 | 493 | } |
494 | - if($prefix){ |
|
494 | + if ($prefix) { |
|
495 | 495 | $context->appendSql($prefix.' '.$expr); |
496 | - }else{ |
|
496 | + }else { |
|
497 | 497 | $context->appendSql($expr); |
498 | 498 | } |
499 | 499 | |
500 | - if($args){ |
|
500 | + if ($args) { |
|
501 | 501 | $context->appendParams($args); |
502 | 502 | } |
503 | 503 | } |
504 | 504 | } |
505 | 505 | } |
506 | 506 | |
507 | -class GroupByImpl{ |
|
508 | - static public function groupBy(Context $context, $column){ |
|
507 | +class GroupByImpl { |
|
508 | + static public function groupBy(Context $context, $column) { |
|
509 | 509 | $column = DB::wrap($column); |
510 | 510 | $context->appendSql("GROUP BY $column"); |
511 | 511 | } |
@@ -530,20 +530,20 @@ discard block |
||
530 | 530 | * @param string|false $asDict return as dict or array |
531 | 531 | * @return false|array |
532 | 532 | */ |
533 | - static public function get($context, $dictAs=false){ |
|
533 | + static public function get($context, $dictAs = false) { |
|
534 | 534 | |
535 | 535 | $st = $context->connection->prepare($context->sql); |
536 | - if($st->execute($context->params)){ |
|
536 | + if ($st->execute($context->params)) { |
|
537 | 537 | $res = $st->fetchAll(\PDO::FETCH_ASSOC); |
538 | - if ($dictAs){ |
|
539 | - $dict= []; |
|
540 | - foreach ($res as $i){ |
|
541 | - $dict[$i[$dictAs]]=$i; |
|
538 | + if ($dictAs) { |
|
539 | + $dict = []; |
|
540 | + foreach ($res as $i) { |
|
541 | + $dict[$i[$dictAs]] = $i; |
|
542 | 542 | } |
543 | 543 | return $context->handleResult($dict); |
544 | 544 | } |
545 | 545 | return $context->handleResult($res); |
546 | - }else{ |
|
546 | + }else { |
|
547 | 547 | return false; |
548 | 548 | } |
549 | 549 | } |
@@ -552,22 +552,22 @@ discard block |
||
552 | 552 | * @param Context $context |
553 | 553 | * @return int|false |
554 | 554 | */ |
555 | - static public function count($context){ |
|
555 | + static public function count($context) { |
|
556 | 556 | |
557 | 557 | $found = []; |
558 | - if(!preg_match('/\bselect\b/i', $context->sql, $found, PREG_OFFSET_CAPTURE) || |
|
559 | - count($found)==0){ |
|
558 | + if (!preg_match('/\bselect\b/i', $context->sql, $found, PREG_OFFSET_CAPTURE) || |
|
559 | + count($found) == 0) { |
|
560 | 560 | \PhpBoot\abort(new \PDOException("can not use count(*) without select")); |
561 | 561 | } |
562 | 562 | list($chars, $columnBegin) = $found[0]; |
563 | - $columnBegin = $columnBegin + strlen('select')+1; |
|
563 | + $columnBegin = $columnBegin + strlen('select') + 1; |
|
564 | 564 | |
565 | 565 | $columnEnd = 0; |
566 | 566 | $found = []; |
567 | - if(!preg_match('/\bfrom\b/i', $context->sql, $found, PREG_OFFSET_CAPTURE) || |
|
568 | - count($found)==0){ |
|
567 | + if (!preg_match('/\bfrom\b/i', $context->sql, $found, PREG_OFFSET_CAPTURE) || |
|
568 | + count($found) == 0) { |
|
569 | 569 | $columnEnd = strlen($context->sql); |
570 | - }else{ |
|
570 | + }else { |
|
571 | 571 | list($chars, $columnEnd) = $found[0]; |
572 | 572 | } |
573 | 573 | $sql = substr($context->sql, 0, $columnBegin); |
@@ -575,10 +575,10 @@ discard block |
||
575 | 575 | $sql .= substr($context->sql, $columnEnd); |
576 | 576 | |
577 | 577 | $st = $context->connection->prepare($sql); |
578 | - if($st->execute($context->params)){ |
|
578 | + if ($st->execute($context->params)) { |
|
579 | 579 | $res = $st->fetchAll(\PDO::FETCH_ASSOC); |
580 | 580 | return intval($res[0]['count']); |
581 | - }else{ |
|
581 | + }else { |
|
582 | 582 | return false; |
583 | 583 | } |
584 | 584 | |
@@ -586,47 +586,47 @@ discard block |
||
586 | 586 | } |
587 | 587 | class OnDuplicateKeyUpdateImpl |
588 | 588 | { |
589 | - public function set($context, $column, $value){ |
|
590 | - if(is_string($column)){ |
|
589 | + public function set($context, $column, $value) { |
|
590 | + if (is_string($column)) { |
|
591 | 591 | $this->setExpr($context, $column, $value); |
592 | - }else{ |
|
592 | + }else { |
|
593 | 593 | $this->setArgs($context, $column); |
594 | 594 | } |
595 | 595 | } |
596 | 596 | |
597 | - public function setExpr($context, $expr, $args){ |
|
597 | + public function setExpr($context, $expr, $args) { |
|
598 | 598 | $prefix = ''; |
599 | - if($this->first){ |
|
599 | + if ($this->first) { |
|
600 | 600 | $this->first = false; |
601 | 601 | $prefix = 'ON DUPLICATE KEY UPDATE '; |
602 | - }else{ |
|
602 | + }else { |
|
603 | 603 | $prefix = ','; |
604 | 604 | } |
605 | 605 | |
606 | - $context->appendSql("$prefix$expr",$prefix == 'ON DUPLICATE KEY UPDATE '); |
|
606 | + $context->appendSql("$prefix$expr", $prefix == 'ON DUPLICATE KEY UPDATE '); |
|
607 | 607 | $context->appendParams($args); |
608 | 608 | |
609 | 609 | } |
610 | - public function setArgs($context, $values){ |
|
610 | + public function setArgs($context, $values) { |
|
611 | 611 | $set = []; |
612 | 612 | $params = []; |
613 | - foreach ($values as $k=>$v){ |
|
613 | + foreach ($values as $k=>$v) { |
|
614 | 614 | $k = DB::wrap($k); |
615 | - if(is_a($v, Raw::class)){//直接拼接sql,不需要转义 |
|
616 | - $set[]= "$k=".$v->get(); |
|
617 | - }else{ |
|
618 | - $set[]= "$k=?"; |
|
619 | - $params[]=$v; |
|
615 | + if (is_a($v, Raw::class)) {//直接拼接sql,不需要转义 |
|
616 | + $set[] = "$k=".$v->get(); |
|
617 | + }else { |
|
618 | + $set[] = "$k=?"; |
|
619 | + $params[] = $v; |
|
620 | 620 | } |
621 | 621 | } |
622 | - if($this->first){ |
|
622 | + if ($this->first) { |
|
623 | 623 | $this->first = false; |
624 | 624 | $context->appendSql('ON DUPLICATE KEY UPDATE '.implode(',', $set)); |
625 | 625 | $context->appendParams($params); |
626 | - }else{ |
|
627 | - $context->appendSql(','.implode(',', $set),false); |
|
626 | + }else { |
|
627 | + $context->appendSql(','.implode(',', $set), false); |
|
628 | 628 | $context->appendParams($params); |
629 | 629 | } |
630 | 630 | } |
631 | - private $first=true; |
|
631 | + private $first = true; |
|
632 | 632 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | if($tables instanceof BasicRule){ |
53 | 53 | $context->appendSql("FROM (".$tables->context->sql.')'); |
54 | 54 | $context->params = array_merge($context->params,$tables->context->params); |
55 | - }else { |
|
55 | + } else { |
|
56 | 56 | $context->appendSql("FROM ".DB::wrap($tables)); |
57 | 57 | } |
58 | 58 | if($as){ |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $table = DB::wrap($table); |
76 | 76 | if($type){ |
77 | 77 | $context->appendSql("$type JOIN $table"); |
78 | - }else{ |
|
78 | + } else{ |
|
79 | 79 | $context->appendSql("JOIN $table"); |
80 | 80 | } |
81 | 81 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | foreach ($values as $v){ |
126 | 126 | if(is_a($v, Raw::class)){//直接拼接sql,不需要转义 |
127 | 127 | $stubs[]=$v->get(); |
128 | - }else{ |
|
128 | + } else{ |
|
129 | 129 | $stubs[]='?'; |
130 | 130 | $params[] = $v; |
131 | 131 | } |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | //VALUES(val0, val1, val2) |
137 | 137 | $context->appendSql("VALUES($stubs)"); |
138 | 138 | |
139 | - }else{ |
|
139 | + } else{ |
|
140 | 140 | //(col0, col1, col2) VALUES(val0, val1, val2) |
141 | 141 | $columns = implode(',', array_map(function($k){return DB::wrap($k);}, array_keys($values))); |
142 | 142 | $context->appendSql("($columns) VALUES($stubs)",false); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | if($keys === range(0, count($keys) - 1)){ |
155 | 155 | //VALUES(val0, val1, val2) |
156 | 156 | $context->appendSql("VALUES($row)"); |
157 | - }else{ |
|
157 | + } else{ |
|
158 | 158 | //(col0, col1, col2) VALUES(val0, val1, val2) |
159 | 159 | $columns = implode(',', array_map(function($k){return DB::wrap($k);}, $keys)); |
160 | 160 | $context->appendSql("($columns) VALUES($row)",false); |
@@ -180,9 +180,9 @@ discard block |
||
180 | 180 | foreach ($values as &$v){ |
181 | 181 | if($v instanceof Raw){ |
182 | 182 | $v = $v->get(); |
183 | - }elseif(is_bool($v)){ |
|
183 | + } elseif(is_bool($v)){ |
|
184 | 184 | $v = $v?'true':'false'; |
185 | - }elseif(!in_array(gettype($v), ['integer', 'boolean', 'double', 'float'])){ |
|
185 | + } elseif(!in_array(gettype($v), ['integer', 'boolean', 'double', 'float'])){ |
|
186 | 186 | $v = (string)$v; |
187 | 187 | $v = str_replace("\\", "\\\\", $v); |
188 | 188 | $v = str_replace("'", "\\'", $v); |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | public function set(Context $context, $expr, $args){ |
207 | 207 | if(is_string($expr)){ |
208 | 208 | return $this->setExpr($context, $expr, $args); |
209 | - }else{ |
|
209 | + } else{ |
|
210 | 210 | return $this->setArgs($context, $expr); |
211 | 211 | } |
212 | 212 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | if($this->first){ |
216 | 216 | $this->first = false; |
217 | 217 | $prefix = 'SET '; |
218 | - }else{ |
|
218 | + } else{ |
|
219 | 219 | $prefix = ','; |
220 | 220 | } |
221 | 221 | |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | $k = DB::wrap($k); |
231 | 231 | if(is_a($v, Raw::class)){//直接拼接sql,不需要转义 |
232 | 232 | $set[]= "$k=".$v->get(); |
233 | - }else{ |
|
233 | + } else{ |
|
234 | 234 | $set[]= "$k=?"; |
235 | 235 | $params[]=$v; |
236 | 236 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | $this->first = false; |
240 | 240 | $context->appendSql('SET '.implode(',', $set)); |
241 | 241 | $context->appendParams($params); |
242 | - }else{ |
|
242 | + } else{ |
|
243 | 243 | $context->appendSql(','.implode(',', $set),false); |
244 | 244 | $context->appendParams($params); |
245 | 245 | } |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | foreach ($orders as $k=>$v){ |
257 | 257 | if(is_integer($k)){ |
258 | 258 | $params[] = DB::wrap($v); |
259 | - }else{ |
|
259 | + } else{ |
|
260 | 260 | $k = DB::wrap($k); |
261 | 261 | |
262 | 262 | $v = strtoupper($v); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | if($this->first){ |
269 | 269 | $this->first = false; |
270 | 270 | $context->appendSql('ORDER BY '.implode(',', $params)); |
271 | - }else{ |
|
271 | + } else{ |
|
272 | 272 | $context->appendSql(','.implode(',', $params),false); |
273 | 273 | } |
274 | 274 | return $this; |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | if(is_string($column)){ |
278 | 278 | if($order === null){ |
279 | 279 | $column = [$column]; |
280 | - }else{ |
|
280 | + } else{ |
|
281 | 281 | $column = [$column=>$order]; |
282 | 282 | } |
283 | 283 | } |
@@ -321,9 +321,9 @@ discard block |
||
321 | 321 | } |
322 | 322 | if(is_callable($expr)){ |
323 | 323 | self::conditionClosure($context,$prefix, $expr); |
324 | - }elseif (is_string($expr)){ |
|
324 | + } elseif (is_string($expr)){ |
|
325 | 325 | self::condition($context, $prefix, $expr, $args); |
326 | - }else{ |
|
326 | + } else{ |
|
327 | 327 | self::conditionArgs($context, $prefix, $expr); |
328 | 328 | } |
329 | 329 | |
@@ -382,14 +382,14 @@ discard block |
||
382 | 382 | $stubs = "({$var->context->sql})"; |
383 | 383 | $params = array_merge($params, $var->context->params); |
384 | 384 | $exprs[] = "$k $op $stubs"; |
385 | - }else{ |
|
385 | + } else{ |
|
386 | 386 | foreach ($var as $i){ |
387 | 387 | if(is_a($i, Raw::class)){ |
388 | 388 | $stubs[]=strval($i); |
389 | - }elseif($i instanceof BasicRule){ |
|
389 | + } elseif($i instanceof BasicRule){ |
|
390 | 390 | $stubs = "({$i->context->sql})"; |
391 | 391 | $params = array_merge($params, $i->context->params); |
392 | - }else{ |
|
392 | + } else{ |
|
393 | 393 | $stubs[]='?'; |
394 | 394 | $params[] = $i; |
395 | 395 | } |
@@ -397,34 +397,34 @@ discard block |
||
397 | 397 | $stubs = implode(',', $stubs); |
398 | 398 | $exprs[] = "$k $op ($stubs)"; |
399 | 399 | } |
400 | - }else if($op == 'BETWEEN'){ |
|
400 | + } else if($op == 'BETWEEN'){ |
|
401 | 401 | $cond = "$k BETWEEN"; |
402 | 402 | if(is_a($var[0], Raw::class)){ |
403 | 403 | $cond = "$cond ".strval($var[0]); |
404 | - }elseif($var[0] instanceof BasicRule){ |
|
404 | + } elseif($var[0] instanceof BasicRule){ |
|
405 | 405 | $cond = "$cond ({$var[0]->context->sql})"; |
406 | 406 | $params = array_merge($params, $var[0]->context->params); |
407 | - }else{ |
|
407 | + } else{ |
|
408 | 408 | $cond = "$cond ?"; |
409 | 409 | $params[] = $var[0]; |
410 | 410 | } |
411 | 411 | if(is_a($var[1], Raw::class)){ |
412 | 412 | $cond = "$cond AND ".strval($var[1]); |
413 | - }elseif($var[1] instanceof BasicRule){ |
|
413 | + } elseif($var[1] instanceof BasicRule){ |
|
414 | 414 | $cond = "$cond AND ({$var[1]->context->sql})"; |
415 | 415 | $params = array_merge($params, $var[1]->context->params); |
416 | - }else{ |
|
416 | + } else{ |
|
417 | 417 | $cond = "$cond AND ?"; |
418 | 418 | $params[] = $var[1]; |
419 | 419 | } |
420 | 420 | $exprs[] = $cond; |
421 | - }else{ |
|
421 | + } else{ |
|
422 | 422 | if(is_a($var, Raw::class)){ |
423 | 423 | $exprs[] = "$k $op ".strval($var); |
424 | - }elseif($var instanceof BasicRule){ |
|
424 | + } elseif($var instanceof BasicRule){ |
|
425 | 425 | $exprs[] = "$k $op {$var->context->sql}"; |
426 | 426 | $params = array_merge($params, $var->context->params); |
427 | - }else{ |
|
427 | + } else{ |
|
428 | 428 | $exprs[] = "$k $op ?"; |
429 | 429 | $params[] = $var; |
430 | 430 | } |
@@ -463,21 +463,21 @@ discard block |
||
463 | 463 | foreach ($arg as $i){ |
464 | 464 | if(is_a($i, Raw::class)){ |
465 | 465 | $stubs[] = strval($i); |
466 | - }else{ |
|
466 | + } else{ |
|
467 | 467 | $stubs[] = '?'; |
468 | 468 | $newArgs[] = $i; |
469 | 469 | } |
470 | 470 | } |
471 | 471 | $stubs = implode(',', $stubs); |
472 | - }elseif($arg instanceof BasicRule){ |
|
472 | + } elseif($arg instanceof BasicRule){ |
|
473 | 473 | $stubs = "({$arg->context->sql})"; |
474 | 474 | $newArgs = array_merge($newArgs, $arg->context->params); |
475 | - }else{ |
|
475 | + } else{ |
|
476 | 476 | $stubs = strval($arg); |
477 | 477 | } |
478 | 478 | $toReplace[] = [$pos, $stubs]; |
479 | 479 | |
480 | - }else{ |
|
480 | + } else{ |
|
481 | 481 | $newArgs[]=$arg; |
482 | 482 | } |
483 | 483 | } |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | } |
494 | 494 | if($prefix){ |
495 | 495 | $context->appendSql($prefix.' '.$expr); |
496 | - }else{ |
|
496 | + } else{ |
|
497 | 497 | $context->appendSql($expr); |
498 | 498 | } |
499 | 499 | |
@@ -543,7 +543,7 @@ discard block |
||
543 | 543 | return $context->handleResult($dict); |
544 | 544 | } |
545 | 545 | return $context->handleResult($res); |
546 | - }else{ |
|
546 | + } else{ |
|
547 | 547 | return false; |
548 | 548 | } |
549 | 549 | } |
@@ -567,7 +567,7 @@ discard block |
||
567 | 567 | if(!preg_match('/\bfrom\b/i', $context->sql, $found, PREG_OFFSET_CAPTURE) || |
568 | 568 | count($found)==0){ |
569 | 569 | $columnEnd = strlen($context->sql); |
570 | - }else{ |
|
570 | + } else{ |
|
571 | 571 | list($chars, $columnEnd) = $found[0]; |
572 | 572 | } |
573 | 573 | $sql = substr($context->sql, 0, $columnBegin); |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | if($st->execute($context->params)){ |
579 | 579 | $res = $st->fetchAll(\PDO::FETCH_ASSOC); |
580 | 580 | return intval($res[0]['count']); |
581 | - }else{ |
|
581 | + } else{ |
|
582 | 582 | return false; |
583 | 583 | } |
584 | 584 | |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | public function set($context, $column, $value){ |
590 | 590 | if(is_string($column)){ |
591 | 591 | $this->setExpr($context, $column, $value); |
592 | - }else{ |
|
592 | + } else{ |
|
593 | 593 | $this->setArgs($context, $column); |
594 | 594 | } |
595 | 595 | } |
@@ -599,7 +599,7 @@ discard block |
||
599 | 599 | if($this->first){ |
600 | 600 | $this->first = false; |
601 | 601 | $prefix = 'ON DUPLICATE KEY UPDATE '; |
602 | - }else{ |
|
602 | + } else{ |
|
603 | 603 | $prefix = ','; |
604 | 604 | } |
605 | 605 | |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | $k = DB::wrap($k); |
615 | 615 | if(is_a($v, Raw::class)){//直接拼接sql,不需要转义 |
616 | 616 | $set[]= "$k=".$v->get(); |
617 | - }else{ |
|
617 | + } else{ |
|
618 | 618 | $set[]= "$k=?"; |
619 | 619 | $params[]=$v; |
620 | 620 | } |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | $this->first = false; |
624 | 624 | $context->appendSql('ON DUPLICATE KEY UPDATE '.implode(',', $set)); |
625 | 625 | $context->appendParams($params); |
626 | - }else{ |
|
626 | + } else{ |
|
627 | 627 | $context->appendSql(','.implode(',', $set),false); |
628 | 628 | $context->appendParams($params); |
629 | 629 | } |
@@ -14,11 +14,11 @@ |
||
14 | 14 | */ |
15 | 15 | public function render(\Exception $e) |
16 | 16 | { |
17 | - if($e instanceof HttpException){ |
|
17 | + if ($e instanceof HttpException) { |
|
18 | 18 | return new Response($e->getMessage(), $e->getStatusCode(), $e->getHeaders()); |
19 | - } if($e instanceof \InvalidArgumentException){ |
|
19 | + } if ($e instanceof \InvalidArgumentException) { |
|
20 | 20 | return new Response($e->getMessage(), Response::HTTP_BAD_REQUEST); |
21 | - }else{ |
|
21 | + }else { |
|
22 | 22 | return new Response($e->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR); |
23 | 23 | } |
24 | 24 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | return new Response($e->getMessage(), $e->getStatusCode(), $e->getHeaders()); |
19 | 19 | } if($e instanceof \InvalidArgumentException){ |
20 | 20 | return new Response($e->getMessage(), Response::HTTP_BAD_REQUEST); |
21 | - }else{ |
|
21 | + } else{ |
|
22 | 22 | return new Response($e->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR); |
23 | 23 | } |
24 | 24 | } |
@@ -11,7 +11,6 @@ |
||
11 | 11 | use PhpBoot\Console\ConsoleContainer; |
12 | 12 | use PhpBoot\Console\ConsoleContainerBuilder; |
13 | 13 | use PhpBoot\DI\Traits\EnableDIAnnotations; |
14 | -use Symfony\Component\Console\Command\Command; |
|
15 | 14 | use Symfony\Component\Console\Input\InputInterface; |
16 | 15 | use Symfony\Component\Console\Output\OutputInterface; |
17 | 16 |
@@ -37,7 +37,7 @@ |
||
37 | 37 | return $factory->make(self::class); |
38 | 38 | } |
39 | 39 | /** |
40 | - * @param $className |
|
40 | + * @param string $className |
|
41 | 41 | * @throws \Exception |
42 | 42 | */ |
43 | 43 | public function loadCommandsFromClass($className) |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $container = $this->consoleContainerBuilder->build($className); |
56 | 56 | /**@var ConsoleContainer $container*/ |
57 | 57 | foreach ($container->getCommands() as $name => $command) { |
58 | - $command->setCode(function (InputInterface $input, OutputInterface $output)use ($container, $command){ |
|
58 | + $command->setCode(function(InputInterface $input, OutputInterface $output)use ($container, $command){ |
|
59 | 59 | return $this->diInvoker->call([$command, 'invoke'], ['container'=>$container, 'input'=>$input, 'output'=>$output]); |
60 | 60 | }); |
61 | 61 | $this->add($command); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | { |
72 | 72 | $dir = @dir($fromPath) or abort("dir $fromPath not exist"); |
73 | 73 | |
74 | - $getEach = function () use ($dir) { |
|
74 | + $getEach = function() use ($dir) { |
|
75 | 75 | $name = $dir->read(); |
76 | 76 | if (!$name) { |
77 | 77 | return $name; |
@@ -83,11 +83,11 @@ discard block |
||
83 | 83 | if ($entry == '.' || $entry == '..') { |
84 | 84 | continue; |
85 | 85 | } |
86 | - $path = $fromPath . '/' . str_replace('\\', '/', $entry); |
|
86 | + $path = $fromPath.'/'.str_replace('\\', '/', $entry); |
|
87 | 87 | if (is_file($path) && substr_compare($entry, '.php', strlen($entry) - 4, 4, true) == 0) { |
88 | - $class_name = $namespace . '\\' . substr($entry, 0, strlen($entry) - 4); |
|
88 | + $class_name = $namespace.'\\'.substr($entry, 0, strlen($entry) - 4); |
|
89 | 89 | $this->loadCommandsFromClass($class_name); |
90 | - } else { |
|
90 | + }else { |
|
91 | 91 | //\Log::debug($path.' ignored'); |
92 | 92 | } |
93 | 93 | } |
@@ -2,17 +2,10 @@ |
||
2 | 2 | |
3 | 3 | namespace PhpBoot\Console\Annotations; |
4 | 4 | |
5 | -use DI\InvokerInterface; |
|
6 | -use FastRoute\RouteParser\Std; |
|
7 | 5 | use PhpBoot\Console\Command; |
8 | 6 | use PhpBoot\Console\ConsoleContainer; |
9 | 7 | use PhpBoot\Entity\ContainerFactory; |
10 | 8 | use PhpBoot\Entity\EntityContainerBuilder; |
11 | -use PhpBoot\Metas\ReturnMeta; |
|
12 | -use PhpBoot\Annotation\AnnotationBlock; |
|
13 | -use PhpBoot\Annotation\AnnotationTag; |
|
14 | -use PhpBoot\Entity\MixedTypeContainer; |
|
15 | -use PhpBoot\Exceptions\AnnotationSyntaxException; |
|
16 | 9 | use PhpBoot\Metas\ParamMeta; |
17 | 10 | use PhpBoot\Utils\AnnotationParams; |
18 | 11 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $name = $params->getParam(0, $target); |
26 | 26 | |
27 | 27 | //获取方法参数信息 |
28 | - $rfl = new \ReflectionClass($container->getClassName()); |
|
28 | + $rfl = new \ReflectionClass($container->getClassName()); |
|
29 | 29 | $method = $rfl->getMethod($target); |
30 | 30 | $methodParams = $method->getParameters(); |
31 | 31 | |
@@ -35,19 +35,19 @@ discard block |
||
35 | 35 | |
36 | 36 | //设置参数列表 |
37 | 37 | $paramsMeta = []; |
38 | - foreach ($methodParams as $param){ |
|
38 | + foreach ($methodParams as $param) { |
|
39 | 39 | $paramName = $param->getName(); |
40 | 40 | $source = "argv.$paramName"; |
41 | 41 | $paramClass = $param->getClass(); |
42 | - if($paramClass){ |
|
42 | + if ($paramClass) { |
|
43 | 43 | $paramClass = $paramClass->getName(); |
44 | 44 | } |
45 | 45 | $entityContainer = ContainerFactory::create($entityBuilder, $paramClass); |
46 | 46 | $meta = new ParamMeta($paramName, |
47 | 47 | $source, |
48 | - $paramClass?:'mixed', |
|
48 | + $paramClass ?: 'mixed', |
|
49 | 49 | $param->isOptional(), |
50 | - $param->isOptional()?$param->getDefaultValue():null, |
|
50 | + $param->isOptional() ? $param->getDefaultValue() : null, |
|
51 | 51 | $param->isPassedByReference(), |
52 | 52 | null, |
53 | 53 | '', |
@@ -64,6 +64,9 @@ |
||
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | + /** |
|
68 | + * @param string|null $name |
|
69 | + */ |
|
67 | 70 | public function getParamMeta($name) |
68 | 71 | { |
69 | 72 | foreach ($this->paramMetas as $meta){ |
@@ -105,13 +105,13 @@ discard block |
||
105 | 105 | } |
106 | 106 | if($meta->container){ |
107 | 107 | $inputs[$meta->name] = $meta->container->make($source); |
108 | - }else{ |
|
108 | + } else{ |
|
109 | 109 | $inputs[$meta->name] = $source; |
110 | 110 | } |
111 | 111 | if($meta->validation){ |
112 | 112 | $vld->rule($meta->validation, $meta->name); |
113 | 113 | } |
114 | - }else{ |
|
114 | + } else{ |
|
115 | 115 | $meta->isOptional or \PhpBoot\abort(new \InvalidArgumentException("the parameter \"{$meta->source}\" is missing")); |
116 | 116 | $inputs[$meta->name] = $meta->default; |
117 | 117 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | foreach ($this->paramMetas as $meta){ |
131 | 131 | if($meta->isPassedByReference){ |
132 | 132 | $params[$pos] = null; |
133 | - }else{ |
|
133 | + } else{ |
|
134 | 134 | $params[$pos] = $inputs[$meta->name]; |
135 | 135 | } |
136 | 136 | $pos++; |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | public function __construct($actionName, $name) |
37 | 37 | { |
38 | - parent::__construct($name?:$actionName); |
|
38 | + parent::__construct($name ?: $actionName); |
|
39 | 39 | $this->actionName = $actionName; |
40 | 40 | } |
41 | 41 | /** |
@@ -48,14 +48,14 @@ discard block |
||
48 | 48 | |
49 | 49 | public function postCreate(ConsoleContainer $container) |
50 | 50 | { |
51 | - if($container->getModuleName()){ |
|
51 | + if ($container->getModuleName()) { |
|
52 | 52 | $this->setName($container->getModuleName().'.'.$this->getName()); |
53 | 53 | } |
54 | 54 | |
55 | - foreach ($this->paramMetas as $paramMeta){ |
|
56 | - $mode = $paramMeta->isOptional?InputArgument::OPTIONAL:InputArgument::REQUIRED; |
|
57 | - if($paramMeta->container instanceof ArrayContainer || $paramMeta->container instanceof EntityContainer){ |
|
58 | - $mode = $mode|InputArgument::IS_ARRAY; |
|
55 | + foreach ($this->paramMetas as $paramMeta) { |
|
56 | + $mode = $paramMeta->isOptional ?InputArgument::OPTIONAL : InputArgument::REQUIRED; |
|
57 | + if ($paramMeta->container instanceof ArrayContainer || $paramMeta->container instanceof EntityContainer) { |
|
58 | + $mode = $mode | InputArgument::IS_ARRAY; |
|
59 | 59 | } |
60 | 60 | $this->addArgument($paramMeta->name, |
61 | 61 | $mode, |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | |
68 | 68 | public function getParamMeta($name) |
69 | 69 | { |
70 | - foreach ($this->paramMetas as $meta){ |
|
71 | - if($meta->name == $name){ |
|
70 | + foreach ($this->paramMetas as $meta) { |
|
71 | + if ($meta->name == $name) { |
|
72 | 72 | return $meta; |
73 | 73 | } |
74 | 74 | } |
@@ -84,40 +84,40 @@ discard block |
||
84 | 84 | * @throws \DI\DependencyException |
85 | 85 | * @throws \DI\NotFoundException |
86 | 86 | */ |
87 | - public function invoke(FactoryInterface $factory,ConsoleContainer $container, InputInterface $input, OutputInterface $output) |
|
87 | + public function invoke(FactoryInterface $factory, ConsoleContainer $container, InputInterface $input, OutputInterface $output) |
|
88 | 88 | { |
89 | 89 | $params = []; |
90 | 90 | $reference = []; |
91 | - $this->bindInput($input, $params,$reference); |
|
91 | + $this->bindInput($input, $params, $reference); |
|
92 | 92 | $code = call_user_func_array([$container->getInstance($factory), $this->actionName], $params); |
93 | 93 | return $code; |
94 | 94 | } |
95 | 95 | |
96 | - public function bindInput(InputInterface $input, array &$params, array &$reference){ |
|
96 | + public function bindInput(InputInterface $input, array &$params, array &$reference) { |
|
97 | 97 | $vld = new Validator(); |
98 | 98 | $req = ['argv'=>$input->getArguments()]; |
99 | 99 | $requestArray = new ArrayAdaptor($req); |
100 | 100 | $inputs = []; |
101 | - foreach ($this->paramMetas as $k=>$meta){ |
|
102 | - if($meta->isPassedByReference){ |
|
101 | + foreach ($this->paramMetas as $k=>$meta) { |
|
102 | + if ($meta->isPassedByReference) { |
|
103 | 103 | // param PassedByReference is used to output |
104 | 104 | continue; |
105 | 105 | } |
106 | 106 | $source = \JmesPath\search($meta->source, $requestArray); |
107 | - if ($source !== null){ |
|
107 | + if ($source !== null) { |
|
108 | 108 | $source = ArrayAdaptor::strip($source); |
109 | - if($source instanceof ParameterBag){ |
|
109 | + if ($source instanceof ParameterBag) { |
|
110 | 110 | $source = $source->all(); |
111 | 111 | } |
112 | - if($meta->container){ |
|
112 | + if ($meta->container) { |
|
113 | 113 | $inputs[$meta->name] = $meta->container->make($source); |
114 | - }else{ |
|
114 | + }else { |
|
115 | 115 | $inputs[$meta->name] = $source; |
116 | 116 | } |
117 | - if($meta->validation){ |
|
117 | + if ($meta->validation) { |
|
118 | 118 | $vld->rule($meta->validation, $meta->name); |
119 | 119 | } |
120 | - }else{ |
|
120 | + }else { |
|
121 | 121 | $meta->isOptional or \PhpBoot\abort(new \InvalidArgumentException("the parameter \"{$meta->source}\" is missing")); |
122 | 122 | $inputs[$meta->name] = $meta->default; |
123 | 123 | } |
@@ -133,10 +133,10 @@ discard block |
||
133 | 133 | ); |
134 | 134 | |
135 | 135 | $pos = 0; |
136 | - foreach ($this->paramMetas as $meta){ |
|
137 | - if($meta->isPassedByReference){ |
|
136 | + foreach ($this->paramMetas as $meta) { |
|
137 | + if ($meta->isPassedByReference) { |
|
138 | 138 | $params[$pos] = null; |
139 | - }else{ |
|
139 | + }else { |
|
140 | 140 | $params[$pos] = $inputs[$meta->name]; |
141 | 141 | } |
142 | 142 | $pos++; |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | class ConsoleContainerBuilder extends ContainerBuilder |
23 | 23 | { |
24 | - static $DEFAULT_ANNOTATIONS=[ |
|
24 | + static $DEFAULT_ANNOTATIONS = [ |
|
25 | 25 | [ClassAnnotationHandler::class, 'class'], |
26 | 26 | [CommandNameAnnotationHandler::class, "class.children[?name=='command']"], |
27 | 27 | [CommandAnnotationHandler::class, "methods.*.children[?name=='command'][]"], |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | array $annotations = null |
44 | 44 | ) |
45 | 45 | { |
46 | - if($annotations){ |
|
46 | + if ($annotations) { |
|
47 | 47 | parent::__construct($annotations, $cache); |
48 | - }else{ |
|
48 | + }else { |
|
49 | 49 | parent::__construct(self::$DEFAULT_ANNOTATIONS, $cache); |
50 | 50 | } |
51 | 51 | $this->factory = $factory; |
@@ -36,7 +36,7 @@ |
||
36 | 36 | { |
37 | 37 | if($annotations){ |
38 | 38 | parent::__construct($annotations, $cache); |
39 | - }else{ |
|
39 | + } else{ |
|
40 | 40 | parent::__construct(self::$DEFAULT_ANNOTATIONS, $cache); |
41 | 41 | } |
42 | 42 | $this->factory = $factory; |