Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93022293
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
Mon, Nov 25, 15:24
Size
598 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 15:24 (2 d)
Engine
blob
Format
Raw Data
Handle
22560013
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