symfony2.1とFOSFacebookBundleの使用:
ユーザーがwww.example.comと入力している場合、たとえばユーザーがブラウザーを閉じた場合、まだ認証されている場合は、www.example.com/securedにリダイレクトします。
ユーザーが認証されている場合、indexActionを取得できません。
My Security.yml:
security:
encoders:
Symfony\Component\Security\Core\User\User: plaintext
role_hierarchy:
ROLE_ADMIN: ROLE_USER
ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
providers:
in_memory:
memory:
users:
user: { password: userpass, roles: [ 'ROLE_USER' ] }
admin: { password: adminpass, roles: [ 'ROLE_ADMIN' ] }
my_fos_facebook_provider:
id: my.facebook.user
//How can I add here a ROLE_USER?
firewalls:
//standard thing from FosFacebookBundle
access_control:
- { path: ^/, roles: [IS_AUTHENTICATED_ANONYMOUSLY] }
私のindexAction:
if( $this->container->get('security.context')
->isGranted('IS_AUTHENTICATED_FULLY') ){
echo 'asdf'; //this is working in the secured area www.example.com/secured/
}
エラーメッセージ:セキュリティコンテキストに認証トークンが含まれていません。考えられる理由の1つは、このURLにファイアウォールが構成されていないことです。
セキュリティで保護された領域では、ユーザーには役割がありません。どうすれば変更できますか?
なにが問題ですか?
アップデート
namespace Frontend\FbAccountBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* User
*
* @ORM\Table(name="user")
* @ORM\Entity
*/
class User
{
/**
* @var integer
*
* @ORM\Column(name="id", type="bigint", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var integer
*
* @ORM\Column(name="facebook_id", type="bigint", nullable=false)
*/
private $facebookId;
/**
* @param Array
*/
public function setFBData($fbdata)
{
if (isset($fbdata['id'])) {
$this->setFacebookId($fbdata['id']);
$this->addRole('ROLE_FACEBOOK');
}
}
security.yml:
services:
my.facebook.user:
class: Frontend\FbAccountBundle\Security\User\Provider\FacebookProvider
arguments:
facebook: "@fos_facebook.api"
userManager: "@fos_user.user_manager"
validator: "@validator"
container: "@service_container"