Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F464764
PhabricatorAuthChallengeStatusController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorAuthChallengeStatusController.php
View Options
<?php
final
class
PhabricatorAuthChallengeStatusController
extends
PhabricatorAuthController
{
public
function
shouldAllowPartialSessions
()
{
// We expect that users may request the status of an MFA challenge when
// they hit the session upgrade gate on login.
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$now
=
PhabricatorTime
::
getNow
();
$result
=
new
PhabricatorAuthChallengeUpdate
();
$challenge
=
id
(
new
PhabricatorAuthChallengeQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
withUserPHIDs
(
array
(
$viewer
->
getPHID
()))
->
withChallengeTTLBetween
(
$now
,
null
)
->
executeOne
();
if
(
$challenge
)
{
$config
=
id
(
new
PhabricatorAuthFactorConfigQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$challenge
->
getFactorPHID
()))
->
executeOne
();
if
(
$config
)
{
$provider
=
$config
->
getFactorProvider
();
$factor
=
$provider
->
getFactor
();
$result
=
$factor
->
newChallengeStatusView
(
$config
,
$provider
,
$viewer
,
$challenge
);
}
}
return
id
(
new
AphrontAjaxResponse
())
->
setContent
(
$result
->
newContent
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 9:53 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
74206
Default Alt Text
PhabricatorAuthChallengeStatusController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment