123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace App\Http\Controllers\Auth;
- use App\Http\Controllers\Controller;
- use Illuminate\Auth\Access\AuthorizationException;
- use Illuminate\Auth\Events\Verified;
- use Illuminate\Foundation\Auth\VerifiesEmails;
- use Illuminate\Http\Request;
- class VerificationController extends Controller
- {
- /*
- |--------------------------------------------------------------------------
- | Email Verification Controller
- |--------------------------------------------------------------------------
- |
- | This controller is responsible for handling email verification for any
- | user that recently registered with the application. Emails may also
- | be re-sent if the user didn't receive the original email message.
- |
- */
- use VerifiesEmails;
- /**
- * Where to redirect users after verification.
- *
- * @var string
- */
- protected $redirectTo = '/';
- /**
- * Create a new controller instance.
- *
- * @return void
- */
- public function __construct()
- {
- $this->middleware('auth');
- $this->middleware('signed')->only('verify');
- $this->middleware('throttle:1,300')->only('verify', 'resend');
- }
- /**
- * Mark the authenticated user's email address as verified.
- *
- * @param \Illuminate\Http\Request $request
- * @return \Illuminate\Http\Response
- * @throws \Illuminate\Auth\Access\AuthorizationException
- */
- public function verify(Request $request)
- {
- if ($recipient = $request->user()->recipients()->find($request->route('id'))) {
- if ($recipient->hasVerifiedEmail()) {
- return redirect($this->redirectPath());
- }
- $recipient->markEmailAsVerified();
- return redirect(route('recipients.index'))->with('verified', true);
- } else {
- if ($request->route('id') != $request->user()->getKey()) {
- throw new AuthorizationException;
- }
- if ($request->user()->hasVerifiedEmail()) {
- return redirect($this->redirectPath());
- }
- if ($request->user()->markEmailAsVerified()) {
- event(new Verified($request->user()));
- }
- return redirect($this->redirectPath())->with('verified', true);
- }
- }
- }
|