relate.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 object $eloquent
  8. * @return mixed
  9. */
  10. public static function has_one($model, $eloquent)
  11. {
  12. // -----------------------------------------------------
  13. // Set the relating type.
  14. // -----------------------------------------------------
  15. $eloquent->relating = __FUNCTION__;
  16. // -----------------------------------------------------
  17. // Return the Eloquent model.
  18. // -----------------------------------------------------
  19. return static::has_one_or_many($model, $eloquent);
  20. }
  21. /**
  22. * Retrieve the query for a 1:* relationship.
  23. *
  24. * @param string $model
  25. * @param object $eloquent
  26. * @return mixed
  27. */
  28. public static function has_many($model, $eloquent)
  29. {
  30. // -----------------------------------------------------
  31. // Set the relating type.
  32. // -----------------------------------------------------
  33. $eloquent->relating = __FUNCTION__;
  34. // -----------------------------------------------------
  35. // Return the Eloquent model.
  36. // -----------------------------------------------------
  37. return static::has_one_or_many($model, $eloquent);
  38. }
  39. /**
  40. * Retrieve the query for a 1:1 or 1:* relationship.
  41. *
  42. * @param string $model
  43. * @param object $eloquent
  44. * @return mixed
  45. */
  46. private static function has_one_or_many($model, $eloquent)
  47. {
  48. // -----------------------------------------------------
  49. // Set the relating key.
  50. // -----------------------------------------------------
  51. $eloquent->relating_key = \System\Str::lower(get_class($eloquent)).'_id';
  52. return Factory::make($model)->where($eloquent->relating_key, '=', $eloquent->id);
  53. }
  54. /**
  55. * Retrieve the query for a 1:1 belonging relationship.
  56. *
  57. * @param array $caller
  58. * @param string $model
  59. * @param object $eloquent
  60. * @return mixed
  61. */
  62. public static function belongs_to($caller, $model, $eloquent)
  63. {
  64. // -----------------------------------------------------
  65. // Set the relating type.
  66. // -----------------------------------------------------
  67. $eloquent->relating = __FUNCTION__;
  68. // -----------------------------------------------------
  69. // Set the relating key.
  70. // -----------------------------------------------------
  71. $eloquent->relating_key = $caller['function'].'_id';
  72. // -----------------------------------------------------
  73. // Return the Eloquent model.
  74. // -----------------------------------------------------
  75. return Factory::make($model)->where('id', '=', $eloquent->attributes[$eloquent->relating_key]);
  76. }
  77. /**
  78. * Retrieve the query for a *:* relationship.
  79. *
  80. * @param string $model
  81. * @param object $eloquent
  82. * @return mixed
  83. */
  84. public static function has_many_and_belongs_to($model, $eloquent)
  85. {
  86. // -----------------------------------------------------
  87. // Get the models involved in the relationship.
  88. // -----------------------------------------------------
  89. $models = array(\System\Str::lower($model), \System\Str::lower(get_class($eloquent)));
  90. // -----------------------------------------------------
  91. // Sort the model names involved in the relationship.
  92. // -----------------------------------------------------
  93. sort($models);
  94. // -----------------------------------------------------
  95. // Get the intermediate table name, which is the names
  96. // of the two related models alphabetized.
  97. // -----------------------------------------------------
  98. $eloquent->relating_table = implode('_', $models);
  99. // -----------------------------------------------------
  100. // Set the relating type.
  101. // -----------------------------------------------------
  102. $eloquent->relating = __FUNCTION__;
  103. // -----------------------------------------------------
  104. // Set the relating key.
  105. // -----------------------------------------------------
  106. $eloquent->relating_key = $eloquent->relating_table.'.'.\System\Str::lower(get_class($eloquent)).'_id';
  107. // -----------------------------------------------------
  108. // Return the Eloquent model.
  109. // -----------------------------------------------------
  110. return Factory::make($model)
  111. ->select(Meta::table($model).'.*')
  112. ->join($eloquent->relating_table, Meta::table($model).'.id', '=', $eloquent->relating_table.'.'.\System\Str::lower($model).'_id')
  113. ->where($eloquent->relating_key, '=', $eloquent->id);
  114. }
  115. }