Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99490986
HeraldPreCommitAdapter.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, 23:54
Size
3 KB
Mime Type
text/x-php
Expires
Sun, Jan 26, 23:54 (2 d)
Engine
blob
Format
Raw Data
Handle
23805459
Attached To
rPH Phabricator
HeraldPreCommitAdapter.php
View Options
<?php
abstract
class
HeraldPreCommitAdapter
extends
HeraldAdapter
{
private
$log
;
private
$hookEngine
;
private
$emailPHIDs
=
array
();
public
function
setPushLog
(
PhabricatorRepositoryPushLog
$log
)
{
$this
->
log
=
$log
;
return
$this
;
}
public
function
setHookEngine
(
DiffusionCommitHookEngine
$engine
)
{
$this
->
hookEngine
=
$engine
;
return
$this
;
}
public
function
getHookEngine
()
{
return
$this
->
hookEngine
;
}
public
function
getAdapterApplicationClass
()
{
return
'PhabricatorApplicationDiffusion'
;
}
public
function
getObject
()
{
return
$this
->
log
;
}
public
function
getEmailPHIDs
()
{
return
array_values
(
$this
->
emailPHIDs
);
}
public
function
supportsRuleType
(
$rule_type
)
{
switch
(
$rule_type
)
{
case
HeraldRuleTypeConfig
::
RULE_TYPE_GLOBAL
:
case
HeraldRuleTypeConfig
::
RULE_TYPE_OBJECT
:
case
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
:
return
true
;
default
:
return
false
;
}
}
public
function
canTriggerOnObject
(
$object
)
{
if
(
$object
instanceof
PhabricatorRepository
)
{
return
true
;
}
if
(
$object
instanceof
PhabricatorProject
)
{
return
true
;
}
return
false
;
}
public
function
explainValidTriggerObjects
()
{
return
pht
(
'This rule can trigger for **repositories** or **projects**.'
);
}
public
function
getTriggerObjectPHIDs
()
{
return
array_merge
(
array
(
$this
->
hookEngine
->
getRepository
()->
getPHID
(),
$this
->
getPHID
(),
),
$this
->
hookEngine
->
getRepository
()->
getProjectPHIDs
());
}
public
function
getActions
(
$rule_type
)
{
switch
(
$rule_type
)
{
case
HeraldRuleTypeConfig
::
RULE_TYPE_GLOBAL
:
case
HeraldRuleTypeConfig
::
RULE_TYPE_OBJECT
:
return
array
(
self
::
ACTION_BLOCK
,
self
::
ACTION_EMAIL
,
self
::
ACTION_NOTHING
);
case
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
:
return
array
(
self
::
ACTION_EMAIL
,
self
::
ACTION_NOTHING
,
);
}
}
public
function
getPHID
()
{
return
$this
->
getObject
()->
getPHID
();
}
public
function
applyHeraldEffects
(
array
$effects
)
{
assert_instances_of
(
$effects
,
'HeraldEffect'
);
$result
=
array
();
foreach
(
$effects
as
$effect
)
{
$action
=
$effect
->
getAction
();
switch
(
$action
)
{
case
self
::
ACTION_NOTHING
:
$result
[]
=
new
HeraldApplyTranscript
(
$effect
,
true
,
pht
(
'Did nothing.'
));
break
;
case
self
::
ACTION_EMAIL
:
foreach
(
$effect
->
getTarget
()
as
$phid
)
{
$this
->
emailPHIDs
[
$phid
]
=
$phid
;
}
$result
[]
=
new
HeraldApplyTranscript
(
$effect
,
true
,
pht
(
'Added mailable to mail targets.'
));
break
;
case
self
::
ACTION_BLOCK
:
$result
[]
=
new
HeraldApplyTranscript
(
$effect
,
true
,
pht
(
'Blocked push.'
));
break
;
default
:
throw
new
Exception
(
pht
(
'No rules to handle action "%s"!'
,
$action
));
}
}
return
$result
;
}
}
Event Timeline
Log In to Comment