Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105968295
DoorkeeperExternalObject.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
Fri, Mar 21, 04:36
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Mar 23, 04:36 (2 d)
Engine
blob
Format
Raw Data
Handle
25041529
Attached To
rPH Phabricator
DoorkeeperExternalObject.php
View Options
<?php
final
class
DoorkeeperExternalObject
extends
DoorkeeperDAO
implements
PhabricatorPolicyInterface
{
protected
$objectKey
;
protected
$applicationType
;
protected
$applicationDomain
;
protected
$objectType
;
protected
$objectID
;
protected
$objectURI
;
protected
$importerPHID
;
protected
$properties
=
array
();
protected
$viewPolicy
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'properties'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'objectKey'
=>
'bytes12'
,
'applicationType'
=>
'text32'
,
'applicationDomain'
=>
'text32'
,
'objectType'
=>
'text32'
,
'objectID'
=>
'text64'
,
'objectURI'
=>
'text128?'
,
'importerPHID'
=>
'phid?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_object'
=>
array
(
'columns'
=>
array
(
'objectKey'
),
'unique'
=>
true
,
),
'key_full'
=>
array
(
'columns'
=>
array
(
'applicationType'
,
'applicationDomain'
,
'objectType'
,
'objectID'
,
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
PhabricatorPHIDConstants
::
PHID_TYPE_XOBJ
);
}
public
function
getProperty
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
properties
,
$key
,
$default
);
}
public
function
setProperty
(
$key
,
$value
)
{
$this
->
properties
[
$key
]
=
$value
;
return
$this
;
}
public
function
getObjectKey
()
{
$key
=
parent
::
getObjectKey
();
if
(
$key
===
null
)
{
$key
=
$this
->
getRef
()->
getObjectKey
();
}
return
$key
;
}
public
function
getRef
()
{
return
id
(
new
DoorkeeperObjectRef
())
->
setApplicationType
(
$this
->
getApplicationType
())
->
setApplicationDomain
(
$this
->
getApplicationDomain
())
->
setObjectType
(
$this
->
getObjectType
())
->
setObjectID
(
$this
->
getObjectID
());
}
public
function
save
()
{
if
(!
$this
->
objectKey
)
{
$this
->
objectKey
=
$this
->
getObjectKey
();
}
return
parent
::
save
();
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
return
$this
->
viewPolicy
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
null
;
}
}
Event Timeline
Log In to Comment