过滤多对多关系 - Laravel

时间:2015-12-22 19:57:51

标签: php mysql laravel eloquent many-to-many

我有一个约会网站,其数据库如下

country (list of all countries)
-------    
id
name

users (It contains all types of users - Super Admin, Fronend user)
-----

id
role_id
name
email
password
country_id
active


user_profile(contains further details of frontend users)
------------

id
user_id
gender_id
photo
status
screenname
headline
location
sign
...and 12 more columns specific to frontend users


gender(specific to genders option - Male, Female, Gay, Prefer Not To Say, etc)
------

id
name


looking_for (pivot between user and gender)
-----------
id
user_id
gender_id

looking_forusergender之间的数据透视表。用户可以约会多种性别。例如。一位对男性和女性约会感兴趣的女性。

user hasOneuser_profile

public function profileDetails(){
    return $this->hasOne('\App\UserProfile');
}

反之,user_profileuser

有'belongsTo'关系
public function user(){
    return $this->belongsTo('\App\User');
}

user_profilebelongsTogender关系,因为每个用户个人资料都有性别

public function gender(){
    return $this->belongsTo('\App\Gender');
}

usergender通过belongsToMany looking_for,因为用户可以将他的约会偏好设置为多种性别。

// User
public function lookingFor(){
    return $this->belongsToMany('\App\Gender', 'looking_for')->withTimestamps();
}

//Gender
public function lookedUpBy(){
    return $this->belongsToMany('\App\User', 'looking_for')->withTimestamps();
}

现在,我正在尝试创建搜索。

例如。一名女性正在寻找与美国生活在一起的男性和女性约会。还必须考虑到男性和女性(将在结果中显示)已将looking_for设置为女性。

首先,我正在尝试抓取所有已将looking_for偏好设置为女性的用户。

Gender::with('lookedUpBy')->find($genderIdOfSearchedUser);

如何进一步过滤?

修改

我已将gender_id移至users表,因为它更适合那里。

我也有兴趣表

interests (1-on-1 Dating, Online Friends, Swingers etc)
---------
id
name

以及usersinterests

之间的数据透视表
interest_user
-------------
id
interest_id
user_id

因此,用户可以查找具有相似兴趣的多种性别。

比如说,一位女性希望与居住在美国的男性和女性约会,对1-on-1 DatingOnline Friends感兴趣

2 个答案:

答案 0 :(得分:2)

@Gordon的答案将起作用,但你基本上从数据库中提取所有数据,并在程序内存中反复讨论对象集合,而不是利用你的数据库引擎对于这些类型的查询。 我会使用laravel whereHas方法来查询多对多的关系

//assuming you are in the User instance you are trying to search for
$user = User::first();
$userGenderPref = $user->lookingFor()->get()->lists('gender_id');
$userInterestedIn = $user->interestedIn()->get()->lists('interest_id');
$results = User::whereHas('lookingFor', function($query) use ($userPref){//looking for gender
      $query->whereIn('gender_id',$userPref);
})
->whereHas('interestedIn', function($query) use ($userInterestedIn){//interested in
      $query->whereIn('interest_id',$userInterestedIn);
})
->where('user_id','!=',$user->user_id)//this is added to filter out our current user
->where('country_id',$user->country_id) //same country code as the original user
->get();

上述代码将返回与您的用户,性别和兴趣具有相同偏好的用户列表,并且还会确保它与当前用户位于同一个国家/地区。

答案 1 :(得分:0)

Laravel很好collection filters;)

尝试这样的事情:

$collection = Gender::with('lookingFor')->each(function($gender) {

  // get the lookingFor names
  $looking_for = $gender->lookingFor()->lists('name');

  // check if your case has been met
  if(in_array('Female', $looking_for)) return $gender;
});

警告,这是伪代码;)

聚苯乙烯。如果您想了解有关Laravel Collections的更多信息,请参阅free ebook,我强烈建议您这样做。