###実現したいこと
Controller/Model内で、ある特定のユーザー(一人)のフォロワー/フォロー関連の情報を全て一括で削除したいです。
(自分のフォローしている全てのフォロワーは外す & 自分がフォローしている全てのユーザーをアンフォロー)
最下部の試している処理を見ていただければわかりやすいと思います
現状以下の処理で、一人ずつフォローしたり外したりしています。
controller
1#一覧ページ 2def following 3 @users = @user.following #全てのフォローを取得 4end 5def followers 6 @users = @user.followers #全てのフォロワーを取得 7end 8def create 9 @current_user.follow(@user) #フォロー処理 10end 11def destroy 12 @current_user.unfollow(@user) #フォロー外す処理 13end
model
1def follow(user) 2 active_friendships.create(followed_id: user.id) 3 end 4 def unfollow(user) 5 active_friendships.find_by(followed_id: user.id).destroy 6 end
scheme
1create_table "friendships", force: :cascade do |t| 2 t.integer "follower_id" 3 t.integer "followed_id" 4 t.datetime "created_at", null: false 5 t.datetime "updated_at", null: false 6 t.index ["followed_id"], name: "index_friendships_on_followed_id" 7 t.index ["follower_id", "followed_id"], name: "index_friendships_on_follower_id_and_followed_id", unique: true 8 t.index ["follower_id"], name: "index_friendships_on_follower_id" 9 end
モデルの関連定義
model
1class User < ApplicationRecord 2 has_many :active_friendships, class_name:"Friendship", foreign_key: "follower_id", dependent: :destroy 3 has_many :passive_friendships, class_name:"Friendship", foreign_key: "followed_id", dependent: :destroy 4 has_many :following, through: :active_friendships, source: :followed 5 has_many :followers, through: :passive_friendships, source: :follower
model
1class Friendship < ApplicationRecord 2 validates :follower_id, presence: true 3 validates :followed_id, presence: true 4 belongs_to :follower, class_name: "User" 5 belongs_to :followed, class_name: "User" 6end 7
###試している処理
現在、以下の処理で自分がフォローしている全てのユーザーをフォローから外す処理ができました。
しかし、自分のことをフォローしているユーザーをフォローから外す処理ができずにいます。
model
1def followdelete(user) 2 active_friendships.where(followed_id: user.id).destroy_all #うまく行っていない処理 3 active_friendships.where(follower_id: user.id).destroy_all #うまく行っている処理 4end
controller
1def followdestroy 2 @current_user.followdelete(@user) 3end
おそらく、controller側の@current_user.を記述していることにより、「自分からの(??)」となってしまっているかと思いますが、現状ここで手詰まりしています。
お分かりの方、是非ご教示お願いします。
回答1件
あなたの回答
tips
プレビュー