dynamic.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php namespace System\DB\Query;
  2. use System\Str;
  3. class Dynamic {
  4. /**
  5. * Add conditions to a query from a dynamic method call.
  6. *
  7. * @param string $method
  8. * @param array $parameters
  9. * @param Query $query
  10. * @return Query
  11. */
  12. public static function build($method, $parameters, $query)
  13. {
  14. // Strip the "where_" off of the method.
  15. $finder = substr($method, 6);
  16. // Split the column names from the connectors.
  17. $segments = preg_split('/(_and_|_or_)/i', $finder, -1, PREG_SPLIT_DELIM_CAPTURE);
  18. // The connector variable will determine which connector will be used for the condition.
  19. // We'll change it as we come across new connectors in the dynamic method string.
  20. //
  21. // The index variable helps us get the correct parameter value for the where condition.
  22. // We increment it each time we add a condition.
  23. $connector = 'AND';
  24. $index = 0;
  25. foreach ($segments as $segment)
  26. {
  27. if ($segment != '_and_' and $segment != '_or_')
  28. {
  29. if ( ! array_key_exists($index, $parameters))
  30. {
  31. throw new \Exception("Wrong number of parameters for dynamic finder [$method].");
  32. }
  33. $query->where($segment, '=', $parameters[$index], $connector);
  34. $index++;
  35. }
  36. else
  37. {
  38. $connector = trim(strtoupper($segment), '_');
  39. }
  40. }
  41. return $query;
  42. }
  43. }