0

bjyauthorize を使用したリダイレクトに問題があります。このリンクをたどりました:BjyAuthorizeでログインページにリダイレクトする方法と、リダイレクトを機能させることができます。

私が直面している問題は、リダイレクトが完全なコントローラー パスを持つ URL を構築していることです。

http://lh/user/login?redirect=/talent/my/Myapp%5CController%5CProfile/index

where my route and controller are below:
route: talent/my
controller: Myapp\Controller\Profile

リダイレクト文字列を構築するためのコードは次のとおりです (編集: 完全な onDispatchError 関数を投稿します):

public function onDispatchError(MvcEvent $e)
{
    // Do nothing if the result is a response object
    $result = $e->getResult();
    if ($result instanceof Response) {
        return;
    }

    $router = $e->getRouter();
    $match  = $e->getRouteMatch();

    // get url to the zfcuser/login route
    $options['name'] = 'zfcuser/login';
    $url = $router->assemble(array(), $options);

    // Work out where were we trying to get to
    $options['name'] = $match->getMatchedRouteName();

    $matchParams = $match->getParams();

    // [jh]
    // TODO: need to fix this in a smart way
    // have already posted the problem on stackoverflow: https://stackoverflow.com/questions/17461274/redirect-path-is-using-full-controller-path-redirect-for-bjyauthorize
    $newParams = array(
        'controller' => $matchParams["__CONTROLLER__"],
    );

    // [jh]
    // having an index in the url looks a bit unprofessional
    // so, here i'm removing it... code is a bit dirty
    if ( 'index' !=  $matchParams["action"] )
        $newParams['action'] = $matchParams["action"];


    $redirect = $router->assemble($newParams, $options);


    // set up response to redirect to login page
    $response = $e->getResponse();
    if (!$response) {
        $response = new HttpResponse();
        $e->setResponse($response);
    }
    $response->getHeaders()->addHeaderLine('Location', $url . '?redirect=' . $redirect);
    $response->setStatusCode(302);
}

ここでは、次の $match->getParams() に var_dump を追加しました。

array(4) {
  ["__NAMESPACE__"]=>
  string(14) "Myapp\Controller"
  ["controller"]=>
  string(22) "Myapp\Controller\Profile"
  ["action"]=>
  string(5) "index"
  ["__CONTROLLER__"]=>
  string(7) "profile"
}

$オプション:

array(1) {
  ["name"]=>
  string(16) "route_my/default"
}

この問題を修正するために、「コントローラー」フィールドが「プロファイル」に設定されるようにパラメーターを変更できます。しかし、それが最善の方法だとは思いません。

ご意見をお聞かせください!

ありがとう、

ジャスティン

4

0 に答える 0