v2board/app/Http/Controllers/User/TicketController.php

211 lines
7.3 KiB
PHP
Raw Normal View History

2019-12-12 19:47:32 +08:00
<?php
2020-01-29 16:08:50 +08:00
namespace App\Http\Controllers\User;
2019-12-12 19:47:32 +08:00
2020-01-29 16:08:50 +08:00
use App\Http\Controllers\Controller;
2020-01-29 16:22:39 +08:00
use App\Http\Requests\User\TicketSave;
2020-05-10 18:38:02 +08:00
use App\Http\Requests\User\TicketWithdraw;
2020-05-25 15:48:12 +08:00
use App\Jobs\SendTelegramJob;
use App\Models\User;
2020-07-31 15:22:27 +08:00
use App\Services\TelegramService;
2021-01-08 00:33:11 +08:00
use App\Utils\Dict;
2019-12-12 19:47:32 +08:00
use Illuminate\Http\Request;
use App\Models\Ticket;
use App\Models\TicketMessage;
use Illuminate\Support\Facades\DB;
class TicketController extends Controller
{
2020-01-11 13:36:52 +08:00
public function fetch(Request $request)
{
2019-12-12 20:08:20 +08:00
if ($request->input('id')) {
$ticket = Ticket::where('id', $request->input('id'))
->where('user_id', $request->session()->get('id'))
->first();
if (!$ticket) {
abort(500, __('user.ticket.fetch.ticket_not_exist'));
2019-12-12 20:08:20 +08:00
}
$ticket['message'] = TicketMessage::where('ticket_id', $ticket->id)->get();
2019-12-12 20:27:24 +08:00
for ($i = 0; $i < count($ticket['message']); $i++) {
2019-12-13 22:30:45 +08:00
if ($ticket['message'][$i]['user_id'] == $ticket->user_id) {
2019-12-12 20:26:56 +08:00
$ticket['message'][$i]['is_me'] = true;
} else {
$ticket['message'][$i]['is_me'] = false;
}
}
2019-12-12 20:08:20 +08:00
return response([
'data' => $ticket
]);
}
2019-12-13 17:13:10 +08:00
$ticket = Ticket::where('user_id', $request->session()->get('id'))
->orderBy('created_at', 'DESC')
->get();
for ($i = 0; $i < count($ticket); $i++) {
2019-12-13 17:16:53 +08:00
if ($ticket[$i]['last_reply_user_id'] == $request->session()->get('id')) {
2019-12-13 17:13:10 +08:00
$ticket[$i]['reply_status'] = 0;
} else {
$ticket[$i]['reply_status'] = 1;
}
}
2019-12-12 19:47:32 +08:00
return response([
2019-12-13 17:13:10 +08:00
'data' => $ticket
2019-12-12 19:47:32 +08:00
]);
}
2020-01-11 13:36:52 +08:00
public function save(TicketSave $request)
{
2019-12-12 19:47:32 +08:00
DB::beginTransaction();
2020-04-07 01:19:52 +08:00
if ((int)Ticket::where('status', 0)->where('user_id', $request->session()->get('id'))->count()) {
abort(500, __('user.ticket.save.exist_other_open_ticket'));
2020-04-07 00:40:52 +08:00
}
2019-12-12 19:47:32 +08:00
$ticket = Ticket::create(array_merge($request->only([
'subject',
'level'
]), [
2019-12-13 17:07:46 +08:00
'user_id' => $request->session()->get('id'),
'last_reply_user_id' => $request->session()->get('id')
2019-12-12 19:47:32 +08:00
]));
if (!$ticket) {
DB::rollback();
abort(500, __('user.ticket.save.ticket_create_failed'));
2019-12-12 19:47:32 +08:00
}
$ticketMessage = TicketMessage::create([
'user_id' => $request->session()->get('id'),
'ticket_id' => $ticket->id,
'message' => $request->input('message')
]);
if (!$ticketMessage) {
DB::rollback();
abort(500, __('user.ticket.save.ticket_create_failed'));
2019-12-12 19:47:32 +08:00
}
DB::commit();
2020-05-25 15:48:12 +08:00
$this->sendNotify($ticket, $ticketMessage);
2019-12-12 19:47:32 +08:00
return response([
'data' => true
]);
}
2019-12-12 20:33:14 +08:00
2020-01-11 13:36:52 +08:00
public function reply(Request $request)
{
2019-12-13 15:16:44 +08:00
if (empty($request->input('id'))) {
abort(500, __('user.ticket.reply.params_wrong'));
2019-12-12 20:33:14 +08:00
}
2019-12-13 15:16:44 +08:00
if (empty($request->input('message'))) {
abort(500, __('user.ticket.reply.message_not_empty'));
2019-12-13 15:16:44 +08:00
}
2019-12-12 20:33:14 +08:00
$ticket = Ticket::where('id', $request->input('id'))
->where('user_id', $request->session()->get('id'))
->first();
if (!$ticket) {
abort(500, __('user.ticket.reply.ticket_not_exist'));
2019-12-12 20:33:14 +08:00
}
2019-12-13 17:37:51 +08:00
if ($ticket->status) {
abort(500, __('user.ticket.reply.ticket_close_not_reply'));
2019-12-13 17:37:51 +08:00
}
2019-12-13 16:17:01 +08:00
if ($request->session()->get('id') == $this->getLastMessage($ticket->id)->user_id) {
abort(500, __('user.ticket.reply.wait_reply'));
2019-12-13 16:16:09 +08:00
}
2019-12-13 17:07:46 +08:00
DB::beginTransaction();
2019-12-12 20:33:14 +08:00
$ticketMessage = TicketMessage::create([
'user_id' => $request->session()->get('id'),
'ticket_id' => $ticket->id,
'message' => $request->input('message')
]);
2019-12-13 17:07:46 +08:00
$ticket->last_reply_user_id = $request->session()->get('id');
if (!$ticketMessage || !$ticket->save()) {
DB::rollback();
abort(500, __('user.ticket.reply.ticket_reply_failed'));
2019-12-12 20:33:14 +08:00
}
2019-12-13 17:07:46 +08:00
DB::commit();
2020-05-25 15:48:12 +08:00
$this->sendNotify($ticket, $ticketMessage);
2019-12-12 20:33:14 +08:00
return response([
'data' => true
]);
}
2019-12-13 16:16:09 +08:00
2019-12-13 17:29:55 +08:00
2020-01-11 13:36:52 +08:00
public function close(Request $request)
{
2019-12-13 17:29:55 +08:00
if (empty($request->input('id'))) {
abort(500, __('user.ticket.close.params_wrong'));
2019-12-13 17:29:55 +08:00
}
$ticket = Ticket::where('id', $request->input('id'))
->where('user_id', $request->session()->get('id'))
->first();
if (!$ticket) {
abort(500, __('user.ticket.close.ticket_not_exist'));
2019-12-13 17:29:55 +08:00
}
$ticket->status = 1;
if (!$ticket->save()) {
abort(500, __('user.ticket.close.close_failed'));
2019-12-13 17:29:55 +08:00
}
return response([
'data' => true
]);
}
2020-01-11 13:36:52 +08:00
private function getLastMessage($ticketId)
{
2019-12-13 16:16:09 +08:00
return TicketMessage::where('ticket_id', $ticketId)
->orderBy('id', 'DESC')
->first();
}
2020-05-10 18:38:02 +08:00
public function withdraw(TicketWithdraw $request)
{
2021-02-03 18:17:32 +08:00
if ((int)config('v2board.withdraw_close_enable', 0)) {
abort(500, 'user.ticket.withdraw.not_support_withdraw');
}
2021-01-08 00:33:11 +08:00
if (!in_array(
$request->input('withdraw_method'),
config(
'v2board.commission_withdraw_method',
Dict::WITHDRAW_METHOD_WHITELIST_DEFAULT
)
)) {
abort(500, __('user.ticket.withdraw.not_support_withdraw_method'));
2021-01-08 00:33:11 +08:00
}
2020-10-29 00:37:37 +08:00
$user = User::find($request->session()->get('id'));
$limit = config('v2board.commission_withdraw_limit', 100);
2020-10-29 01:00:22 +08:00
if ($limit > ($user->commission_balance / 100)) {
abort(500, __('user.ticket.withdraw.system_require_withdraw_limit', ['limit' => $limit]));
2020-10-29 00:37:37 +08:00
}
2020-05-10 18:38:02 +08:00
DB::beginTransaction();
$subject = __('user.ticket.withdraw.ticket_subject');
2020-05-10 18:38:02 +08:00
$ticket = Ticket::create([
'subject' => $subject,
'level' => 2,
'user_id' => $request->session()->get('id'),
'last_reply_user_id' => $request->session()->get('id')
]);
if (!$ticket) {
DB::rollback();
abort(500, __('user.ticket.withdraw.ticket_create_failed'));
2020-05-10 18:38:02 +08:00
}
$message = __('user.ticket.withdraw.ticket_message', [
'method' => $request->input('withdraw_method'),
'account' => $request->input('withdraw_account')
]);
2020-05-10 18:38:02 +08:00
$ticketMessage = TicketMessage::create([
'user_id' => $request->session()->get('id'),
'ticket_id' => $ticket->id,
'message' => $message
]);
if (!$ticketMessage) {
DB::rollback();
abort(500, __('user.ticket.withdraw.ticket_create_failed'));
2020-05-10 18:38:02 +08:00
}
DB::commit();
2020-08-02 15:07:28 +08:00
$this->sendNotify($ticket, $ticketMessage);
2020-05-10 18:38:02 +08:00
return response([
'data' => true
]);
}
2020-08-02 15:07:28 +08:00
private function sendNotify(Ticket $ticket, TicketMessage $ticketMessage)
{
$telegramService = new TelegramService();
2020-09-20 16:41:48 +08:00
$telegramService->sendMessageWithAdmin("📮工单提醒 #{$ticket->id}\n———————————————\n主题:\n`{$ticket->subject}`\n内容:\n`{$ticketMessage->message}`", true);
2020-08-02 15:07:28 +08:00
}
2019-12-12 19:47:32 +08:00
}