Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118942935
PhabricatorEditEngineConfiguration.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
Mon, Jun 23, 04:55
Size
6 KB
Mime Type
text/x-php
Expires
Wed, Jun 25, 04:55 (2 d)
Engine
blob
Format
Raw Data
Handle
26944085
Attached To
rPH Phabricator
PhabricatorEditEngineConfiguration.php
View Options
<?php
final
class
PhabricatorEditEngineConfiguration
extends
PhabricatorSearchDAO
implements
PhabricatorApplicationTransactionInterface
,
PhabricatorPolicyInterface
{
protected
$engineKey
;
protected
$builtinKey
;
protected
$name
;
protected
$viewPolicy
;
protected
$editPolicy
;
protected
$properties
=
array
();
protected
$isDisabled
=
0
;
protected
$isDefault
=
0
;
private
$engine
=
self
::
ATTACHABLE
;
const
LOCK_VISIBLE
=
'visible'
;
const
LOCK_LOCKED
=
'locked'
;
const
LOCK_HIDDEN
=
'hidden'
;
public
function
getTableName
()
{
return
'search_editengineconfiguration'
;
}
public
static
function
initializeNewConfiguration
(
PhabricatorUser
$actor
,
PhabricatorEditEngine
$engine
)
{
// TODO: This should probably be controlled by a new default capability.
$edit_policy
=
PhabricatorPolicies
::
POLICY_ADMIN
;
return
id
(
new
PhabricatorEditEngineConfiguration
())
->
setEngineKey
(
$engine
->
getEngineKey
())
->
attachEngine
(
$engine
)
->
setViewPolicy
(
PhabricatorPolicies
::
getMostOpenPolicy
())
->
setEditPolicy
(
$edit_policy
);
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
PhabricatorEditEngineConfigurationPHIDType
::
TYPECONST
);
}
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'properties'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'engineKey'
=>
'text64'
,
'builtinKey'
=>
'text64?'
,
'name'
=>
'text255'
,
'isDisabled'
=>
'bool'
,
'isDefault'
=>
'bool'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_engine'
=>
array
(
'columns'
=>
array
(
'engineKey'
,
'builtinKey'
),
'unique'
=>
true
,
),
'key_default'
=>
array
(
'columns'
=>
array
(
'engineKey'
,
'isDefault'
,
'isDisabled'
),
),
),
)
+
parent
::
getConfiguration
();
}
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
attachEngine
(
PhabricatorEditEngine
$engine
)
{
$this
->
engine
=
$engine
;
return
$this
;
}
public
function
getEngine
()
{
return
$this
->
assertAttached
(
$this
->
engine
);
}
public
function
applyConfigurationToFields
(
PhabricatorEditEngine
$engine
,
array
$fields
)
{
$fields
=
mpull
(
$fields
,
null
,
'getKey'
);
$values
=
$this
->
getProperty
(
'defaults'
,
array
());
foreach
(
$fields
as
$key
=>
$field
)
{
if
(
$engine
->
getIsCreate
())
{
if
(
array_key_exists
(
$key
,
$values
))
{
$field
->
readDefaultValueFromConfiguration
(
$values
[
$key
]);
}
}
}
$locks
=
$this
->
getFieldLocks
();
foreach
(
$fields
as
$field
)
{
$key
=
$field
->
getKey
();
switch
(
idx
(
$locks
,
$key
))
{
case
self
::
LOCK_LOCKED
:
$field
->
setIsHidden
(
false
);
$field
->
setIsLocked
(
true
);
break
;
case
self
::
LOCK_HIDDEN
:
$field
->
setIsHidden
(
true
);
$field
->
setIsLocked
(
false
);
break
;
case
self
::
LOCK_VISIBLE
:
$field
->
setIsHidden
(
false
);
$field
->
setIsLocked
(
false
);
break
;
default
:
// If we don't have an explicit value, don't make any adjustments.
break
;
}
}
$fields
=
$this
->
reorderFields
(
$fields
);
$preamble
=
$this
->
getPreamble
();
if
(
strlen
(
$preamble
))
{
$fields
=
array
(
'config.preamble'
=>
id
(
new
PhabricatorInstructionsEditField
())
->
setKey
(
'config.preamble'
)
->
setIsReorderable
(
false
)
->
setIsDefaultable
(
false
)
->
setIsLockable
(
false
)
->
setValue
(
$preamble
),
)
+
$fields
;
}
return
$fields
;
}
private
function
reorderFields
(
array
$fields
)
{
$keys
=
$this
->
getFieldOrder
();
$fields
=
array_select_keys
(
$fields
,
$keys
)
+
$fields
;
return
$fields
;
}
public
function
getURI
()
{
$engine_key
=
$this
->
getEngineKey
();
$key
=
$this
->
getIdentifier
();
return
"/transactions/editengine/{$engine_key}/view/{$key}/"
;
}
public
function
getIdentifier
()
{
$key
=
$this
->
getID
();
if
(!
$key
)
{
$key
=
$this
->
getBuiltinKey
();
}
return
$key
;
}
public
function
getDisplayName
()
{
$name
=
$this
->
getName
();
if
(
strlen
(
$name
))
{
return
$name
;
}
$builtin
=
$this
->
getBuiltinKey
();
if
(
$builtin
!==
null
)
{
return
pht
(
'Builtin Form "%s"'
,
$builtin
);
}
return
pht
(
'Untitled Form'
);
}
public
function
getPreamble
()
{
return
$this
->
getProperty
(
'preamble'
);
}
public
function
setPreamble
(
$preamble
)
{
return
$this
->
setProperty
(
'preamble'
,
$preamble
);
}
public
function
setFieldOrder
(
array
$field_order
)
{
return
$this
->
setProperty
(
'order'
,
$field_order
);
}
public
function
getFieldOrder
()
{
return
$this
->
getProperty
(
'order'
,
array
());
}
public
function
setFieldLocks
(
array
$field_locks
)
{
return
$this
->
setProperty
(
'locks'
,
$field_locks
);
}
public
function
getFieldLocks
()
{
return
$this
->
getProperty
(
'locks'
,
array
());
}
public
function
getFieldDefault
(
$key
)
{
$defaults
=
$this
->
getProperty
(
'defaults'
,
array
());
return
idx
(
$defaults
,
$key
);
}
public
function
setFieldDefault
(
$key
,
$value
)
{
$defaults
=
$this
->
getProperty
(
'defaults'
,
array
());
$defaults
[
$key
]
=
$value
;
return
$this
->
setProperty
(
'defaults'
,
$defaults
);
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
$this
->
getViewPolicy
();
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
return
$this
->
getEditPolicy
();
}
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
null
;
}
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
public
function
getApplicationTransactionEditor
()
{
return
new
PhabricatorEditEngineConfigurationEditor
();
}
public
function
getApplicationTransactionObject
()
{
return
$this
;
}
public
function
getApplicationTransactionTemplate
()
{
return
new
PhabricatorEditEngineConfigurationTransaction
();
}
public
function
willRenderTimeline
(
PhabricatorApplicationTransactionView
$timeline
,
AphrontRequest
$request
)
{
return
$timeline
;
}
}
Event Timeline
Log In to Comment