#php #cakephp #cakedc
#php #cakephp #cakedc
Вопрос:
У меня есть приложение CakePHP, работающее на Cake PHP 3.8.13, CakeDC Users 8.5.1 и PHP 7.4. Я пытаюсь использовать пользовательский контроллер, чтобы я мог настроить поведение LoginTrait и PasswordChangeTrait.
Я следил за документацией в https://github.com/CakeDC/users/blob/master/Docs/Documentation/Configuration.md#using-the-users-email-to-login
Однако мой пользовательский UsersController не используется.
Я добавил следующие строки в /config/bootstrap.php
Configure::write('Users.config', ['users']);
Plugin::load('CakeDC/Users', ['routes' => true, 'bootstrap' => true]);
Я создал новый файл /config/users.php
<?php
$config = [
'Users' => [
// Table used to manage users
'table' => 'SomethingThatDoesNotExist',
// Controller used to manage users plugin features amp; actions
'controller' => 'MyUsers',
// configure Auth component
'auth' => true,
// Password Hasher
'passwordHasher' => 'CakeAuthDefaultPasswordHasher',
// token expiration, 1 hour
'Token' => ['expiration' => 3600],
'Email' => [
// determines if the user should include email
'required' => true,
// determines if registration workflow includes email validation
'validate' => true,
],
'Registration' => [
// determines if the register is enabled
'active' => false,
// determines if the reCaptcha is enabled for registration
'reCaptcha' => true,
// allow a logged in user to access the registration form
'allowLoggedIn' => false,
//ensure user is active (confirmed email) to reset his password
'ensureActive' => false,
// default role name used in registration
'defaultRole' => 'user',
],
'reCaptcha' => [
// reCaptcha key goes here
'key' => null,
// reCaptcha secret
'secret' => null,
// use reCaptcha in registration
'registration' => false,
// use reCaptcha in login, valid values are false, true
'login' => false,
],
'Tos' => [
// determines if the user should include tos accepted
'required' => true,
],
'Social' => [
// enable social login
'login' => false,
// enable social login
'authenticator' => 'CakeDC/Users.Social',
],
'GoogleAuthenticator' => [
// enable Google Authenticator
'login' => false,
'issuer' => null,
// The number of digits the resulting codes will be
'digits' => 6,
// The number of seconds a code will be valid
'period' => 30,
// The algorithm used
'algorithm' => 'sha1',
// QR-code provider (more on this later)
'qrcodeprovider' => null,
// Random Number Generator provider (more on this later)
'rngprovider' => null
],
'Profile' => [
// Allow view other users profiles
'viewOthers' => true,
'route' => ['prefix' => false, 'plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'profile'],
],
'Key' => [
'Session' => [
// session key to store the social auth data
'social' => 'Users.social',
// userId key used in reset password workflow
'resetPasswordUserId' => 'Users.resetPasswordUserId',
],
// form key to store the social auth data
'Form' => [
'social' => 'social'
],
'Data' => [
// data key to store the users email
'email' => 'email',
// data key to store email coming from social networks
'socialEmail' => 'info.email',
// data key to check if the remember me option is enabled
'rememberMe' => 'remember_me',
],
],
// Avatar placeholder
'Avatar' => ['placeholder' => 'CakeDC/Users.avatar_placeholder.png'],
'RememberMe' => [
// configure Remember Me component
'active' => false,
'checked' => true,
'Cookie' => [
'name' => 'remember_me',
'Config' => [
'expires' => '1 month',
'httpOnly' => true,
]
]
],
'Superuser' => ['allowedToChangePasswords' => true],
],
'GoogleAuthenticator' => [
'checker' => CakeDCUsersAuthDefaultTwoFactorAuthenticationChecker::class,
'verifyAction' => [
'plugin' => 'CakeDC/Users',
'controller' => 'Users',
'action' => 'verify',
'prefix' => false,
],
],
'U2f' => [
'enabled' => false,
'checker' => CakeDCUsersAuthDefaultU2fAuthenticationChecker::class,
'startAction' => [
'plugin' => 'CakeDC/Users',
'controller' => 'Users',
'action' => 'u2f',
'prefix' => false,
]
],
];
return $config;
Обратите внимание, что указанное имя таблицы не является реальным именем класса и не существует. Приложение продолжает работать без проблем. Если я изменю конфигурацию на:
$config = [
'Users' => [
// Table used to manage users
'table' => 'SomethingThatDoesNotExist',
...
т.е. просто добавьте обратную косую черту к имени таблицы, я получаю сообщение об ошибке
Class 'SomethingThatDoesNotExist' not found. Error in: ROOTvendorcakephpcakephpsrcORMLocatorTableLocator.php, line 239
На самом деле мне не нужно настраивать таблицу, которую я хочу настроить для контроллера, но независимо от того, что я ввожу в конфигурацию контроллера, я не получаю ошибок! У меня есть действительный контроллер по следующему пути /src/Controller/MyUsersController.php , однако ни одна из приведенных ниже конфигураций не запускает его использование:
'controller' => 'MyUsers',
'controller' => 'MyUsers',
'controller' => 'AppControllerMyUsers',
'controller' => 'AppControllerMyUsers',
Как я могу загрузить свой пользовательский контроллер?
Комментарии:
1. Не уверен, но я думаю, что ваш конфигурационный файл кажется ложным, взгляните на /vendor/cakedc/users/config/users.php
$config = [ 'Users' => [ // Table used to manage users 'table' => 'CakeDC/Users.Users', // Controller used to manage users plugin features amp; actions 'controller' => 'CakeDC/Users.Users',...
У вас нет массива «Users» в вашем примере, чтобы проверить, правильно ли загружена ваша конфигурация, установите значение ‘table’ => ‘aaaaaa’ Попробуйте войти в систему, и вы получите сообщение об ошибке.
Ответ №1:
Похоже, что настройка контроллера не перезаписывает текущий маршрут, он только перезаписывает на основе имени пользовательского контроллера, т. Е. Вместо /login это /myusers/login