Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99384090
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
Fri, Jan 24, 01:56
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jan 26, 01:56 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
23787083
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
;
private
$token
=
self
::
ATTACHABLE
;
protected
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
attachToken
(
PhabricatorToken
$token
)
{
$this
->
token
=
$token
;
return
$this
;
}
public
function
getToken
()
{
return
$this
->
assertAttached
(
$this
->
token
);
}
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