mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-03 18:40:52 +08:00
- Add command support for plugin management - Optimize plugin management page layout - Add email copy functionality for users - Convert payment methods and Telegram Bot to plugin system
126 lines
4.1 KiB
PHP
126 lines
4.1 KiB
PHP
<?php
|
|
namespace App\Services;
|
|
|
|
|
|
use App\Exceptions\ApiException;
|
|
use App\Jobs\SendEmailJob;
|
|
use App\Models\Ticket;
|
|
use App\Models\TicketMessage;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\DB;
|
|
use App\Services\Plugin\HookManager;
|
|
|
|
class TicketService
|
|
{
|
|
public function reply($ticket, $message, $userId)
|
|
{
|
|
try {
|
|
DB::beginTransaction();
|
|
$ticketMessage = TicketMessage::create([
|
|
'user_id' => $userId,
|
|
'ticket_id' => $ticket->id,
|
|
'message' => $message
|
|
]);
|
|
if ($userId !== $ticket->user_id) {
|
|
$ticket->reply_status = Ticket::STATUS_OPENING;
|
|
} else {
|
|
$ticket->reply_status = Ticket::STATUS_CLOSED;
|
|
}
|
|
if (!$ticketMessage || !$ticket->save()) {
|
|
throw new \Exception();
|
|
}
|
|
DB::commit();
|
|
return $ticketMessage;
|
|
} catch (\Exception $e) {
|
|
DB::rollback();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function replyByAdmin($ticketId, $message, $userId): void
|
|
{
|
|
$ticket = Ticket::where('id', $ticketId)
|
|
->first();
|
|
if (!$ticket) {
|
|
throw new ApiException('工单不存在');
|
|
}
|
|
$ticket->status = Ticket::STATUS_OPENING;
|
|
try {
|
|
DB::beginTransaction();
|
|
$ticketMessage = TicketMessage::create([
|
|
'user_id' => $userId,
|
|
'ticket_id' => $ticket->id,
|
|
'message' => $message
|
|
]);
|
|
if ($userId !== $ticket->user_id) {
|
|
$ticket->reply_status = Ticket::STATUS_OPENING;
|
|
} else {
|
|
$ticket->reply_status = Ticket::STATUS_CLOSED;
|
|
}
|
|
if (!$ticketMessage || !$ticket->save()) {
|
|
throw new ApiException('工单回复失败');
|
|
}
|
|
DB::commit();
|
|
HookManager::call('ticket.reply.admin.after', [$ticket, $ticketMessage]);
|
|
} catch (\Exception $e) {
|
|
DB::rollBack();
|
|
throw $e;
|
|
}
|
|
$this->sendEmailNotify($ticket, $ticketMessage);
|
|
}
|
|
|
|
public function createTicket($userId, $subject, $level, $message)
|
|
{
|
|
try {
|
|
DB::beginTransaction();
|
|
if (Ticket::where('status', 0)->where('user_id', $userId)->lockForUpdate()->first()) {
|
|
DB::rollBack();
|
|
throw new ApiException('存在未关闭的工单');
|
|
}
|
|
$ticket = Ticket::create([
|
|
'user_id' => $userId,
|
|
'subject' => $subject,
|
|
'level' => $level
|
|
]);
|
|
if (!$ticket) {
|
|
throw new ApiException('工单创建失败');
|
|
}
|
|
$ticketMessage = TicketMessage::create([
|
|
'user_id' => $userId,
|
|
'ticket_id' => $ticket->id,
|
|
'message' => $message
|
|
]);
|
|
if (!$ticketMessage) {
|
|
DB::rollBack();
|
|
throw new ApiException('工单消息创建失败');
|
|
}
|
|
DB::commit();
|
|
return $ticket;
|
|
} catch (\Exception $e) {
|
|
DB::rollBack();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
// 半小时内不再重复通知
|
|
private function sendEmailNotify(Ticket $ticket, TicketMessage $ticketMessage)
|
|
{
|
|
$user = User::find($ticket->user_id);
|
|
$cacheKey = 'ticket_sendEmailNotify_' . $ticket->user_id;
|
|
if (!Cache::get($cacheKey)) {
|
|
Cache::put($cacheKey, 1, 1800);
|
|
SendEmailJob::dispatch([
|
|
'email' => $user->email,
|
|
'subject' => '您在' . admin_setting('app_name', 'XBoard') . '的工单得到了回复',
|
|
'template_name' => 'notify',
|
|
'template_value' => [
|
|
'name' => admin_setting('app_name', 'XBoard'),
|
|
'url' => admin_setting('app_url'),
|
|
'content' => "主题:{$ticket->subject}\r\n回复内容:{$ticketMessage->message}"
|
|
]
|
|
]);
|
|
}
|
|
}
|
|
}
|