本文整理汇总了PHP中CSocServAuthManager类的典型用法代码示例。如果您正苦于以下问题:PHP CSocServAuthManager类的具体用法?PHP CSocServAuthManager怎么用?PHP CSocServAuthManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CSocServAuthManager类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkActiveSocServ
protected function checkActiveSocServ()
{
$oAuthManager = new CSocServAuthManager();
$socNetServices = $oAuthManager->GetActiveAuthServices(array());
//check active google oauth service
if (empty($socNetServices['LiveIDOAuth'])) {
$this->sendJsonResponse(array('error' => GetMessage('WD_DOC_INSTALL_SOCSERV_SKYDRIVE')));
}
}
示例2: checkAccessibleTokenService
/**
* Execute this method for check potential possibility get access token.
* @return bool
* @throws \Bitrix\Main\LoaderException
*/
public function checkAccessibleTokenService()
{
if (!Loader::includeModule('socialservices')) {
$this->errorCollection->add(array(new Error(Loc::getMessage('DISK_GOOGLE_HANDLER_ERROR_NOT_INSTALLED_SOCSERV'), self::ERROR_NOT_INSTALLED_SOCSERV)));
return false;
}
$authManager = new \CSocServAuthManager();
$socNetServices = $authManager->getActiveAuthServices(array());
return !empty($socNetServices[\CSocServGoogleOAuth::ID]);
}
示例3: Authorize
public function Authorize()
{
$GLOBALS["APPLICATION"]->RestartBuffer();
$bSuccess = false;
if(isset($_REQUEST["code"]) && $_REQUEST["code"] <> '')
{
if(CSocServAuthManager::CheckUniqueKey())
{
$redirect_uri = CSocServUtil::GetCurUrl('auth_service_id='.self::ID, array("code"));
$appID = self::GetOption("facebook_appid");
$appSecret = self::GetOption("facebook_appsecret");
$fb = new CFacebookInterface($appID, $appSecret, $_REQUEST["code"]);
if($fb->GetAccessToken($redirect_uri) !== false)
{
$arFBUser = $fb->GetCurrentUser();
if(isset($arFBUser["id"]))
{
$arFields = array(
'EXTERNAL_AUTH_ID' => self::ID,
'XML_ID' => $arFBUser["id"],
'LOGIN' => "FB_".$arFBUser["email"],
'EMAIL' => $arFBUser["email"],
'NAME'=> $arFBUser["first_name"],
'LAST_NAME'=> $arFBUser["last_name"],
);
if(isset($arFBUser['picture']['data']['url']) && self::CheckPhotoURI($arFBUser['picture']['data']['url']))
if ($arPic = CFile::MakeFileArray($arFBUser['picture']['data']['url']))
$arFields["PERSONAL_PHOTO"] = $arPic;
if(isset($arFBUser['birthday']))
if ($date = MakeTimeStamp($arFBUser['birthday'], "MM/DD/YYYY"))
$arFields["PERSONAL_BIRTHDAY"] = ConvertTimeStamp($date);
if(isset($arFBUser['gender']) && $arFBUser['gender'] != '')
{
if ($arFBUser['gender'] == 'male')
$arFields["PERSONAL_GENDER"] = 'M';
elseif ($arFBUser['gender'] == 'female')
$arFields["PERSONAL_GENDER"] = 'F';
}
$arFields["PERSONAL_WWW"] = "http://www.facebook.com/".$arFBUser["id"];
$bSuccess = $this->AuthorizeUser($arFields);
}
}
}
}
$aRemove = array("logout", "auth_service_error", "auth_service_id", "code", "error_reason", "error", "error_description", "check_key");
$url = $GLOBALS['APPLICATION']->GetCurPageParam(($bSuccess? '':'auth_service_id='.self::ID.'&auth_service_error=1'), $aRemove);
echo '
<script type="text/javascript">
if(window.opener)
window.opener.location = \''.CUtil::JSEscape($url).'\';
window.close();
</script>
';
die();
}
示例4: Authorize
public function Authorize($identity = false, $var = false)
{
if ($var === false) {
$var = 'OPENID_IDENTITY_OPENID';
}
$step = COpenIDClient::GetOpenIDAuthStep($var);
if ($step > 0) {
$obOpenID = new COpenIDClient();
if ($step == 2) {
return $obOpenID->Authorize();
} elseif ($step == 1) {
if ($identity === false) {
$identity = $_REQUEST['OPENID_IDENTITY_OPENID'];
}
CSocServAuthManager::SetUniqueKey();
$return_to = CSocServUtil::GetCurUrl("auth_service_id=" . urlencode($_REQUEST["auth_service_id"]) . "&check_key=" . $_SESSION["UNIQUE_KEY"], array("SEF_APPLICATION_CUR_PAGE_URL", "auth_service_error", "auth_service_id", "login"));
if ($url = $obOpenID->GetRedirectUrl($identity, $return_to)) {
LocalRedirect($url, true);
} else {
LocalRedirect(CSocServUtil::GetCurUrl("auth_service_id=" . urlencode($_REQUEST["auth_service_id"]) . "&auth_service_error=1"));
}
return false;
}
}
return false;
}
示例5: Authorize
public function Authorize($identity=false, $var=false)
{
if($var === false)
$var = 'OPENID_IDENTITY_OPENID';
$step = COpenIDClient::GetOpenIDAuthStep($var);
if($step > 0)
{
$obOpenID = new COpenIDClient();
if($step == 2)
{
return $obOpenID->Authorize();
}
elseif($step == 1)
{
if($identity === false)
$identity = $_REQUEST['OPENID_IDENTITY_OPENID'];
CSocServAuthManager::SetUniqueKey();
$return_to = CSocServUtil::GetCurUrl("auth_service_id=".urlencode($_REQUEST["auth_service_id"])."&check_key=".$_SESSION["UNIQUE_KEY"]);
if($url = $obOpenID->GetRedirectUrl($identity, $return_to))
LocalRedirect($url, true);
else
return false;
}
}
return false;
}
示例6: Authorize
public function Authorize()
{
$GLOBALS["APPLICATION"]->RestartBuffer();
$bSuccess = 1;
if (isset($_REQUEST["code"]) && $_REQUEST["code"] != '') {
if (CSocServAuthManager::CheckUniqueKey()) {
if (IsModuleInstalled('bitrix24') && defined('BX24_HOST_NAME')) {
$redirect_uri = self::CONTROLLER_URL . "/redirect.php?redirect_to=" . urlencode(CSocServUtil::GetCurUrl('auth_service_id=' . self::ID, array("code")));
} else {
$redirect_uri = CSocServUtil::GetCurUrl('auth_service_id=' . self::ID, array("code"));
}
$appID = trim(self::GetOption("facebook_appid"));
$appSecret = trim(self::GetOption("facebook_appsecret"));
$fb = new CFacebookInterface($appID, $appSecret, $_REQUEST["code"]);
if ($fb->GetAccessToken($redirect_uri) !== false) {
$arFBUser = $fb->GetCurrentUser();
if (is_array($arFBUser) && isset($arFBUser["id"])) {
$email = $arFBUser["email"] != '' ? $arFBUser["email"] : '';
$arFields = array('EXTERNAL_AUTH_ID' => self::ID, 'XML_ID' => $arFBUser["id"], 'LOGIN' => "FB_" . $arFBUser["id"], 'EMAIL' => $email, 'NAME' => $arFBUser["first_name"], 'LAST_NAME' => $arFBUser["last_name"]);
if (isset($arFBUser['picture']['data']['url']) && self::CheckPhotoURI($arFBUser['picture']['data']['url'])) {
if ($arPic = CFile::MakeFileArray($arFBUser['picture']['data']['url'])) {
$arFields["PERSONAL_PHOTO"] = $arPic;
}
}
if (isset($arFBUser['birthday'])) {
if ($date = MakeTimeStamp($arFBUser['birthday'], "MM/DD/YYYY")) {
$arFields["PERSONAL_BIRTHDAY"] = ConvertTimeStamp($date);
}
}
if (isset($arFBUser['gender']) && $arFBUser['gender'] != '') {
if ($arFBUser['gender'] == 'male') {
$arFields["PERSONAL_GENDER"] = 'M';
} elseif ($arFBUser['gender'] == 'female') {
$arFields["PERSONAL_GENDER"] = 'F';
}
}
$arFields["PERSONAL_WWW"] = "http://www.facebook.com/" . $arFBUser["id"];
if (strlen(SITE_ID) > 0) {
$arFields["SITE_ID"] = SITE_ID;
}
$bSuccess = $this->AuthorizeUser($arFields);
}
}
}
}
$aRemove = array("logout", "auth_service_error", "auth_service_id", "code", "error_reason", "error", "error_description", "check_key", "current_fieldset");
$url = $GLOBALS['APPLICATION']->GetCurPageParam($bSuccess === true ? '' : 'auth_service_id=' . self::ID . '&auth_service_error=' . $bSuccess, $aRemove);
if (CModule::IncludeModule("socialnetwork") && strpos($url, "current_fieldset=") === false) {
$url = preg_match("/\\?/", $url) ? $url . "¤t_fieldset=SOCSERV" : $url . "?current_fieldset=SOCSERV";
}
echo '
<script type="text/javascript">
if(window.opener)
window.opener.location = \'' . CUtil::JSEscape($url) . '\';
window.close();
</script>
';
die;
}
示例7: Authorize
public function Authorize()
{
$GLOBALS["APPLICATION"]->RestartBuffer();
$bSuccess = 1;
$appID = trim(self::GetOption("twitter_key"));
$appSecret = trim(self::GetOption("twitter_secret"));
if (!isset($_REQUEST["oauth_token"]) || $_REQUEST["oauth_token"] == '') {
$tw = new CTwitterInterface($appID, $appSecret);
$callback = CSocServUtil::GetCurUrl('auth_service_id=' . self::ID);
//$callback = 'http://algerman.sam:6448/script.php?auth_service_id='.self::ID;
if ($tw->GetRequestToken($callback)) {
$tw->RedirectAuthUrl();
}
} elseif (CSocServAuthManager::CheckUniqueKey()) {
$tw = new CTwitterInterface($appID, $appSecret, $_REQUEST["oauth_token"], $_REQUEST["oauth_verifier"]);
if (($arResult = $tw->GetAccessToken()) !== false && $arResult["user_id"] != '') {
$twUser = $tw->GetUserInfo($arResult["user_id"]);
$first_name = $last_name = "";
if ($twUser["name"] != '') {
$aName = explode(" ", $twUser["name"]);
$first_name = $aName[0];
if (isset($aName[1])) {
$last_name = $aName[1];
}
}
$arFields = array('EXTERNAL_AUTH_ID' => self::ID, 'XML_ID' => $arResult["user_id"], 'LOGIN' => $arResult["screen_name"], 'NAME' => $first_name, 'LAST_NAME' => $last_name);
if (isset($twUser["profile_image_url"]) && self::CheckPhotoURI($twUser["profile_image_url"])) {
if ($arPic = CFile::MakeFileArray($twUser["profile_image_url"])) {
$arFields["PERSONAL_PHOTO"] = $arPic;
}
}
$arFields["PERSONAL_WWW"] = "https://twitter.com/" . $arResult["screen_name"];
if (strlen(SITE_ID) > 0) {
$arFields["SITE_ID"] = SITE_ID;
}
if (COption::GetOptionString('socialservices', 'last_twit_id', '1') == 1) {
if (isset($twUser["status"]["id_str"])) {
COption::SetOptionString('socialservices', 'last_twit_id', $twUser["status"]["id_str"]);
}
}
$bSuccess = $this->AuthorizeUser($arFields);
}
}
$aRemove = array("logout", "auth_service_error", "auth_service_id", "oauth_token", "oauth_verifier", "check_key", "current_fieldset");
$url = $GLOBALS['APPLICATION']->GetCurPageParam($bSuccess === true ? '' : 'auth_service_id=' . self::ID . '&auth_service_error=' . $bSuccess, $aRemove);
if (CModule::IncludeModule("socialnetwork")) {
$url = preg_match("/\\?/", $url) ? $url . "¤t_fieldset=SOCSERV" : $url . "?current_fieldset=SOCSERV";
}
echo '
<script type="text/javascript">
if(window.opener)
window.opener.location = \'' . CUtil::JSEscape($url) . '\';
window.close();
</script>
';
die;
}
示例8: Authorize
public function Authorize()
{
$GLOBALS["APPLICATION"]->RestartBuffer();
$bSuccess = false;
$appID = self::GetOption("twitter_key");
$appSecret = self::GetOption("twitter_secret");
if(!isset($_REQUEST["oauth_token"]) || $_REQUEST["oauth_token"] == '')
{
$tw = new CTwitterInterface($appID, $appSecret);
$callback = CSocServUtil::GetCurUrl('auth_service_id='.self::ID);
if($tw->GetRequestToken($callback))
$tw->RedirectAuthUrl();
}
elseif(CSocServAuthManager::CheckUniqueKey())
{
$tw = new CTwitterInterface($appID, $appSecret, $_REQUEST["oauth_token"], $_REQUEST["oauth_verifier"]);
if(($arResult = $tw->GetAccessToken()) !== false && $arResult["user_id"] <> '')
{
$twUser = $tw->GetUserInfo($arResult["user_id"]);
$first_name = $last_name = "";
if($twUser["name"] <> '')
{
$aName = explode(" ", $twUser["name"]);
$first_name = $aName[0];
if(isset($aName[1]))
$last_name = $aName[1];
}
$arFields = array(
'EXTERNAL_AUTH_ID' => self::ID,
'XML_ID' => $arResult["user_id"],
'LOGIN' => $arResult["screen_name"],
'NAME'=> $first_name,
'LAST_NAME'=> $last_name,
);
$arFields["PERSONAL_WWW"] = "https://twitter.com/".$twUser["screen_name"];
$bSuccess = $this->AuthorizeUser($arFields);
}
}
$aRemove = array("logout", "auth_service_error", "auth_service_id", "oauth_token", "oauth_verifier", "check_key");
$url = $GLOBALS['APPLICATION']->GetCurPageParam(($bSuccess? '':'auth_service_id='.self::ID.'&auth_service_error=1'), $aRemove);
echo '
<script type="text/javascript">
if(window.opener)
window.opener.location = \''.CUtil::JSEscape($url).'\';
window.close();
</script>
';
die();
}
示例9: htmlspecialcharsbx
}
}
}
}
}
if (defined("HTML_PAGES_FILE") && !defined("ERROR_404")) {
$arResult["~USER_LOGIN"] = "";
} else {
$arResult["~USER_LOGIN"] = $_COOKIE[COption::GetOptionString("main", "cookie_name", "BITRIX_SM") . "_LOGIN"];
}
$arResult["USER_LOGIN"] = $arResult["LAST_LOGIN"] = htmlspecialcharsbx($arResult["~USER_LOGIN"]);
$arResult["~LAST_LOGIN"] = $arResult["~USER_LOGIN"];
$arResult["AUTH_SERVICES"] = false;
$arResult["CURRENT_SERVICE"] = false;
if (!$USER->IsAuthorized() && CModule::IncludeModule("socialservices")) {
$oAuthManager = new CSocServAuthManager();
$arServices = $oAuthManager->GetActiveAuthServices($arResult);
if (!empty($arServices)) {
$arResult["AUTH_SERVICES"] = $arServices;
if (isset($_REQUEST["auth_service_id"]) && $_REQUEST["auth_service_id"] != '' && isset($arResult["AUTH_SERVICES"][$_REQUEST["auth_service_id"]])) {
$arResult["CURRENT_SERVICE"] = $_REQUEST["auth_service_id"];
if (isset($_REQUEST["auth_service_error"]) && $_REQUEST["auth_service_error"] != '') {
$arResult['ERROR_MESSAGE'] = $oAuthManager->GetError($arResult["CURRENT_SERVICE"], $_REQUEST["auth_service_error"]);
} elseif (!$oAuthManager->Authorize($_REQUEST["auth_service_id"])) {
$ex = $APPLICATION->GetException();
if ($ex) {
$arResult['ERROR_MESSAGE'] = $ex->GetString();
}
}
}
}
示例10: Authorize
public function Authorize()
{
global $APPLICATION;
$APPLICATION->RestartBuffer();
$bSuccess = false;
$bProcessState = false;
$authError = SOCSERV_AUTHORISATION_ERROR;
if (isset($_REQUEST["code"]) && $_REQUEST["code"] != '' && CSocServAuthManager::CheckUniqueKey()) {
$bProcessState = true;
$this->entityOAuth = $this->getEntityOAuth($_REQUEST['code']);
if (IsModuleInstalled('bitrix24') && defined('BX24_HOST_NAME')) {
$redirect_uri = static::CONTROLLER_URL . "/redirect.php";
} else {
$redirect_uri = $this->getEntityOAuth()->GetRedirectURI();
}
if ($this->entityOAuth->GetAccessToken($redirect_uri) !== false) {
$boxUser = $this->entityOAuth->GetCurrentUser();
if (is_array($boxUser)) {
$arFields = self::prepareUser($boxUser);
$authError = $this->AuthorizeUser($arFields);
$bSuccess = $authError === true;
}
}
}
$url = $APPLICATION->GetCurDir() == "/login/" ? "" : $APPLICATION->GetCurDir();
$aRemove = array("logout", "auth_service_error", "auth_service_id", "code", "error_reason", "error", "error_description", "check_key", "current_fieldset");
if (!$bProcessState) {
unset($_REQUEST["state"]);
}
$mode = 'opener';
$addParams = true;
if (isset($_REQUEST["state"])) {
$arState = array();
parse_str($_REQUEST["state"], $arState);
if (isset($arState['backurl']) || isset($arState['redirect_url'])) {
$url = !empty($arState['redirect_url']) ? $arState['redirect_url'] : $arState['backurl'];
if (substr($url, 0, 1) !== "#") {
$parseUrl = parse_url($url);
$urlPath = $parseUrl["path"];
$arUrlQuery = explode('&', $parseUrl["query"]);
foreach ($arUrlQuery as $key => $value) {
foreach ($aRemove as $param) {
if (strpos($value, $param . "=") === 0) {
unset($arUrlQuery[$key]);
break;
}
}
}
$url = !empty($arUrlQuery) ? $urlPath . '?' . implode("&", $arUrlQuery) : $urlPath;
} else {
$addParams = false;
}
}
if (isset($arState['mode'])) {
$mode = $arState['mode'];
}
}
if ($authError === SOCSERV_REGISTRATION_DENY) {
$url = preg_match("/\\?/", $url) ? $url . '&' : $url . '?';
$url .= 'auth_service_id=' . static::ID . '&auth_service_error=' . SOCSERV_REGISTRATION_DENY;
} elseif ($bSuccess !== true) {
$url = isset($urlPath) ? $urlPath . '?auth_service_id=' . static::ID . '&auth_service_error=' . $authError : $APPLICATION->GetCurPageParam('auth_service_id=' . static::ID . '&auth_service_error=' . $authError, $aRemove);
}
if ($addParams && CModule::IncludeModule("socialnetwork") && strpos($url, "current_fieldset=") === false) {
$url = preg_match("/\\?/", $url) ? $url . "¤t_fieldset=SOCSERV" : $url . "?current_fieldset=SOCSERV";
}
$url = CUtil::JSEscape($url);
if ($addParams) {
$location = $mode == "opener" ? 'if(window.opener) window.opener.location = \'' . $url . '\'; window.close();' : ' window.location = \'' . $url . '\';';
} else {
//fix for chrome
$location = $mode == "opener" ? 'if(window.opener) window.opener.location = window.opener.location.href + \'' . $url . '\'; window.close();' : ' window.location = window.location.href + \'' . $url . '\';';
}
$JSScript = '
<script type="text/javascript">
' . $location . '
</script>
';
echo $JSScript;
die;
}
示例11: Authorize
public function Authorize()
{
global $APPLICATION;
$APPLICATION->RestartBuffer();
$bSuccess = false;
$authError = SOCSERV_AUTHORISATION_ERROR;
if (isset($_REQUEST["code"]) && $_REQUEST["code"] != '' && CSocServAuthManager::CheckUniqueKey()) {
if (IsModuleInstalled('bitrix24') && defined('BX24_HOST_NAME')) {
$redirect_uri = static::CONTROLLER_URL . "/redirect.php";
} else {
$redirect_uri = CSocServUtil::ServerName() . "/bitrix/tools/oauth/google.php";
}
$this->entityOAuth = $this->getEntityOAuth($_REQUEST['code']);
if ($this->entityOAuth->GetAccessToken($redirect_uri) !== false) {
$arGoogleUser = $this->entityOAuth->GetCurrentUser();
if (is_array($arGoogleUser)) {
$first_name = "";
$last_name = "";
if (is_array($arGoogleUser['name'])) {
$first_name = $arGoogleUser['name']['givenName'];
$last_name = $arGoogleUser['name']['familyName'];
} elseif ($arGoogleUser['name'] != '') {
$aName = explode(" ", $arGoogleUser['name']);
if ($arGoogleUser['given_name'] != '') {
$first_name = $arGoogleUser['given_name'];
} else {
$first_name = $aName[0];
}
if ($arGoogleUser['family_name'] != '') {
$last_name = $arGoogleUser['family_name'];
} elseif (isset($aName[1])) {
$last_name = $aName[1];
}
}
$id = $arGoogleUser['id'];
$email = $arGoogleUser['email'];
if (strlen($arGoogleUser['email']) > 0) {
$dbRes = \Bitrix\Main\UserTable::getList(array('filter' => array('=EXTERNAL_AUTH_ID' => 'socservices', '=XML_ID' => $email), 'select' => array('ID'), 'limit' => 1));
if ($dbRes->fetch()) {
$id = $email;
}
}
$arFields = array('EXTERNAL_AUTH_ID' => static::ID, 'XML_ID' => $id, 'LOGIN' => static::LOGIN_PREFIX . $id, 'EMAIL' => $email, 'NAME' => $first_name, 'LAST_NAME' => $last_name, 'OATOKEN' => $this->entityOAuth->getToken(), 'OATOKEN_EXPIRES' => $this->entityOAuth->getAccessTokenExpires(), 'REFRESH_TOKEN' => $this->entityOAuth->getRefreshToken());
if ($arGoogleUser['gender'] != '') {
if ($arGoogleUser['gender'] == 'male') {
$arFields["PERSONAL_GENDER"] = 'M';
} elseif ($arGoogleUser['gender'] == 'female') {
$arFields["PERSONAL_GENDER"] = 'F';
}
}
if (isset($arGoogleUser['picture']) && static::CheckPhotoURI($arGoogleUser['picture'])) {
$arGoogleUser['picture'] = preg_replace("/\\?.*\$/", '', $arGoogleUser['picture']);
$arPic = CFile::MakeFileArray($arGoogleUser['picture']);
if ($arPic) {
$arFields["PERSONAL_PHOTO"] = $arPic;
}
}
$arFields["PERSONAL_WWW"] = isset($arGoogleUser['link']) ? $arGoogleUser['link'] : $arGoogleUser['url'];
if (strlen(SITE_ID) > 0) {
$arFields["SITE_ID"] = SITE_ID;
}
$authError = $this->AuthorizeUser($arFields);
$bSuccess = $authError === true;
}
}
}
$url = $APPLICATION->GetCurDir() == "/login/" ? "" : $APPLICATION->GetCurDir();
$aRemove = array("logout", "auth_service_error", "auth_service_id", "code", "error_reason", "error", "error_description", "check_key", "current_fieldset");
$mode = 'opener';
if (isset($_REQUEST["state"])) {
$arState = array();
parse_str($_REQUEST["state"], $arState);
if (isset($arState['backurl']) || isset($arState['redirect_url'])) {
$parseUrl = parse_url(!empty($arState['redirect_url']) ? $arState['redirect_url'] : $arState['backurl']);
$urlPath = $parseUrl["path"];
$arUrlQuery = explode('&', $parseUrl["query"]);
foreach ($arUrlQuery as $key => $value) {
foreach ($aRemove as $param) {
if (strpos($value, $param . "=") === 0) {
unset($arUrlQuery[$key]);
break;
}
}
}
$url = !empty($arUrlQuery) ? $urlPath . '?' . implode("&", $arUrlQuery) : $urlPath;
}
if (isset($arState['mode'])) {
$mode = $arState['mode'];
}
}
if ($authError === SOCSERV_REGISTRATION_DENY) {
$url = preg_match("/\\?/", $url) ? $url . '&' : $url . '?';
$url .= 'auth_service_id=' . static::ID . '&auth_service_error=' . SOCSERV_REGISTRATION_DENY;
} elseif ($bSuccess !== true) {
$url = isset($urlPath) ? $urlPath . '?auth_service_id=' . static::ID . '&auth_service_error=' . $authError : $APPLICATION->GetCurPageParam('auth_service_id=' . static::ID . '&auth_service_error=' . $authError, $aRemove);
}
if (CModule::IncludeModule("socialnetwork") && strpos($url, "current_fieldset=") === false) {
$url = preg_match("/\\?/", $url) ? $url . "¤t_fieldset=SOCSERV" : $url . "?current_fieldset=SOCSERV";
}
$url = CUtil::JSEscape($url);
//.........这里部分代码省略.........
示例12: Authorize
public function Authorize()
{
global $APPLICATION;
$APPLICATION->RestartBuffer();
$bSuccess = SOCSERV_AUTHORISATION_ERROR;
if((isset($_REQUEST["code"]) && $_REQUEST["code"] <> '') && CSocServAuthManager::CheckUniqueKey())
{
if(IsModuleInstalled('freetrix24') && defined('BX24_HOST_NAME'))
$redirect_uri = self::CONTROLLER_URL."/redirect.php";
else
$redirect_uri = CSocServUtil::ServerName()."/freetrix/tools/oauth/google.php";
$appID = trim(self::GetOption("google_appid"));
$appSecret = trim(self::GetOption("google_appsecret"));
$gAuth = new CGoogleOAuthInterface($appID, $appSecret, $_REQUEST["code"]);
$this->entityOAuth = $gAuth;
if($gAuth->GetAccessToken($redirect_uri) !== false)
{
$arGoogleUser = $gAuth->GetCurrentUser();
if(is_array($arGoogleUser) && ($arGoogleUser['email'] <> ''))
{
$first_name = $last_name = $gender = "";
if($arGoogleUser['name'] <> '')
{
$aName = explode(" ", $arGoogleUser['name']);
if($arGoogleUser['given_name'] <> '')
$first_name = $arGoogleUser['given_name'];
else
$first_name = $aName[0];
if($arGoogleUser['family_name'] <> '')
$last_name = $arGoogleUser['family_name'];
elseif(isset($aName[1]))
$last_name = $aName[1];
}
$email = $arGoogleUser['email'];
if($arGoogleUser['gender'] <> '')
if($arGoogleUser['gender'] == 'male')
$gender = 'M';
elseif($arGoogleUser['gender'] == 'female')
$gender = 'F';
$arFields = array(
'EXTERNAL_AUTH_ID' => self::ID,
'XML_ID' => $email,
'LOGIN' => "G_".$email,
'EMAIL' => $email,
'NAME'=> $first_name,
'LAST_NAME'=> $last_name
);
if($gender != "")
$arFields['PERSONAL_GENDER'] = $gender;
if(isset($arGoogleUser['picture']) && self::CheckPhotoURI($arGoogleUser['picture']))
if($arPic = CFile::MakeFileArray($arGoogleUser['picture']))
$arFields["PERSONAL_PHOTO"] = $arPic;
$arFields["PERSONAL_WWW"] = $arGoogleUser['link'];
if(isset($arGoogleUser['access_token']))
$arFields["OATOKEN"] = $arGoogleUser['access_token'];
if(isset($arGoogleUser['refresh_token']))
$arFields["REFRESH_TOKEN"] = $arGoogleUser['refresh_token'];
if(isset($arGoogleUser['expires_in']))
$arFields["OATOKEN_EXPIRES"] = $arGoogleUser['expires_in'];
if(strlen(SITE_ID) > 0)
$arFields["SITE_ID"] = SITE_ID;
$bSuccess = $this->AuthorizeUser($arFields);
}
}
}
$url = ($APPLICATION->GetCurDir() == "/login/") ? "" : $APPLICATION->GetCurDir();
$aRemove = array("logout", "auth_service_error", "auth_service_id", "code", "error_reason", "error", "error_description", "check_key", "current_fieldset");
$mode = 'opener';
if(isset($_REQUEST["state"]))
{
$arState = array();
parse_str($_REQUEST["state"], $arState);
if(isset($arState['backurl']))
{
$parseUrl = parse_url($arState['backurl']);
$urlPath = $parseUrl["path"];
$arUrlQuery = explode('&', $parseUrl["query"]);
foreach($arUrlQuery as $key => $value)
{
foreach($aRemove as $param)
{
if(strpos($value, $param."=") === 0)
{
unset($arUrlQuery[$key]);
break;
//.........这里部分代码省略.........
示例13: getAuthorizeLink
public static function getAuthorizeLink($engine)
{
$interface = static::getEngine()->getInterface();
if (!$interface->checkAccessToken()) {
if ($interface->getNewAccessToken()) {
static::getEngine()->setAuthSettings($interface->getResult());
}
}
$checkKey = "";
if (Loader::includeModule("socialservices")) {
$checkKey = \CSocServAuthManager::GetUniqueKey();
}
return static::SERVICE_URL . static::REGISTER . "?action=authorize&engine=" . urlencode($engine) . "&client_id=" . urlencode(static::getEngine()->getClientId()) . "&auth=" . urlencode($interface->getToken()) . "&check_key=" . urlencode($checkKey);
}
示例14: Authorize
public function Authorize()
{
$GLOBALS["APPLICATION"]->RestartBuffer();
$bSuccess = 1;
if((isset($_REQUEST["code"]) && $_REQUEST["code"] <> '') && CSocServAuthManager::CheckUniqueKey())
{
$redirect_uri = CSocServUtil::ServerName()."/bitrix/tools/oauth/google.php";
$appID = trim(self::GetOption("google_appid"));
$appSecret = trim(self::GetOption("google_appsecret"));
$gAuth = new CGoogleOAuthInterface($appID, $appSecret, $_REQUEST["code"]);
if($gAuth->GetAccessToken($redirect_uri) !== false)
{
$arGoogleUser = $gAuth->GetCurrentUser();
if($arGoogleUser['feed']['author']['0']['email']['$t'] <> '')
{
$first_name = $last_name = "";
if($arGoogleUser['feed']['author']['0']['name']['$t'] <> '')
{
$aName = explode(" ", $arGoogleUser['feed']['author']['0']['name']['$t']);
$first_name = $aName[0];
if(isset($aName[1]))
$last_name = $aName[1];
}
$email = $arGoogleUser['feed']['author']['0']['email']['$t'];
$arFields = array(
'EXTERNAL_AUTH_ID' => self::ID,
'XML_ID' => $email,
'LOGIN' => "G_".$email,
'EMAIL' => $email,
'NAME'=> $first_name,
'LAST_NAME'=> $last_name,
);
$arFields["PERSONAL_WWW"] = "https://accounts.google.com";
$bSuccess = $this->AuthorizeUser($arFields);
}
}
}
$url = ($GLOBALS["APPLICATION"]->GetCurDir() == "/login/") ? "/auth/" : $GLOBALS["APPLICATION"]->GetCurDir();
if(isset($_REQUEST["state"]))
{
$arState = array();
parse_str($_REQUEST["state"], $arState);
if(isset($arState['backurl']))
$url = parse_url($arState['backurl'], PHP_URL_PATH);
}
$aRemove = array("logout", "auth_service_error", "auth_service_id", "code", "error_reason", "error", "error_description", "check_key");
if(CModule::IncludeModule("socialnetwork"))
$url = (preg_match("/\?/", $url)) ? $url."¤t_fieldset=SOCSERV" : $url."?current_fieldset=SOCSERV";
if($bSuccess !== true)
$url = $GLOBALS['APPLICATION']->GetCurPageParam(('auth_service_id='.self::ID.'&auth_service_error='.$bSuccess), $aRemove);
if($bSuccess === 2)
$url = '/?auth_service_id='.self::ID.'&auth_service_error='.$bSuccess;
echo '
<script type="text/javascript">
if(window.opener)
window.opener.location = \''.CUtil::JSEscape($url).'\';
window.close();
</script>
';
die();
}
示例15: Validate
public function Validate()
{
if (CSocServAuthManager::CheckUniqueKey()) {
if ($arOpenidServerTags = $this->GetOpenIDServerTags($_GET['openid_identity'])) {
$arParams = array('openid.assoc_handle' => $_GET['openid_assoc_handle'], 'openid.signed' => $_GET['openid_signed'], 'openid.sig' => $_GET['openid_sig']);
$arSigned = explode(',', $_GET['openid_signed']);
foreach ($arSigned as $s) {
$arParams['openid.' . $s] = $_GET['openid_' . str_replace('.', '_', $s)];
}
$arParams['openid.mode'] = 'check_authentication';
if (isset($_SESSION['BX_OPENID_RETURN_TO'])) {
$arParams['openid.return_to'] = $_SESSION['BX_OPENID_RETURN_TO'];
unset($_SESSION['BX_OPENID_RETURN_TO']);
}
$str = CHTTP::sPost($arOpenidServerTags['server'], $arParams, true);
if (preg_match('/is_valid\\s*\\:\\s*/' . BX_UTF_PCRE_MODIFIER, $str)) {
return array('server' => $arOpenidServerTags['server'], 'identity' => $_GET['openid_identity']);
} else {
$GLOBALS['APPLICATION']->ThrowException(GetMessage('OPENID_CLIENT_ERROR_AUTH'));
}
}
}
// self::CleanParam('ERROR');
$GLOBALS['APPLICATION']->ThrowException(GetMessage('OPENID_CLIENT_ERROR_AUTH'));
return false;
}