Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100015449
PhabricatorApplicationAudit.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, Jan 27, 17:49
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Jan 29, 17:49 (2 d)
Engine
blob
Format
Raw Data
Handle
23870140
Attached To
rPH Phabricator
PhabricatorApplicationAudit.php
View Options
<?php
final
class
PhabricatorApplicationAudit
extends
PhabricatorApplication
{
public
function
getShortDescription
()
{
return
pht
(
'Audit Code'
);
}
public
function
getBaseURI
()
{
return
'/audit/'
;
}
public
function
getIconName
()
{
return
'audit'
;
}
public
function
getHelpURI
()
{
return
PhabricatorEnv
::
getDoclink
(
'article/Audit_User_Guide.html'
);
}
public
function
getEventListeners
()
{
return
array
(
new
AuditActionMenuEventListener
()
);
}
public
function
getRoutes
()
{
return
array
(
'/audit/'
=>
array
(
''
=>
'PhabricatorAuditListController'
,
'view/(?P<filter>[^/]+)/(?:(?P<name>[^/]+)/)?'
=>
'PhabricatorAuditListController'
,
'addcomment/'
=>
'PhabricatorAuditAddCommentController'
,
'preview/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorAuditPreviewController'
,
),
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_CORE
;
}
public
function
getApplicationOrder
()
{
return
0.130
;
}
public
function
loadStatus
(
PhabricatorUser
$user
)
{
$status
=
array
();
$phids
=
PhabricatorAuditCommentEditor
::
loadAuditPHIDsForUser
(
$user
);
$commits
=
id
(
new
PhabricatorAuditCommitQuery
())
->
withAuthorPHIDs
(
$phids
)
->
withStatus
(
PhabricatorAuditCommitQuery
::
STATUS_CONCERN
)
->
execute
();
$count
=
count
(
$commits
);
$type
=
PhabricatorApplicationStatusView
::
TYPE_NEEDS_ATTENTION
;
$status
[]
=
id
(
new
PhabricatorApplicationStatusView
())
->
setType
(
$type
)
->
setText
(
pht
(
'%d Problem Commit(s)'
,
$count
))
->
setCount
(
$count
);
$audits
=
id
(
new
PhabricatorAuditQuery
())
->
withAuditorPHIDs
(
$phids
)
->
withStatus
(
PhabricatorAuditQuery
::
STATUS_OPEN
)
->
withAwaitingUser
(
$user
)
->
execute
();
$count
=
count
(
$audits
);
$type
=
PhabricatorApplicationStatusView
::
TYPE_WARNING
;
$status
[]
=
id
(
new
PhabricatorApplicationStatusView
())
->
setType
(
$type
)
->
setText
(
pht
(
'%d Commit(s) Awaiting Audit'
,
$count
))
->
setCount
(
$count
);
return
$status
;
}
}
Event Timeline
Log In to Comment