0

所以我目前正在研究 Neos CMS 并想创建一个非常基本的登录逻辑。[练习用]

我基本上遵循: http: //flowframework.readthedocs.io/en/stable/TheDefinitiveGuide/PartIII/Security.html#authentication

我的代码:[neos/ 是根目录]

Routes: [neos/Configuration/Routes.yaml] 请注意,这是我在文件开头添加的内容,而不是文件的全部内容。

-
  name: 'Authentication'
  uriPattern: 'authenticate'
  defaults:
    '@package': 'VMP.Auth'
    '@controller': 'Authentication'
    '@action': 'authenticate'

AuthenticationController.php [neos/Packages/Plugins/VMP.Auth/Classes/VMP/Auth/Controller/]

<?php
namespace VMP\Auth\Controller;

use TYPO3\Flow\Annotations as Flow;
use TYPO3\Flow\Mvc\ActionRequest;
use TYPO3\Flow\Security\Authentication\Controller\AbstractAuthenticationController;

class AuthenticationController extends AbstractAuthenticationController {

        /**
         * Displays a login form
         *
         * @return void
         */
        public function indexAction() {
        }

        /**
         * Will be triggered upon successful authentication
         *
         * @param ActionRequest $originalRequest The request that was intercepted by the security framework, NULL if there was none
         * @return string
         */
        protected function onAuthenticationSuccess(ActionRequest $originalRequest = NULL) {
                if ($originalRequest !== NULL) {
                        $this->redirectToRequest($originalRequest);
                }
                $this->redirect('someDefaultActionAfterLogin');
        }

        /**
         * Logs all active tokens out and redirects the user to the login form
         *
         * @return void
         */
        public function logoutAction() {
                parent::logoutAction();
                $this->addFlashMessage('Logout successful');
                $this->redirect('index');
        }

        public function fooAction() {
                print "lol";
        }
}

NodeTypes.yaml [neos/Packages/Plugins/VMP.Auth/Configuration/]

'VMP.Auth:Plugin':
  superTypes:
    'TYPO3.Neos:Plugin': TRUE
  ui:
    label: 'Auth Login Form'
    group: 'plugins'

Policy.yaml [neos/Packages/Plugins/VMP.Auth/Configuration/]

privilegeTargets:

  'TYPO3\Flow\Security\Authorization\Privilege\Method\MethodPrivilege':

    'VMP.Auth:Plugin':
      matcher: 'method(TYPO3\Flow\Security\Authentication\Controller\AbstractAuthenticationController->(?!initialize).*Action()) || method(VMP\Auth\Controller\AuthenticationController->(?!initialize).*Action())'

roles:

  'TYPO3.Flow:Everybody':
    privileges:
      -
          # Grant any user access to the FrontendLoginLoginForm plugin
        privilegeTarget: 'VMP.Auth:Plugin'
        permission: GRANT

Settings.yaml [neos/Packages/Plugins/VMP.Auth/Configuration/]

TYPO3:
  Neos:
    typoScript:
      autoInclude:
        'VMP.Auth': TRUE
  Flow:
    security:
      authentication:
        providers:
          'AuthAuthenticationProvider':
            provider: 'PersistedUsernamePasswordProvider'

Index.html [neos/Packages/Plugins/VMP.Auth/Resources/Private/Templates/Authentication/]

<form action="authenticate" method="post">
   <input type="text"
      name="__authentication[TYPO3][Flow][Security][Authentication][Token][UsernamePassword][username]" />
   <input type="password"        name="__authentication[TYPO3][Flow][Security][Authentication][Token][UsernamePassword][password]" />
   <input type="submit" value="Login" />
</form>

**Root.ts2 [neos/Packages/Plugins/VMP.Auth/Resources/TypoScript/]

prototype(VMP.Auth:Plugin) < prototype(TYPO3.Neos:Plugin)
prototype(VMP.Auth:Plugin) {
      package = 'VMP.Auth'
      controller = 'Authentication'
      action = 'index'
}

问题: 如果我打电话: www.neos.dev/authenticate 我得到:

Validation failed while trying to call VMP\Auth\Controller\AuthenticationController->authenticateAction().

所以我认为,路线本身确实有效。我现在将我的 VMP.Auth 插件的登录表单添加到某个页面并登录(使用现有用户)。登录表单使用 /authenticate 作为其操作,但现在我收到以下错误:

Page Not Found

Sorry, the page you requested was not found.

#1301610453: Could not resolve a route and its corresponding URI for the given parameters. This may be due to referring to a not existing package / controller / action while building a link or URI. Refer to log and check the backtrace for more details.

我真的不知道这里有什么问题。我想我的路由是错误的,但我看不到它。

4

1 回答 1

1

你的onAuthenticationSuccess方法有:

$this->redirect('someDefaultActionAfterLogin');

现在可能(正确)触发了。这试图重定向到someDefaultActionAfterLoginAction你的一个动作,AuthenticationController但这个动作不存在。对于初学者来说,尝试 $this->redirectToUri('/')只重定向到主页。

于 2016-11-26T06:08:41.597 回答