Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F952070
PhabricatorAuditApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorAuditApplication.php
View Options
<?php
final
class
PhabricatorAuditApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/audit/'
;
}
public
function
getIconName
()
{
return
'audit'
;
}
public
function
getName
()
{
return
pht
(
'Audit'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Browse and Audit Commits'
);
}
public
function
isPinnedByDefault
(
PhabricatorUser
$viewer
)
{
return
true
;
}
public
function
getHelpURI
()
{
return
PhabricatorEnv
::
getDoclink
(
'Audit User Guide'
);
}
public
function
getEventListeners
()
{
return
array
(
new
AuditActionMenuEventListener
(),
);
}
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
();
$phids
=
PhabricatorAuditCommentEditor
::
loadAuditPHIDsForUser
(
$user
);
$query
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$user
)
->
withAuthorPHIDs
(
array
(
$user
->
getPHID
()))
->
withAuditStatus
(
DiffusionCommitQuery
::
AUDIT_STATUS_CONCERN
)
->
setLimit
(
self
::
MAX_STATUS_ITEMS
);
$commits
=
$query
->
execute
();
$count
=
count
(
$commits
);
$count_str
=
self
::
formatStatusCount
(
$count
,
'%s Problem Commits'
,
'%d Problem Commit(s)'
);
$type
=
PhabricatorApplicationStatusView
::
TYPE_NEEDS_ATTENTION
;
$status
[]
=
id
(
new
PhabricatorApplicationStatusView
())
->
setType
(
$type
)
->
setText
(
$count_str
)
->
setCount
(
$count
);
$query
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$user
)
->
withAuditorPHIDs
(
$phids
)
->
withAuditStatus
(
DiffusionCommitQuery
::
AUDIT_STATUS_OPEN
)
->
withAuditAwaitingUser
(
$user
)
->
setLimit
(
self
::
MAX_STATUS_ITEMS
);
$commits
=
$query
->
execute
();
$count
=
count
(
$commits
);
$count_str
=
self
::
formatStatusCount
(
$count
,
'%s Commits Awaiting Audit'
,
'%d Commit(s) Awaiting Audit'
);
$type
=
PhabricatorApplicationStatusView
::
TYPE_WARNING
;
$status
[]
=
id
(
new
PhabricatorApplicationStatusView
())
->
setType
(
$type
)
->
setText
(
$count_str
)
->
setCount
(
$count
);
return
$status
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 3:29 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
226286
Default Alt Text
PhabricatorAuditApplication.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment