Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568012
DifferentialParseCommitMessageConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DifferentialParseCommitMessageConduitAPIMethod.php
View Options
<?php
final
class
DifferentialParseCommitMessageConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.parsecommitmessage'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Parse commit messages for Differential fields.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'corpus'
=>
'required string'
,
'partial'
=>
'optional bool'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$parser
=
DifferentialCommitMessageParser
::
newStandardParser
(
$viewer
);
$is_partial
=
$request
->
getValue
(
'partial'
);
if
(
$is_partial
)
{
$parser
->
setRaiseMissingFieldErrors
(
false
);
}
$corpus
=
$request
->
getValue
(
'corpus'
);
$field_map
=
$parser
->
parseFields
(
$corpus
);
$errors
=
$parser
->
getErrors
();
$xactions
=
$parser
->
getTransactions
();
$revision_id_value
=
idx
(
$field_map
,
DifferentialRevisionIDCommitMessageField
::
FIELDKEY
);
$revision_id_valid_domain
=
PhabricatorEnv
::
getProductionURI
(
''
);
return
array
(
'errors'
=>
$errors
,
'fields'
=>
$field_map
,
'revisionIDFieldInfo'
=>
array
(
'value'
=>
$revision_id_value
,
'validDomain'
=>
$revision_id_valid_domain
,
),
'transactions'
=>
$xactions
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:11 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
107693
Default Alt Text
DifferentialParseCommitMessageConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment