Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96943278
PhabricatorTokenGiven.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
Wed, Jan 1, 00:23
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Jan 3, 00:23 (2 d)
Engine
blob
Format
Raw Data
Handle
23273622
Attached To
rPH Phabricator
PhabricatorTokenGiven.php
View Options
<?php
final
class
PhabricatorTokenGiven
extends
PhabricatorTokenDAO
implements
PhabricatorPolicyInterface
{
protected
$authorPHID
;
protected
$objectPHID
;
protected
$tokenPHID
;
private
$object
=
self
::
ATTACHABLE
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_all'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'authorPHID'
),
'unique'
=>
true
,
),
'key_author'
=>
array
(
'columns'
=>
array
(
'authorPHID'
),
),
'key_token'
=>
array
(
'columns'
=>
array
(
'tokenPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
attachObject
(
PhabricatorTokenReceiverInterface
$object
)
{
$this
->
object
=
$object
;
return
$this
;
}
public
function
getObject
()
{
return
$this
->
assertAttached
(
$this
->
object
);
}
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
$this
->
getObject
()->
getPolicy
(
$capability
);
default
:
return
PhabricatorPolicies
::
POLICY_NOONE
;
}
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$user
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
$this
->
getObject
()->
hasAutomaticCapability
(
$capability
,
$user
);
default
:
if
(
$user
->
getPHID
()
==
$this
->
authorPHID
)
{
return
true
;
}
return
false
;
}
}
public
function
describeAutomaticCapability
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
pht
(
'A token inherits the policies of the object it is awarded to.'
);
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
return
pht
(
'The user who gave a token can always edit it.'
);
}
return
null
;
}
}
Event Timeline
Log In to Comment