Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117056023
20141113.auditdupes.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, Jun 11, 04:03
Size
598 B
Mime Type
text/x-php
Expires
Fri, Jun 13, 04:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26710337
Attached To
rPH Phabricator
20141113.auditdupes.php
View Options
<?php
$table
=
new
PhabricatorRepositoryAuditRequest
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
echo
pht
(
'Removing duplicate Audit requests...'
).
"
\n
"
;
$seen_audit_map
=
array
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$request
)
{
$commit_phid
=
$request
->
getCommitPHID
();
$auditor_phid
=
$request
->
getAuditorPHID
();
if
(
isset
(
$seen_audit_map
[
$commit_phid
][
$auditor_phid
]))
{
$request
->
delete
();
}
if
(!
isset
(
$seen_audit_map
[
$commit_phid
]))
{
$seen_audit_map
[
$commit_phid
]
=
array
();
}
$seen_audit_map
[
$commit_phid
][
$auditor_phid
]
=
1
;
}
echo
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment