Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98904213
HeraldManiphestTaskAdapter.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 17, 09:10
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jan 19, 09:10 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23664106
Attached To
rPH Phabricator
HeraldManiphestTaskAdapter.php
View Options
<?php
final
class
HeraldManiphestTaskAdapter
extends
HeraldAdapter
{
private
$task
;
private
$assignPHID
;
protected
function
newObject
()
{
return
new
ManiphestTask
();
}
public
function
getAdapterApplicationClass
()
{
return
'PhabricatorManiphestApplication'
;
}
public
function
getAdapterContentDescription
()
{
return
pht
(
'React to tasks being created or updated.'
);
}
protected
function
initializeNewAdapter
()
{
$this
->
task
=
$this
->
newObject
();
}
public
function
supportsApplicationEmail
()
{
return
true
;
}
public
function
getRepetitionOptions
()
{
return
array
(
HeraldRepetitionPolicyConfig
::
EVERY
,
HeraldRepetitionPolicyConfig
::
FIRST
,
);
}
public
function
supportsRuleType
(
$rule_type
)
{
switch
(
$rule_type
)
{
case
HeraldRuleTypeConfig
::
RULE_TYPE_GLOBAL
:
case
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
:
return
true
;
case
HeraldRuleTypeConfig
::
RULE_TYPE_OBJECT
:
default
:
return
false
;
}
}
public
function
setTask
(
ManiphestTask
$task
)
{
$this
->
task
=
$task
;
return
$this
;
}
public
function
getTask
()
{
return
$this
->
task
;
}
public
function
getObject
()
{
return
$this
->
task
;
}
public
function
setAssignPHID
(
$assign_phid
)
{
$this
->
assignPHID
=
$assign_phid
;
return
$this
;
}
public
function
getAssignPHID
()
{
return
$this
->
assignPHID
;
}
public
function
getAdapterContentName
()
{
return
pht
(
'Maniphest Tasks'
);
}
public
function
getActions
(
$rule_type
)
{
switch
(
$rule_type
)
{
case
HeraldRuleTypeConfig
::
RULE_TYPE_GLOBAL
:
return
array_merge
(
array
(
self
::
ACTION_ADD_CC
,
self
::
ACTION_REMOVE_CC
,
self
::
ACTION_EMAIL
,
self
::
ACTION_ASSIGN_TASK
,
self
::
ACTION_NOTHING
,
),
parent
::
getActions
(
$rule_type
));
case
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
:
return
array_merge
(
array
(
self
::
ACTION_ADD_CC
,
self
::
ACTION_REMOVE_CC
,
self
::
ACTION_EMAIL
,
self
::
ACTION_FLAG
,
self
::
ACTION_ASSIGN_TASK
,
self
::
ACTION_NOTHING
,
),
parent
::
getActions
(
$rule_type
));
}
}
public
function
getHeraldName
()
{
return
'T'
.
$this
->
getTask
()->
getID
();
}
public
function
applyHeraldEffects
(
array
$effects
)
{
assert_instances_of
(
$effects
,
'HeraldEffect'
);
$result
=
array
();
foreach
(
$effects
as
$effect
)
{
$action
=
$effect
->
getAction
();
switch
(
$action
)
{
case
self
::
ACTION_ASSIGN_TASK
:
$target_array
=
$effect
->
getTarget
();
$assign_phid
=
reset
(
$target_array
);
$this
->
setAssignPHID
(
$assign_phid
);
$result
[]
=
new
HeraldApplyTranscript
(
$effect
,
true
,
pht
(
'Assigned task.'
));
break
;
default
:
$result
[]
=
$this
->
applyStandardEffect
(
$effect
);
break
;
}
}
return
$result
;
}
}
Event Timeline
Log In to Comment