mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 12:17:10 +00:00
Bruno Fontes
2bc2792a24
It happend once: a user asked to be added to the waiting list at the same time other user was returning the item. So the user ended up waiting for the user he was already using.
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Auth;
|
|
use Mail;
|
|
use \App\User;
|
|
use \App\Mail\UserWaiting;
|
|
use Illuminate\Http\Request;
|
|
|
|
class AlertController extends Controller
|
|
{
|
|
/**
|
|
* Store the waiting_user_id on db
|
|
* so the user can be alerted when
|
|
* the item is free
|
|
*
|
|
* @param Request $request Form data
|
|
*
|
|
* @return redirect to home
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$item = User::loggedIn()->items()->find(request('item'));
|
|
if (!$item->used_by) {
|
|
session()->flash(
|
|
FlashMessage::PRIMARY,
|
|
__('Oh! This item has just being returned. Take it before anyone else!')
|
|
);
|
|
return redirect('home');
|
|
}
|
|
$item->waiting_user_id = Auth::id();
|
|
$item->timestamps = false;
|
|
$item->save();
|
|
|
|
$loggedUser = Auth::user()->name;
|
|
$userWithItem = User::find($item->used_by);
|
|
Mail::to($userWithItem)
|
|
->locale($userWithItem->language)
|
|
->send(new UserWaiting($loggedUser, $userWithItem->name, $item));
|
|
|
|
return redirect('home');
|
|
}
|
|
|
|
public function delete(Request $request)
|
|
{
|
|
$item = User::loggedIn()->items()->find(request('item'));
|
|
$item->waiting_user_id = null;
|
|
$item->timestamps = false;
|
|
$item->save();
|
|
|
|
return redirect('home');
|
|
}
|
|
}
|