Browse Source

feat:技师端-添加判断技师身份中间件

刘学玺 4 months ago
parent
commit
65b8188a48
4 changed files with 65 additions and 4 deletions
  1. 27 0
      app/Http/Middleware/Coach.php
  2. 34 2
      app/Services/Coach/OrderService.php
  3. 3 1
      bootstrap/app.php
  4. 1 1
      routes/api.php

+ 27 - 0
app/Http/Middleware/Coach.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Http\Middleware;
+
+use Closure;
+use Illuminate\Http\Request;
+use Illuminate\Support\Facades\Auth;
+use Symfony\Component\HttpFoundation\Response;
+
+final class Coach
+{
+    /**
+     * 处理传入的请求
+     */
+    public function handle(Request $request, Closure $next): Response
+    {
+        // 验证用户是否为技师
+        $user = Auth::user();
+
+        abort_if(! $user, Response::HTTP_UNAUTHORIZED, '用户未登录');
+        abort_if(! $user->coach, Response::HTTP_FORBIDDEN, '非技师用户无权访问');
+
+        return $next($request);
+    }
+}

+ 34 - 2
app/Services/Coach/OrderService.php

@@ -118,7 +118,7 @@ class OrderService
             // 验证技师信息
             [$coach, $location] = $this->validateCoach($user);
 
-            // 获取技师项目信
+            // 获取技师项目信���
             $coachProjects = $coach->projects;
             $coachProjectIds = $coachProjects->pluck('project_id')->toArray();
 
@@ -859,7 +859,7 @@ class OrderService
     /**
      * 技师撤离
      *
-     * @param  int  $userId  技师户ID
+     * @param  int  $userId  技师���户ID
      * @param  int  $orderId  订单ID
      *
      * @throws \Exception
@@ -1014,6 +1014,38 @@ class OrderService
         }
     }
 
+    /**
+     * 验证服务时间是否在技师可服务时间段内
+     *
+     * @param  int  $coachId  技师ID
+     * @param  string  $serviceTime  服务时间
+     */
+    public function validateServiceTime(int $coachId, string $serviceTime): bool
+    {
+        try {
+            // 获取技师可服务时间段
+            $availableTimeSlots = app(CoachService::class)->getSchedule($coachId);
+            abort_if(empty($availableTimeSlots), 400, '技师无可用时间段');
+
+            // 检测订单服务时间是否在技师可服务时间段内
+            foreach ($availableTimeSlots as $timeSlot) {
+                if ($serviceTime >= $timeSlot['start_time'] && $serviceTime <= $timeSlot['end_time']) {
+                    return true;
+                }
+            }
+
+            abort(400, '服务时间不在技师可服务时间段内');
+        } catch (\Exception $e) {
+            Log::error('验证技师服务时间失败', [
+                'coach_id' => $coachId,
+                'service_time' => $serviceTime,
+                'error' => $e->getMessage(),
+                'trace' => $e->getTraceAsString(),
+            ]);
+            throw $e;
+        }
+    }
+
     /**
      * 订单设置
      *

+ 3 - 1
bootstrap/app.php

@@ -12,7 +12,9 @@ $app = Application::configure(basePath: dirname(__DIR__))
         health: '/up',
     )
     ->withMiddleware(function (Middleware $middleware) {
-        //
+        $middleware->alias([
+            'coach' => \App\Http\Middleware\Coach::class,
+        ]);
     })
     ->withExceptions(function (Exceptions $exceptions) {
         $exceptions->dontReport([

+ 1 - 1
routes/api.php

@@ -138,7 +138,7 @@ Route::prefix('client')->group(function () {
 });
 
 // 技师端路由组
-Route::middleware(['auth:sanctum'])->prefix('coach')->group(function () {
+Route::middleware(['auth:sanctum', 'coach'])->prefix('coach')->group(function () {
     // 账户相关路由组
     Route::prefix('account')->group(function () {
         Route::post('base-info', [App\Http\Controllers\Coach\AccountController::class, 'submitBaseInfo'])