Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120288610
DiffusionLintController.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
Thu, Jul 3, 07:25
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Jul 5, 07:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27167449
Attached To
rPH Phabricator
DiffusionLintController.php
View Options
<?php
// Copyright 2004-present Facebook. All Rights Reserved.
final
class
DiffusionLintController
extends
DiffusionController
{
public
function
processRequest
()
{
$drequest
=
$this
->
getDiffusionRequest
();
if
(
$this
->
getRequest
()->
getStr
(
'lint'
)
!==
null
)
{
$controller
=
new
DiffusionLintDetailsController
(
$this
->
getRequest
());
$controller
->
setDiffusionRequest
(
$drequest
);
return
$this
->
delegateToController
(
$controller
);
}
$codes
=
$this
->
loadLintCodes
();
$codes
=
array_reverse
(
isort
(
$codes
,
'n'
));
$rows
=
array
();
foreach
(
$codes
as
$code
)
{
$rows
[]
=
array
(
hsprintf
(
'<a href="%s">%s</a>'
,
$drequest
->
generateURI
(
array
(
'action'
=>
'lint'
,
'lint'
=>
$code
[
'code'
],
)),
$code
[
'n'
]),
hsprintf
(
'<a href="%s">%s</a>'
,
$drequest
->
generateURI
(
array
(
'action'
=>
'browse'
,
'lint'
=>
$code
[
'code'
],
)),
$code
[
'files'
]),
phutil_escape_html
(
ArcanistLintSeverity
::
getStringForSeverity
(
$code
[
'maxSeverity'
])),
phutil_escape_html
(
$code
[
'code'
]),
phutil_escape_html
(
$code
[
'maxName'
]),
phutil_escape_html
(
$code
[
'maxDescription'
]),
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setHeaders
(
array
(
'Problems'
,
'Files'
,
'Severity'
,
'Code'
,
'Name'
,
'Example'
,
))
->
setColumnClasses
(
array
(
'n'
,
'n'
,
''
,
'pri'
,
''
,
''
));
$content
=
array
();
$content
[]
=
$this
->
buildCrumbs
(
array
(
'branch'
=>
true
,
'path'
=>
true
,
'view'
=>
'lint'
,
));
$link
=
hsprintf
(
'<a href="%s">%s</a>'
,
$drequest
->
generateURI
(
array
(
'action'
=>
'lint'
,
'lint'
=>
''
,
)),
pht
(
'Switch to List View'
));
$content
[]
=
id
(
new
AphrontPanelView
())
->
setHeader
(
pht
(
'%d Lint Message(s)'
,
array_sum
(
ipull
(
$codes
,
'n'
))))
->
setCaption
(
$link
)
->
appendChild
(
$table
);
$nav
=
$this
->
buildSideNav
(
'lint'
,
false
);
$nav
->
appendChild
(
$content
);
return
$this
->
buildStandardPageResponse
(
$nav
,
array
(
'title'
=>
array
(
'Lint'
,
$drequest
->
getRepository
()->
getCallsign
(),
)));
}
private
function
loadLintCodes
()
{
$drequest
=
$this
->
getDiffusionRequest
();
$branch
=
$drequest
->
loadBranch
();
if
(!
$branch
)
{
return
array
();
}
$conn
=
$branch
->
establishConnection
(
'r'
);
$where
=
''
;
if
(
$drequest
->
getPath
()
!=
''
)
{
$is_dir
=
(
substr
(
$drequest
->
getPath
(),
-
1
)
==
'/'
);
$where
=
qsprintf
(
$conn
,
'AND path '
.(
$is_dir
?
'LIKE %>'
:
'= %s'
),
'/'
.
$drequest
->
getPath
());
}
return
queryfx_all
(
$conn
,
'SELECT
code,
MAX(severity) AS maxSeverity,
MAX(name) AS maxName,
MAX(description) AS maxDescription,
COUNT(DISTINCT path) AS files,
COUNT(*) AS n
FROM %T
WHERE branchID = %d
%Q
GROUP BY code'
,
PhabricatorRepository
::
TABLE_LINTMESSAGE
,
$branch
->
getID
(),
$where
);
}
}
Event Timeline
Log In to Comment