Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91457345
PhabricatorPHIDResolver.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
Mon, Nov 11, 07:40
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 07:40 (2 d)
Engine
blob
Format
Raw Data
Handle
22265872
Attached To
rPH Phabricator
PhabricatorPHIDResolver.php
View Options
<?php
/**
* Resolve a list of identifiers into PHIDs.
*
* This class simplifies the process of convering a list of mixed token types
* (like some PHIDs and some usernames) into a list of just PHIDs.
*/
abstract
class
PhabricatorPHIDResolver
extends
Phobject
{
private
$viewer
;
final
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
final
public
function
resolvePHIDs
(
array
$phids
)
{
$type_unknown
=
PhabricatorPHIDConstants
::
PHID_TYPE_UNKNOWN
;
$names
=
array
();
foreach
(
$phids
as
$key
=>
$phid
)
{
if
(
phid_get_type
(
$phid
)
==
$type_unknown
)
{
$names
[
$key
]
=
$phid
;
}
}
if
(
$names
)
{
$map
=
$this
->
getResolutionMap
(
$names
);
foreach
(
$names
as
$key
=>
$name
)
{
if
(
isset
(
$map
[
$name
]))
{
$phids
[
$key
]
=
$map
[
$name
];
}
}
}
return
$phids
;
}
abstract
protected
function
getResolutionMap
(
array
$names
);
}
Event Timeline
Log In to Comment