Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114853488
PhabricatorAuditApplication.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
Wed, May 28, 04:15
Size
2 KB
Mime Type
text/x-php
Expires
Fri, May 30, 04:15 (2 d)
Engine
blob
Format
Raw Data
Handle
26388651
Attached To
rPH Phabricator
PhabricatorAuditApplication.php
View Options
<?php
final
class
PhabricatorAuditApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/audit/'
;
}
public
function
getFontIcon
()
{
return
'fa-check-circle-o'
;
}
public
function
getName
()
{
return
pht
(
'Audit'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Browse and Audit Commits'
);
}
public
function
isPinnedByDefault
(
PhabricatorUser
$viewer
)
{
return
true
;
}
public
function
getHelpDocumentationArticles
(
PhabricatorUser
$viewer
)
{
return
array
(
array
(
'name'
=>
pht
(
'Audit User Guide'
),
'href'
=>
PhabricatorEnv
::
getDoclink
(
'Audit User Guide'
),
),
);
}
public
function
getRoutes
()
{
return
array
(
'/audit/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorAuditListController'
,
'addcomment/'
=>
'PhabricatorAuditAddCommentController'
,
'preview/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorAuditPreviewController'
,
),
);
}
public
function
getApplicationOrder
()
{
return
0.130
;
}
public
function
loadStatus
(
PhabricatorUser
$user
)
{
$status
=
array
();
$limit
=
self
::
MAX_STATUS_ITEMS
;
$phids
=
PhabricatorAuditCommentEditor
::
loadAuditPHIDsForUser
(
$user
);
$query
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$user
)
->
withAuthorPHIDs
(
array
(
$user
->
getPHID
()))
->
withAuditStatus
(
DiffusionCommitQuery
::
AUDIT_STATUS_CONCERN
)
->
setLimit
(
$limit
);
$commits
=
$query
->
execute
();
$count
=
count
(
$commits
);
if
(
$count
>=
$limit
)
{
$count_str
=
pht
(
'%s+ Problem Commit(s)'
,
new
PhutilNumber
(
$limit
-
1
));
}
else
{
$count_str
=
pht
(
'%s Problem Commit(s)'
,
new
PhutilNumber
(
$count
));
}
$type
=
PhabricatorApplicationStatusView
::
TYPE_NEEDS_ATTENTION
;
$status
[]
=
id
(
new
PhabricatorApplicationStatusView
())
->
setType
(
$type
)
->
setText
(
$count_str
)
->
setCount
(
$count
);
$query
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$user
)
->
withNeedsAuditByPHIDs
(
$phids
)
->
withAuditStatus
(
DiffusionCommitQuery
::
AUDIT_STATUS_OPEN
)
->
setLimit
(
$limit
);
$commits
=
$query
->
execute
();
$count
=
count
(
$commits
);
if
(
$count
>=
$limit
)
{
$count_str
=
pht
(
'%s+ Problem Commit(s)'
,
new
PhutilNumber
(
$limit
-
1
));
}
else
{
$count_str
=
pht
(
'%s Problem Commit(s)'
,
new
PhutilNumber
(
$count
));
}
$type
=
PhabricatorApplicationStatusView
::
TYPE_WARNING
;
$status
[]
=
id
(
new
PhabricatorApplicationStatusView
())
->
setType
(
$type
)
->
setText
(
$count_str
)
->
setCount
(
$count
);
return
$status
;
}
}
Event Timeline
Log In to Comment