2016-11-30 73 views
1

我想要苗條2項目轉換苗條3。 我正在stuking一個問題。苗條2到苗條3方法錯誤

當我打電話給我的方法: http://localhost:8000/task_manager/v1/tasks

我得到了一個錯誤:

Catchable fatal error: Argument 1 passed to authenticate() must 
be an instance of Slim\Route, instance of 
Slim\Http\Request given in 
C:\wamp64\www\task_manager\v1\index.php on line 42. 

我怎麼能解決這個問題?一些幫助將不勝感激。

這裏是我的PHP代碼:

$app = new \Slim\App(); 
... 
... 

function authenticate(\Slim\Route $route) { 
    // Getting request headers 

    $headers = apache_request_headers(); 
    $data = array(); 
    $app = AppContainer::getInstance(); 

    // Verifying Authorization Header 
    if (isset($headers['Authorization'])) { 
     $db = new DbHandler(); 

     // get the api key 
     $api_key = $headers['Authorization']; 
     // validating api key 
     if (!$db->isValidApiKey($api_key)) { 
      // api key is not present in users table 
      $data["error"] = true; 
      $data["message"] = "Access Denied. Invalid Api key"; 
      return echoRespnse(401, $data, $response); 
      //$app->stop(); 
      return $response->withStatus(401)->withBody("Bad Request"); 
     } else { 
      global $user_id; 
      // get user primary key id 
      $user_id = $db->getUserId($api_key); 
     } 
    } else { 
     // api key is missing in header 
     $data["error"] = true; 
     $data["message"] = "Api key is misssing"; 
     return echoRespnse(400, $data, $response); 
    } 
} 


$app->get('/tasks', function (Request $request, Response $response) { 
      global $user_id; 
      $data = array(); 
      $db = new DbHandler(); 

      // fetching all user tasks 
      $result = $db->getAllUserTasks($user_id); 

      $data["error"] = false; 
      $data["tasks"] = array(); 

      // looping through result and preparing tasks array 
      while ($task = $result->fetch_assoc()) { 
       $tmp = array(); 
       $tmp["id"] = $task["id"]; 
       $tmp["task"] = $task["task"]; 
       $tmp["status"] = $task["status"]; 
       $tmp["createdAt"] = $task["created_at"]; 
       array_push($data["tasks"], $tmp); 
      } 

      return echoRespnse(200, $data, $response); 
     })->add('authenticate'); 
+0

既然你不是在你的'身份驗證的任何地方使用'$ route'()'函數,只是改變了'身份驗證(\ Slim \ Route $ route)'''authenticate(Request $ request,Response $ response)''。 –

+0

如果你這樣做,你可以刪除'apache_request_headers()'並使用Slim的Request類來獲取它們:https://www.slimframework.com/docs/objects/request.html –

+0

謝謝。我想你確定。這是解決我的問題的一個選擇。 –

回答

1

在Slim2你可以添加中間件這樣的:

<?php 
$aBitOfInfo = function (\Slim\Route $route) { 
    echo "Current route is " . $route->getName(); 
}; 

$app->get('/foo', $aBitOfInfo, function() { 
    echo "foo"; 
}); 

這是不可能的slim3:第一中間件必須與add方法添加像這樣:

$app->get('/foo', function() { 
    echo "foo"; 
})->add($aBitOfInfo); 

其次中間件沒有\Slim\Route - 作爲第一個參數的對象。 這些不是Request,Response和下一個中間件的可調用。因此,這應該是這樣的:

/** 
* Example middleware closure 
* 
* @param \Psr\Http\Message\ServerRequestInterface $request PSR7 request 
* @param \Psr\Http\Message\ResponseInterface  $response PSR7 response 
* @param callable         $next  Next middleware 
* 
* @return \Psr\Http\Message\ResponseInterface 
*/ 
$aBitOfInfo = function ($request, $response, $next) { 
    $response->getBody()->write('BEFORE'); 
    $response = $next($request, $response); 
    $response->getBody()->write('AFTER'); 

    return $response; 
}; 

(來源https://www.slimframework.com/docs/concepts/middleware.html