dynamic.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. // ---------------------------------------------------------
  15. // Strip the "where_" off of the method.
  16. // ---------------------------------------------------------
  17. $method = substr($method, 6);
  18. // ---------------------------------------------------------
  19. // Split the column names from the connectors.
  20. // ---------------------------------------------------------
  21. $segments = preg_split('/(_and_|_or_)/i', $method, -1, PREG_SPLIT_DELIM_CAPTURE);
  22. // ---------------------------------------------------------
  23. // The connector variable will determine which connector
  24. // will be used for the condition. We'll change it as we
  25. // come across new connectors in the dynamic method string.
  26. //
  27. // The index variable helps us get the correct parameter
  28. // value for the where condition. We increment it each time
  29. // we add a condition.
  30. // ---------------------------------------------------------
  31. $connector = 'AND';
  32. $index = 0;
  33. // ---------------------------------------------------------
  34. // Iterate through each segment and add the conditions.
  35. // ---------------------------------------------------------
  36. foreach ($segments as $segment)
  37. {
  38. if ($segment != '_and_' and $segment != '_or_')
  39. {
  40. $query->where($segment, '=', $parameters[$index], $connector);
  41. $index++;
  42. }
  43. else
  44. {
  45. $connector = trim(Str::upper($segment), '_');
  46. }
  47. }
  48. return $query;
  49. }
  50. }