Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F124183409
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
Thu, Jul 31, 20:07
Size
598 B
Mime Type
text/x-php
Expires
Sat, Aug 2, 20:07 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27813335
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