I'm trying to authenticate with a custom user provider, and the default login form.
The login part seems to work, because if I put an incorrect password it says 'bad credentials'. And if I put the correct password and catch the redirect, I can see my username in the toolbar.
But after the redirect, I get There is no user provider for user "Myapp\MainBundle\Document\User\User"
My user provider is configured like this:
# security.yml
providers:
database:
id: user_manager
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
main:
pattern: ^/
form_login:
login_path: /login
check_path: /login_check
logout:
path: /logout
target: /
anonymous: true
# config.yml
services:
user_manager:
class: Myapp\MainBundle\Service\User\UserManager
factory_service: doctrine_mongodb
factory_method: getRepository
arguments: [ 'MyappMainBundle:User\User' ]
calls:
- [ setEncoder, [ @security.encoder_factory ] ]
This is the user provider (the abstract class extends from DocumentRepository, and implements UserProviderInterface):
namespace Myapp\MainBundle\Service\User;
use Myvendor\UserBundle\Service\User\AbstractUserManager;
use Myapp\MainBundle\Document\User\User;
class UserManager extends AbstractUserManager {
public function createUser() {
return new User;
}
public function supportsClass($class) {
return $class === 'Myapp\MainBundle\Document\User\User';
}
}
How can this happen? Why does it find the provider for the login, but then fail on the next request?
Symfony version: 2.1.3
UPDATE
I debugged the code that comes right before that exception and found this was being catched (for the only provider I have): "Symfony\Component\Security\Core\Exception\UnsupportedUserException" "Instances of "Myapp\MainBundle\Document\User\User" are not supported.. How can this be possible? I even tried returning true in supportsClass()