Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92790524
AlmanacProperty.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
Sat, Nov 23, 18:08
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 18:08 (2 d)
Engine
blob
Format
Raw Data
Handle
22499737
Attached To
rPH Phabricator
AlmanacProperty.php
View Options
<?php
final
class
AlmanacProperty
extends
AlmanacDAO
implements
PhabricatorPolicyInterface
{
protected
$objectPHID
;
protected
$fieldIndex
;
protected
$fieldName
;
protected
$fieldValue
;
private
$object
=
self
::
ATTACHABLE
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'fieldValue'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'fieldIndex'
=>
'bytes12'
,
'fieldName'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'fieldIndex'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getObject
()
{
return
$this
->
assertAttached
(
$this
->
object
);
}
public
function
attachObject
(
PhabricatorLiskDAO
$object
)
{
$this
->
object
=
$object
;
return
$this
;
}
public
static
function
newPropertyUpdateTransactions
(
AlmanacPropertyInterface
$object
,
array
$properties
,
$only_builtins
=
false
)
{
$template
=
$object
->
getApplicationTransactionTemplate
();
$builtins
=
$object
->
getAlmanacPropertyFieldSpecifications
();
$xactions
=
array
();
foreach
(
$properties
as
$name
=>
$property
)
{
if
(
$only_builtins
&&
empty
(
$builtins
[
$name
]))
{
continue
;
}
$xactions
[]
=
id
(
clone
$template
)
->
setTransactionType
(
AlmanacTransaction
::
TYPE_PROPERTY_UPDATE
)
->
setMetadataValue
(
'almanac.property'
,
$name
)
->
setNewValue
(
$property
);
}
return
$xactions
;
}
public
static
function
newPropertyRemoveTransactions
(
AlmanacPropertyInterface
$object
,
array
$properties
)
{
$template
=
$object
->
getApplicationTransactionTemplate
();
$xactions
=
array
();
foreach
(
$properties
as
$property
)
{
$xactions
[]
=
id
(
clone
$template
)
->
setTransactionType
(
AlmanacTransaction
::
TYPE_PROPERTY_REMOVE
)
->
setMetadataValue
(
'almanac.property'
,
$property
)
->
setNewValue
(
null
);
}
return
$xactions
;
}
public
function
save
()
{
$hash
=
PhabricatorHash
::
digestForIndex
(
$this
->
getFieldName
());
$this
->
setFieldIndex
(
$hash
);
return
parent
::
save
();
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
return
$this
->
getObject
()->
getPolicy
(
$capability
);
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
$this
->
getObject
()->
hasAutomaticCapability
(
$capability
,
$viewer
);
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
pht
(
'Properties inherit the policies of their object.'
);
}
}
Event Timeline
Log In to Comment