Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112655037
ReleephWorkGetCommitMessageConduitAPIMethod.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, May 12, 00:50
Size
2 KB
Mime Type
text/x-php
Expires
Wed, May 14, 00:50 (2 d)
Engine
blob
Format
Raw Data
Handle
26094938
Attached To
rPH Phabricator
ReleephWorkGetCommitMessageConduitAPIMethod.php
View Options
<?php
final
class
ReleephWorkGetCommitMessageConduitAPIMethod
extends
ReleephConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'releephwork.getcommitmessage'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_UNSTABLE
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Get commit message components for building a %s commit message.'
,
'ReleephRequest'
);
}
protected
function
defineParamTypes
()
{
$action_const
=
$this
->
formatStringConstants
(
array
(
'pick'
,
'revert'
));
return
array
(
'requestPHID'
=>
'required string'
,
'action'
=>
'required '
.
$action_const
,
);
}
protected
function
defineReturnType
()
{
return
'dict<string, string>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$releeph_request
=
id
(
new
ReleephRequestQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$request
->
getValue
(
'requestPHID'
)))
->
executeOne
();
$action
=
$request
->
getValue
(
'action'
);
$title
=
$releeph_request
->
getSummaryForDisplay
();
$commit_message
=
array
();
$branch
=
$releeph_request
->
getBranch
();
$project
=
$branch
->
getProduct
();
$selector
=
$project
->
getReleephFieldSelector
();
$fields
=
$selector
->
getFieldSpecifications
();
$fields
=
$selector
->
sortFieldsForCommitMessage
(
$fields
);
foreach
(
$fields
as
$field
)
{
$field
->
setUser
(
$request
->
getUser
())
->
setReleephProject
(
$project
)
->
setReleephBranch
(
$branch
)
->
setReleephRequest
(
$releeph_request
);
$label
=
null
;
$value
=
null
;
switch
(
$action
)
{
case
'pick'
:
if
(
$field
->
shouldAppearOnCommitMessage
())
{
$label
=
$field
->
renderLabelForCommitMessage
();
$value
=
$field
->
renderValueForCommitMessage
();
}
break
;
case
'revert'
:
if
(
$field
->
shouldAppearOnRevertMessage
())
{
$label
=
$field
->
renderLabelForRevertMessage
();
$value
=
$field
->
renderValueForRevertMessage
();
}
break
;
}
if
(
$label
&&
$value
)
{
if
(
strpos
(
$value
,
"
\n
"
)
!==
false
||
substr
(
$value
,
0
,
2
)
===
' '
)
{
$commit_message
[]
=
"{$label}:
\n
{$value}"
;
}
else
{
$commit_message
[]
=
"{$label}: {$value}"
;
}
}
}
return
array
(
'title'
=>
$title
,
'body'
=>
implode
(
"
\n\n
"
,
$commit_message
),
);
}
}
Event Timeline
Log In to Comment