前提・実現したいこと
下記を参考にLaravelでTwitterクローンアプリを作っております。
【全6回】Laravel5.8でTwitterっぽいSNSツールを作る(第3回ユーザ関連とフォロー機能)
ユーザー間のフォローとフォロー解除機能を実装したいのですが、SQLエラーが発生している状況です。
恐らくfollowing_idとfollowed_idに関連するDB設計/実装がうまく出来ていないことが原因のエラーだと推察しているのですが、お手上げの状態です。。。
恐れ入りますが、解決方法やヒント等ご教示頂けますと幸いです。
発生している問題・エラーメッセージ
ブラウザにて挙動を確認すると、フォローは問題なく出来るのですが、フォロー解除の際に以下のエラーメッセージが出てしまいます。
Illuminate \ Database \ QueryException (23000) SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '8-11' for key 'followers_following_id_followed_id_unique' (SQL: insert into `followers` (`followed_id`, `following_id`) values (11, 8))
本来、フォローボタンを押下すると、フォローボタンがフォロー解除ボタンに変化するのが正しい挙動ですが、私の場合はフォローしても、ボタン名がフォロー解除に変わらない、という事象も発生しております。
該当のソースコード
関係するControllerとModel、View、Migrationファイルのが該当箇所を貼付させて頂きます。
UserController.php
public function follow(User $user) { $follower = auth()->user(); // フォローしているか $is_following = $follower->isFollowing($user->id); if (!$is_following) { // フォローしていなければフォローする $follower->follow($user->id); return back(); } } // フォロー解除 public function unfollow(User $user) { $follower = auth()->user(); // フォローしているか $is_following = $follower->isFollowing($user->id); if ($is_following) { // フォローしていればフォローを解除する $follower->unfollow($user->id); return back(); } }
Model(User.php)
public function follow(Int $user_id) { return $this->follows()->attach($user_id); } // フォロー解除する public function unfollow(Int $user_id) { return $this->follows()->detach($user_id); } // フォローしているか public function isFollowing(Int $user_id) { return (boolean) $this->follows()->where('followed_id', $user_id)->first(['id']); } // フォローされているか public function isFollowed(Int $user_id) { return (boolean) $this->followers()->where('following_id', $user_id)->first(['id']); }
View(index.blade.php)
@extends('layouts.app') @section('content') <div class="container"> <div class="row justify-content-center"> <div class="col-md-8"> @foreach ($all_users as $user) <div class="card"> <div class="card-haeder p-3 w-100 d-flex"> <img src="{{ $user->profile_image }}" class="rounded-circle" width="50" height="50"> <div class="ml-2 d-flex flex-column"> <p class="mb-0">{{ $user->name }}</p> <a href="{{ url('users/' .$user->id) }}" class="text-secondary">{{ $user->screen_name }}</a> </div> @if (auth()->user()->isFollowed($user->id)) <div class="px-2"> <span class="px-1 bg-secondary text-light">フォローされています</span> </div> @endif <div class="d-flex justify-content-end flex-grow-1"> @if (auth()->user()->isFollowing($user->id)) <form action="{{ route('unfollow', ['id' => $user->id]) }}" method="POST"> {{ csrf_field() }} {{ method_field('DELETE') }} <button type="submit" class="btn btn-danger">フォロー解除</button> </form> @else <form action="{{ route('follow', ['id' => $user->id]) }}" method="POST"> {{ csrf_field() }} <button type="submit" class="btn btn-primary">フォローする</button> </form> @endif </div> </div> </div> @endforeach </div> </div> <div class="my-4 d-flex justify-content-center"> {{ $all_users->links() }} </div> </div> @endsection
followersに関するマイグレーションファイル
public function up() { Schema::create('followers', function (Blueprint $table) { $table->unsignedInteger('following_id')->comment('フォローしているユーザID'); $table->unsignedInteger('followed_id')->comment('フォローされているユーザID'); $table->index('following_id'); $table->index('followed_id'); $table->unique([ 'following_id', 'followed_id' ]); }); }
試したこと
・followersテーブルの確認
$table->unique([ 'following_id', 'followed_id' ]);
マイグレーションファイルには上記を記述しておりますが、少しググった所、この内容で重複エラーはしないはずです、、
補足情報(FW/ツールのバージョンなど)
macOS Catalina10.15
Laravel 5.8
MAMPを使用しております
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/17 02:53 編集