Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F555667
HeraldField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
8 KB
Referenced Files
None
Subscribers
None
HeraldField.php
View Options
<?php
abstract
class
HeraldField
extends
Phobject
{
private
$adapter
;
const
STANDARD_BOOL
=
'standard.bool'
;
const
STANDARD_TEXT
=
'standard.text'
;
const
STANDARD_TEXT_LIST
=
'standard.text.list'
;
const
STANDARD_TEXT_MAP
=
'standard.text.map'
;
const
STANDARD_PHID
=
'standard.phid'
;
const
STANDARD_PHID_LIST
=
'standard.phid.list'
;
const
STANDARD_PHID_BOOL
=
'standard.phid.bool'
;
const
STANDARD_PHID_NULLABLE
=
'standard.phid.nullable'
;
abstract
public
function
getHeraldFieldName
();
abstract
public
function
getHeraldFieldValue
(
$object
);
public
function
getFieldGroupKey
()
{
return
null
;
}
public
function
getRequiredAdapterStates
()
{
return
array
();
}
protected
function
getHeraldFieldStandardType
()
{
throw
new
PhutilMethodNotImplementedException
();
}
protected
function
getDatasource
()
{
throw
new
PhutilMethodNotImplementedException
();
}
protected
function
getDatasourceValueMap
()
{
return
null
;
}
public
function
getHeraldFieldConditions
()
{
$standard_type
=
$this
->
getHeraldFieldStandardType
();
switch
(
$standard_type
)
{
case
self
::
STANDARD_BOOL
:
return
array
(
HeraldAdapter
::
CONDITION_IS_TRUE
,
HeraldAdapter
::
CONDITION_IS_FALSE
,
);
case
self
::
STANDARD_TEXT
:
return
array
(
HeraldAdapter
::
CONDITION_CONTAINS
,
HeraldAdapter
::
CONDITION_NOT_CONTAINS
,
HeraldAdapter
::
CONDITION_IS
,
HeraldAdapter
::
CONDITION_IS_NOT
,
HeraldAdapter
::
CONDITION_REGEXP
,
HeraldAdapter
::
CONDITION_NOT_REGEXP
,
);
case
self
::
STANDARD_PHID
:
return
array
(
HeraldAdapter
::
CONDITION_IS_ANY
,
HeraldAdapter
::
CONDITION_IS_NOT_ANY
,
);
case
self
::
STANDARD_PHID_LIST
:
return
array
(
HeraldAdapter
::
CONDITION_INCLUDE_ALL
,
HeraldAdapter
::
CONDITION_INCLUDE_ANY
,
HeraldAdapter
::
CONDITION_INCLUDE_NONE
,
HeraldAdapter
::
CONDITION_EXISTS
,
HeraldAdapter
::
CONDITION_NOT_EXISTS
,
);
case
self
::
STANDARD_PHID_BOOL
:
return
array
(
HeraldAdapter
::
CONDITION_EXISTS
,
HeraldAdapter
::
CONDITION_NOT_EXISTS
,
);
case
self
::
STANDARD_PHID_NULLABLE
:
return
array
(
HeraldAdapter
::
CONDITION_IS_ANY
,
HeraldAdapter
::
CONDITION_IS_NOT_ANY
,
HeraldAdapter
::
CONDITION_EXISTS
,
HeraldAdapter
::
CONDITION_NOT_EXISTS
,
);
case
self
::
STANDARD_TEXT_LIST
:
return
array
(
HeraldAdapter
::
CONDITION_CONTAINS
,
HeraldAdapter
::
CONDITION_NOT_CONTAINS
,
HeraldAdapter
::
CONDITION_REGEXP
,
HeraldAdapter
::
CONDITION_NOT_REGEXP
,
HeraldAdapter
::
CONDITION_EXISTS
,
HeraldAdapter
::
CONDITION_NOT_EXISTS
,
);
case
self
::
STANDARD_TEXT_MAP
:
return
array
(
HeraldAdapter
::
CONDITION_CONTAINS
,
HeraldAdapter
::
CONDITION_NOT_CONTAINS
,
HeraldAdapter
::
CONDITION_REGEXP
,
HeraldAdapter
::
CONDITION_NOT_REGEXP
,
HeraldAdapter
::
CONDITION_REGEXP_PAIR
,
);
}
throw
new
Exception
(
pht
(
'Herald field "%s" has unknown standard type "%s".'
,
get_class
(
$this
),
$standard_type
));
}
public
function
getHeraldFieldValueType
(
$condition
)
{
// NOTE: The condition type may be "null" to indicate that the caller
// wants a generic field value type. This is used when rendering field
// values in the object transcript.
$standard_type
=
$this
->
getHeraldFieldStandardType
();
switch
(
$standard_type
)
{
case
self
::
STANDARD_BOOL
:
case
self
::
STANDARD_PHID_BOOL
:
return
new
HeraldBoolFieldValue
();
case
self
::
STANDARD_TEXT
:
case
self
::
STANDARD_TEXT_LIST
:
case
self
::
STANDARD_TEXT_MAP
:
switch
(
$condition
)
{
case
HeraldAdapter
::
CONDITION_EXISTS
:
case
HeraldAdapter
::
CONDITION_NOT_EXISTS
:
return
new
HeraldEmptyFieldValue
();
default
:
return
new
HeraldTextFieldValue
();
}
case
self
::
STANDARD_PHID
:
case
self
::
STANDARD_PHID_NULLABLE
:
case
self
::
STANDARD_PHID_LIST
:
switch
(
$condition
)
{
case
HeraldAdapter
::
CONDITION_EXISTS
:
case
HeraldAdapter
::
CONDITION_NOT_EXISTS
:
return
new
HeraldEmptyFieldValue
();
default
:
$tokenizer
=
id
(
new
HeraldTokenizerFieldValue
())
->
setKey
(
$this
->
getHeraldFieldName
())
->
setDatasource
(
$this
->
getDatasource
());
$value_map
=
$this
->
getDatasourceValueMap
();
if
(
$value_map
!==
null
)
{
$tokenizer
->
setValueMap
(
$value_map
);
}
return
$tokenizer
;
}
}
throw
new
Exception
(
pht
(
'Herald field "%s" has unknown standard type "%s".'
,
get_class
(
$this
),
$standard_type
));
}
abstract
public
function
supportsObject
(
$object
);
public
function
getFieldsForObject
(
$object
)
{
return
array
(
$this
->
getFieldConstant
()
=>
$this
);
}
public
function
renderConditionValue
(
PhabricatorUser
$viewer
,
$condition
,
$value
)
{
$value_type
=
$this
->
getHeraldFieldValueType
(
$condition
);
$value_type
->
setViewer
(
$viewer
);
return
$value_type
->
renderFieldValue
(
$value
);
}
public
function
getEditorValue
(
PhabricatorUser
$viewer
,
$condition
,
$value
)
{
$value_type
=
$this
->
getHeraldFieldValueType
(
$condition
);
$value_type
->
setViewer
(
$viewer
);
return
$value_type
->
renderEditorValue
(
$value
);
}
public
function
renderTranscriptValue
(
PhabricatorUser
$viewer
,
$field_value
)
{
$value_type
=
$this
->
getHeraldFieldValueType
(
$condition_type
=
null
);
$value_type
->
setViewer
(
$viewer
);
return
$value_type
->
renderTranscriptValue
(
$field_value
);
}
public
function
getPHIDsAffectedByCondition
(
HeraldCondition
$condition
)
{
try
{
$standard_type
=
$this
->
getHeraldFieldStandardType
();
}
catch
(
PhutilMethodNotImplementedException
$ex
)
{
$standard_type
=
null
;
}
switch
(
$standard_type
)
{
case
self
::
STANDARD_PHID
:
case
self
::
STANDARD_PHID_NULLABLE
:
case
self
::
STANDARD_PHID_LIST
:
$phids
=
$condition
->
getValue
();
if
(!
is_array
(
$phids
))
{
$phids
=
array
();
}
return
$phids
;
}
return
array
();
}
final
public
function
setAdapter
(
HeraldAdapter
$adapter
)
{
$this
->
adapter
=
$adapter
;
return
$this
;
}
final
public
function
getAdapter
()
{
return
$this
->
adapter
;
}
final
public
function
getFieldConstant
()
{
return
$this
->
getPhobjectClassConstant
(
'FIELDCONST'
,
self
::
getFieldConstantByteLimit
());
}
final
public
static
function
getFieldConstantByteLimit
()
{
return
64
;
}
final
public
static
function
getAllFields
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getFieldConstant'
)
->
execute
();
}
final
protected
function
hasAppliedTransactionOfType
(
$type
)
{
$xactions
=
$this
->
getAdapter
()->
getAppliedTransactions
();
if
(!
$xactions
)
{
return
false
;
}
foreach
(
$xactions
as
$xaction
)
{
if
(
$xaction
->
getTransactionType
()
===
$type
)
{
return
true
;
}
}
return
false
;
}
final
protected
function
getAppliedTransactionsOfTypes
(
array
$types
)
{
$types
=
array_fuse
(
$types
);
$xactions
=
$this
->
getAdapter
()->
getAppliedTransactions
();
$result
=
array
();
foreach
(
$xactions
as
$key
=>
$xaction
)
{
$xaction_type
=
$xaction
->
getTransactionType
();
if
(
isset
(
$types
[
$xaction_type
]))
{
$result
[
$key
]
=
$xaction
;
}
}
return
$result
;
}
final
protected
function
getAppliedEdgeTransactionOfType
(
$edge_type
)
{
$edge_xactions
=
$this
->
getAppliedTransactionsOfTypes
(
array
(
PhabricatorTransactions
::
TYPE_EDGE
,
));
$results
=
array
();
foreach
(
$edge_xactions
as
$edge_xaction
)
{
$xaction_edge_type
=
$edge_xaction
->
getMetadataValue
(
'edge:type'
);
if
(
$xaction_edge_type
==
$edge_type
)
{
$results
[]
=
$edge_xaction
;
}
}
if
(
count
(
$results
)
>
1
)
{
throw
new
Exception
(
pht
(
'Found more than one ("%s") applied edge transactions with given '
.
'edge type ("%s"); expected zero or one.'
,
phutil_count
(
$results
),
$edge_type
));
}
if
(
$results
)
{
return
head
(
$results
);
}
return
null
;
}
public
function
isFieldAvailable
()
{
return
true
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 6:44 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
112888
Default Alt Text
HeraldField.php (8 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment