Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F115937631
PhabricatorAuthFactor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jun 3, 23:32
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jun 5, 23:32 (2 d)
Engine
blob
Format
Raw Data
Handle
26581335
Attached To
rPH Phabricator
PhabricatorAuthFactor.php
View Options
<?php
abstract
class
PhabricatorAuthFactor
extends
Phobject
{
abstract
public
function
getFactorName
();
abstract
public
function
getFactorKey
();
abstract
public
function
getFactorDescription
();
abstract
public
function
processAddFactorForm
(
AphrontFormView
$form
,
AphrontRequest
$request
,
PhabricatorUser
$user
);
abstract
public
function
renderValidateFactorForm
(
PhabricatorAuthFactorConfig
$config
,
AphrontFormView
$form
,
PhabricatorUser
$viewer
,
$validation_result
);
abstract
public
function
processValidateFactorForm
(
PhabricatorAuthFactorConfig
$config
,
PhabricatorUser
$viewer
,
AphrontRequest
$request
);
public
function
isFactorValid
(
PhabricatorAuthFactorConfig
$config
,
$validation_result
)
{
return
(
idx
(
$validation_result
,
'valid'
)
===
true
);
}
public
function
getParameterName
(
PhabricatorAuthFactorConfig
$config
,
$name
)
{
return
'authfactor.'
.
$config
->
getID
().
'.'
.
$name
;
}
public
static
function
getAllFactors
()
{
static
$factors
;
if
(
$factors
===
null
)
{
$map
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
__CLASS__
)
->
loadObjects
();
$factors
=
array
();
foreach
(
$map
as
$factor
)
{
$key
=
$factor
->
getFactorKey
();
if
(
empty
(
$factors
[
$key
]))
{
$factors
[
$key
]
=
$factor
;
}
else
{
$this_class
=
get_class
(
$factor
);
$that_class
=
get_class
(
$factors
[
$key
]);
throw
new
Exception
(
pht
(
'Two auth factors (with classes "%s" and "%s") both provide '
.
'implementations with the same key ("%s"). Each factor must '
.
'have a unique key.'
,
$this_class
,
$that_class
,
$key
));
}
}
}
return
$factors
;
}
protected
function
newConfigForUser
(
PhabricatorUser
$user
)
{
return
id
(
new
PhabricatorAuthFactorConfig
())
->
setUserPHID
(
$user
->
getPHID
())
->
setFactorKey
(
$this
->
getFactorKey
());
}
}
Event Timeline
Log In to Comment