Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92172882
ReleephDefaultFieldSelector.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, Nov 18, 00:20
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Nov 20, 00:20 (2 d)
Engine
blob
Format
Raw Data
Handle
22385798
Attached To
rPH Phabricator
ReleephDefaultFieldSelector.php
View Options
<?php
final
class
ReleephDefaultFieldSelector
extends
ReleephFieldSelector
{
/**
* Determine if this install is Facebook.
*
* TODO: This is a giant hacky mess because I am dumb and moved forward on
* Releeph changes with partial information. Recover from this as gracefully
* as possible. This obivously is an abomination. -epriestley
*/
public
static
function
isFacebook
()
{
try
{
class_exists
(
'ReleephFacebookKarmaFieldSpecification'
);
return
true
;
}
catch
(
Exception
$ex
)
{
return
false
;
}
}
/**
* @phutil-external-symbol class ReleephFacebookKarmaFieldSpecification
* @phutil-external-symbol class ReleephFacebookSeverityFieldSpecification
* @phutil-external-symbol class ReleephFacebookTagFieldSpecification
* @phutil-external-symbol class ReleephFacebookTasksFieldSpecification
*/
public
function
getFieldSpecifications
()
{
if
(
self
::
isFacebook
())
{
return
array
(
new
ReleephCommitMessageFieldSpecification
(),
new
ReleephSummaryFieldSpecification
(),
new
ReleephReasonFieldSpecification
(),
new
ReleephAuthorFieldSpecification
(),
new
ReleephRevisionFieldSpecification
(),
new
ReleephRequestorFieldSpecification
(),
new
ReleephFacebookKarmaFieldSpecification
(),
new
ReleephFacebookSeverityFieldSpecification
(),
new
ReleephOriginalCommitFieldSpecification
(),
new
ReleephDiffMessageFieldSpecification
(),
new
ReleephIntentFieldSpecification
(),
new
ReleephBranchCommitFieldSpecification
(),
new
ReleephDiffSizeFieldSpecification
(),
new
ReleephDiffChurnFieldSpecification
(),
new
ReleephDependsOnFieldSpecification
(),
new
ReleephFacebookTagFieldSpecification
(),
new
ReleephFacebookTasksFieldSpecification
(),
);
}
else
{
return
array
(
new
ReleephCommitMessageFieldSpecification
(),
new
ReleephSummaryFieldSpecification
(),
new
ReleephReasonFieldSpecification
(),
new
ReleephAuthorFieldSpecification
(),
new
ReleephRevisionFieldSpecification
(),
new
ReleephRequestorFieldSpecification
(),
new
ReleephSeverityFieldSpecification
(),
new
ReleephOriginalCommitFieldSpecification
(),
new
ReleephDiffMessageFieldSpecification
(),
new
ReleephIntentFieldSpecification
(),
new
ReleephBranchCommitFieldSpecification
(),
new
ReleephDiffSizeFieldSpecification
(),
new
ReleephDiffChurnFieldSpecification
(),
);
}
}
public
function
sortFieldsForCommitMessage
(
array
$fields
)
{
return
self
::
selectFields
(
$fields
,
array
(
'ReleephCommitMessageFieldSpecification'
,
'ReleephRequestorFieldSpecification'
,
'ReleephIntentFieldSpecification'
,
'ReleephReasonFieldSpecification'
,
));
}
}
Event Timeline
Log In to Comment