Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98318188
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
Sun, Jan 12, 00:52
Size
582 B
Mime Type
text/x-php
Expires
Tue, Jan 14, 00:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23548918
Attached To
rPH Phabricator
20141113.auditdupes.php
View Options
<?php
$table
=
new
PhabricatorRepositoryAuditRequest
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
echo
"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
"Done.
\n
"
;
Event Timeline
Log In to Comment