Files
UNIT3D-Community-Edition/app/Http/Controllers/Staff/ChatController.php
HDVinnie 8a7310f2d5 (Update) System Messages 🚀
- formated for new chat
2019-02-09 20:02:21 -05:00

237 lines
6.2 KiB
PHP

<?php
/**
* NOTICE OF LICENSE.
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
*
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
* @author HDVinnie
*/
namespace App\Http\Controllers\Staff;
use App\Message;
use App\Chatroom;
use App\ChatStatus;
use Brian2694\Toastr\Toastr;
use Illuminate\Http\Request;
use App\Events\MessageDeleted;
use App\Http\Controllers\Controller;
use App\Repositories\ChatRepository;
class ChatController extends Controller
{
/**
* @var ChatRepository
*/
private $chat;
/**
* @var Toastr
*/
private $toastr;
/**
* ChatController Constructor.
*
* @param ChatRepository $chat
* @param Toastr $toastr
*/
public function __construct(ChatRepository $chat, Toastr $toastr)
{
$this->chat = $chat;
$this->toastr = $toastr;
}
/**
* Chat Management.
*
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function index()
{
$chatrooms = $this->chat->rooms();
$chatstatuses = $this->chat->statuses();
return view('Staff.chat.index', [
'chatrooms' => $chatrooms,
'chatstatuses' => $chatstatuses,
]);
}
/**
* Add A Chatroom.
*
* @param \Illuminate\Http\Request $request
*
* @return Illuminate\Http\RedirectResponse
*/
public function addChatroom(Request $request)
{
$chatroom = new Chatroom();
$chatroom->name = $request->input('name');
$v = validator($chatroom->toArray(), [
'name' => 'required',
]);
if ($v->fails()) {
return redirect()->route('chatManager')
->with($this->toastr->error($v->errors()->toJson(), 'Whoops!', ['options']));
} else {
$chatroom->save();
return redirect()->route('chatManager')
->with($this->toastr->success('Chatroom Successfully Added', 'Yay!', ['options']));
}
}
/**
* Edit A Chatroom.
*
* @param \Illuminate\Http\Request $request
* @param $id
*
* @return Illuminate\Http\RedirectResponse
*/
public function editChatroom(Request $request, $id)
{
$chatroom = Chatroom::findOrFail($id);
$chatroom->name = $request->input('name');
$v = validator($chatroom->toArray(), [
'name' => 'required',
]);
if ($v->fails()) {
return redirect()->route('chatManager')
->with($this->toastr->error($v->errors()->toJson(), 'Whoops!', ['options']));
} else {
$chatroom->save();
return redirect()->route('chatManager')
->with($this->toastr->success('Chatroom Successfully Modified', 'Yay!', ['options']));
}
}
/**
* Delete A Chatroom.
*
* @param $id
*
* @return Illuminate\Http\RedirectResponse
*/
public function deleteChatroom($id)
{
$chatroom = Chatroom::findOrFail($id);
$chatroom->delete();
return redirect()->route('chatManager')
->with($this->toastr->success('Chatroom Successfully Deleted', 'Yay!', ['options']));
}
/**
* Add A Chat Status.
*
* @param \Illuminate\Http\Request $request
*
* @return Illuminate\Http\RedirectResponse
*/
public function addChatStatus(Request $request)
{
$chatstatus = new ChatStatus();
$chatstatus->name = $request->input('name');
$chatstatus->color = $request->input('color');
$chatstatus->icon = $request->input('icon');
$v = validator($chatstatus->toArray(), [
'name' => 'required',
'color' => 'required',
'icon' => 'required',
]);
if ($v->fails()) {
return redirect()->route('chatManager')
->with($this->toastr->error($v->errors()->toJson(), 'Whoops!', ['options']));
} else {
$chatstatus->save();
return redirect()->route('chatManager')
->with($this->toastr->success('Chat Status Successfully Added', 'Yay!', ['options']));
}
}
/**
* Edit A Chat Status.
*
* @param \Illuminate\Http\Request $request
* @param $id
*
* @return Illuminate\Http\RedirectResponse
*/
public function editChatStatus(Request $request, $id)
{
$chatstatus = ChatStatus::findOrFail($id);
$chatstatus->name = $request->input('name');
$chatstatus->color = $request->input('color');
$chatstatus->icon = $request->input('icon');
$v = validator($chatstatus->toArray(), [
'name' => 'required',
'color' => 'required',
'icon' => 'required',
]);
if ($v->fails()) {
return redirect()->route('chatManager')
->with($this->toastr->error($v->errors()->toJson(), 'Whoops!', ['options']));
} else {
$chatstatus->save();
return redirect()->route('chatManager')
->with($this->toastr->success('Chat Status Successfully Modified', 'Yay!', ['options']));
}
}
/**
* Delete A Chat Status.
*
* @param $id
*
* @return Illuminate\Http\RedirectResponse
*/
public function deleteChatStatus($id)
{
$chatstatus = ChatStatus::findOrFail($id);
$chatstatus->delete();
return redirect()->route('chatManager')
->with($this->toastr->success('Chat Status Successfully Deleted', 'Yay!', ['options']));
}
/**
* Flush Chat Messages.
*
* @param $id
*
* @return Illuminate\Http\RedirectResponse
*/
public function flushChat()
{
foreach (Message::all() as $message) {
broadcast(new MessageDeleted($message));
$message->delete();
}
$this->chat->systemMessage(
'Chatbox Has Been Flushed! :broom:'
);
return redirect('staff_dashboard')
->with($this->toastr->success('Chatbox Has Been Flushed', 'Yay!', ['options']));
}
}