本文整理匯總了PHP中HWI\Bundle\OAuthBundle\OAuth\Response\UserResponseInterface::getBirthday方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserResponseInterface::getBirthday方法的具體用法?PHP UserResponseInterface::getBirthday怎麽用?PHP UserResponseInterface::getBirthday使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類HWI\Bundle\OAuthBundle\OAuth\Response\UserResponseInterface
的用法示例。
在下文中一共展示了UserResponseInterface::getBirthday方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: createUserByOAuthUserResponse
/**
* @param UserResponseInterface|ResourceResponse $response
*
* @return UserInterface
*/
protected function createUserByOAuthUserResponse(UserResponseInterface $response)
{
/** @var DoSUserInterface $user */
$user = $this->userFactory->createNew();
/** @var CustomerInterface $customer */
$customer = $this->customerFactory->createNew();
// set default values taken from OAuth sign-in provider account
// todo: check security configuration provide by `fos....username_email`
if (null === $response->getEmail()) {
throw new AccountNoEmailException();
}
// set default values taken from OAuth sign-in provider account
if (null !== ($email = $response->getEmail())) {
$customer->setEmail($email);
}
if (!$user->getUsername()) {
$user->setUsername($response->getEmail() ?: $response->getNickname());
}
// set random password to prevent issue with not nullable field & potential security hole
$user->setPlainPassword(substr(sha1($response->getAccessToken()), 0, 10));
$user->setDisplayName($response->getNickname());
$user->setLocale($response->getLocale());
$user->setCustomer($customer);
$user->confirmed();
$customer->setFirstName($response->getFirstName());
$customer->setLastName($response->getLastName());
$customer->setGender($response->getGender() ?: CustomerInterface::UNKNOWN_GENDER);
$customer->setBirthday($response->getBirthday());
return $this->updateUserByOAuthUserResponse($user, $response);
}