relate.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php namespace System\DB\Eloquent;
  2. class Relate {
  3. /**
  4. * Retrieve the query for a 1:1 relationship.
  5. *
  6. * @param string $model
  7. * @param string $foreign_key
  8. * @param object $eloquent
  9. * @return mixed
  10. */
  11. public static function has_one($model, $foreign_key, $eloquent)
  12. {
  13. $eloquent->relating = __FUNCTION__;
  14. return static::has_one_or_many($model, $foreign_key, $eloquent);
  15. }
  16. /**
  17. * Retrieve the query for a 1:* relationship.
  18. *
  19. * @param string $model
  20. * @param string $foreign_key
  21. * @param object $eloquent
  22. * @return mixed
  23. */
  24. public static function has_many($model, $foreign_key, $eloquent)
  25. {
  26. $eloquent->relating = __FUNCTION__;
  27. return static::has_one_or_many($model, $foreign_key, $eloquent);
  28. }
  29. /**
  30. * Retrieve the query for a 1:1 or 1:* relationship.
  31. *
  32. * @param string $model
  33. * @param string $foreign_key
  34. * @param object $eloquent
  35. * @return mixed
  36. */
  37. private static function has_one_or_many($model, $foreign_key, $eloquent)
  38. {
  39. $eloquent->relating_key = (is_null($foreign_key)) ? \System\Str::lower(get_class($eloquent)).'_id' : $foreign_key;
  40. return Factory::make($model)->where($eloquent->relating_key, '=', $eloquent->id);
  41. }
  42. /**
  43. * Retrieve the query for a 1:1 belonging relationship.
  44. *
  45. * @param array $caller
  46. * @param string $model
  47. * @param object $eloquent
  48. * @return mixed
  49. */
  50. public static function belongs_to($caller, $model, $eloquent)
  51. {
  52. $eloquent->relating = __FUNCTION__;
  53. $eloquent->relating_key = $caller['function'].'_id';
  54. return Factory::make($model)->where('id', '=', $eloquent->attributes[$eloquent->relating_key]);
  55. }
  56. /**
  57. * Retrieve the query for a *:* relationship.
  58. *
  59. * @param string $model
  60. * @param string $table
  61. * @param object $eloquent
  62. * @return mixed
  63. */
  64. public static function has_many_and_belongs_to($model, $table, $eloquent)
  65. {
  66. // -----------------------------------------------------
  67. // Figure out the intermediate table name.
  68. // -----------------------------------------------------
  69. if (is_null($table))
  70. {
  71. $models = array(\System\Str::lower($model), \System\Str::lower(get_class($eloquent)));
  72. sort($models);
  73. $eloquent->relating_table = implode('_', $models);
  74. }
  75. else
  76. {
  77. $eloquent->relating_table = $table;
  78. }
  79. $eloquent->relating = __FUNCTION__;
  80. $eloquent->relating_key = $eloquent->relating_table.'.'.\System\Str::lower(get_class($eloquent)).'_id';
  81. return Factory::make($model)
  82. ->select(Meta::table($model).'.*')
  83. ->join($eloquent->relating_table, Meta::table($model).'.id', '=', $eloquent->relating_table.'.'.\System\Str::lower($model).'_id')
  84. ->where($eloquent->relating_key, '=', $eloquent->id);
  85. }
  86. }