Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
f0b9e150
Commit
f0b9e150
authored
Dec 24, 2013
by
Paul Klimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OpenId client 'discover()' method updated to return 'identity' instead of set internal field.
parent
fea65200
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
18 deletions
+21
-18
OpenId.php
extensions/yii/authclient/OpenId.php
+19
-17
OpenIdTest.php
tests/unit/extensions/authclient/OpenIdTest.php
+2
-1
No files found.
extensions/yii/authclient/OpenId.php
View file @
f0b9e150
...
...
@@ -408,29 +408,31 @@ class OpenId extends BaseClient implements ClientInterface
* @return array OpenID provider info, following keys will be available:
* - 'url' - string OP Endpoint (i.e. OpenID provider address).
* - 'version' - integer OpenID protocol version used by provider.
* - 'identifierSelect' - boolean whether to request OP to select identity for an user in OpenID 2, does not affect OpenID 1.
* - 'identity' - string identity value.
* - 'identifier_select' - boolean whether to request OP to select identity for an user in OpenID 2, does not affect OpenID 1.
* - 'ax' - boolean whether AX attributes should be used.
* - 'sreg' - boolean whether SREG attributes should be used.
* @throws Exception on failure.
*/
public
function
discover
(
$url
)
{
if
(
!
$url
)
{
if
(
empty
(
$url
)
)
{
throw
new
Exception
(
'No identity supplied.'
);
}
// Use xri.net proxy to resolve i-name identities
if
(
!
preg_match
(
'#^https?:#'
,
$url
))
{
$url
=
'https://xri.net/'
.
$url
;
}
$result
=
[
'url'
=>
null
,
'version'
=>
null
,
'identifierSelect'
=>
false
,
'identity'
=>
$url
,
'identifier_select'
=>
false
,
'ax'
=>
false
,
'sreg'
=>
false
,
];
// Use xri.net proxy to resolve i-name identities
if
(
!
preg_match
(
'#^https?:#'
,
$url
))
{
$url
=
'https://xri.net/'
.
$url
;
}
/* We save the original url in case of Yadis discovery failure.
It can happen when we'll be lead to an XRDS document
which does not have any OpenID2 services.*/
...
...
@@ -469,7 +471,7 @@ class OpenId extends BaseClient implements ClientInterface
$ns
=
preg_quote
(
'http://specs.openid.net/auth/2.0/'
);
if
(
preg_match
(
'#<Type>\s*'
.
$ns
.
'(server|signon)\s*</Type>#s'
,
$content
,
$type
))
{
if
(
$type
[
1
]
==
'server'
)
{
$result
[
'identifier
S
elect'
]
=
true
;
$result
[
'identifier
_s
elect'
]
=
true
;
}
preg_match
(
'#<URI.*?>(.*)</URI>#'
,
$content
,
$server
);
...
...
@@ -483,7 +485,7 @@ class OpenId extends BaseClient implements ClientInterface
$server
=
$server
[
1
];
if
(
isset
(
$delegate
[
2
]))
{
$
this
->
_identity
=
trim
(
$delegate
[
2
]);
$
result
[
'identity'
]
=
trim
(
$delegate
[
2
]);
}
$result
[
'url'
]
=
$server
;
...
...
@@ -504,7 +506,7 @@ class OpenId extends BaseClient implements ClientInterface
$server
=
$server
[
1
];
if
(
isset
(
$delegate
[
1
]))
{
$
this
->
_identity
=
$delegate
[
1
];
$
result
[
'identity'
]
=
$delegate
[
1
];
}
$result
[
'url'
]
=
$server
;
...
...
@@ -552,7 +554,7 @@ class OpenId extends BaseClient implements ClientInterface
// We found an OpenID2 OP Endpoint
if
(
$delegate
)
{
// We have also found an OP-Local ID.
$
this
->
_identity
=
$delegate
;
$
result
[
'identity'
]
=
$delegate
;
}
$result
[
'url'
]
=
$server
;
$result
[
'version'
]
=
$version
;
...
...
@@ -658,7 +660,7 @@ class OpenId extends BaseClient implements ClientInterface
/* If we have an openid.delegate that is different from our claimed id,
we need to somehow preserve the claimed id between requests.
The simplest way is to just send it along with the return_to url.*/
if
(
$
this
->
_identity
!=
$this
->
_claimedId
)
{
if
(
$
serverInfo
[
'identity'
]
!=
$this
->
_claimedId
)
{
$returnUrl
.=
(
strpos
(
$returnUrl
,
'?'
)
?
'&'
:
'?'
)
.
'openid.claimed_id='
.
$this
->
_claimedId
;
}
...
...
@@ -667,7 +669,7 @@ class OpenId extends BaseClient implements ClientInterface
[
'openid.return_to'
=>
$returnUrl
,
'openid.mode'
=>
'checkid_setup'
,
'openid.identity'
=>
$
this
->
_identity
,
'openid.identity'
=>
$
serverInfo
[
'identity'
]
,
'openid.trust_root'
=>
$this
->
trustRoot
,
]
);
...
...
@@ -699,12 +701,12 @@ class OpenId extends BaseClient implements ClientInterface
$params
=
array_merge
(
$this
->
buildSregParams
(),
$this
->
buildAxParams
(),
$params
);
}
if
(
$serverInfo
[
'identifier
S
elect'
])
{
if
(
$serverInfo
[
'identifier
_s
elect'
])
{
$url
=
'http://specs.openid.net/auth/2.0/identifier_select'
;
$params
[
'openid.identity'
]
=
$url
;
$params
[
'openid.claimed_id'
]
=
$url
;
}
else
{
$params
[
'openid.identity'
]
=
$
this
->
_identity
;
$params
[
'openid.identity'
]
=
$
serverInfo
[
'identity'
]
;
$params
[
'openid.claimed_id'
]
=
$this
->
_claimedId
;
}
return
$this
->
buildUrl
(
parse_url
(
$serverInfo
[
'url'
]),
[
'query'
=>
http_build_query
(
$params
,
''
,
'&'
)]);
...
...
@@ -721,7 +723,7 @@ class OpenId extends BaseClient implements ClientInterface
$serverInfo
=
$this
->
discover
(
$this
->
_identity
);
if
(
$serverInfo
[
'version'
]
==
2
)
{
if
(
$identifierSelect
!==
null
)
{
$serverInfo
[
'identifier
S
elect'
]
=
$identifierSelect
;
$serverInfo
[
'identifier
_s
elect'
]
=
$identifierSelect
;
}
return
$this
->
buildAuthUrlV2
(
$serverInfo
);
}
...
...
tests/unit/extensions/authclient/OpenIdTest.php
View file @
f0b9e150
...
...
@@ -52,8 +52,9 @@ class OpenIdTest extends TestCase
$info
=
$client
->
discover
(
$url
);
$this
->
assertNotEmpty
(
$info
);
$this
->
assertNotEmpty
(
$info
[
'url'
]);
$this
->
assertNotEmpty
(
$info
[
'identity'
]);
$this
->
assertEquals
(
2
,
$info
[
'version'
]);
$this
->
assertArrayHasKey
(
'identifier
S
elect'
,
$info
);
$this
->
assertArrayHasKey
(
'identifier
_s
elect'
,
$info
);
$this
->
assertArrayHasKey
(
'ax'
,
$info
);
$this
->
assertArrayHasKey
(
'sreg'
,
$info
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment