Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106942327
20180914.audit.01.mailkey.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, Apr 2, 20:02
Size
899 B
Mime Type
text/x-php
Expires
Fri, Apr 4, 20:02 (2 d)
Engine
blob
Format
Raw Data
Handle
25257379
Attached To
rPH Phabricator
20180914.audit.01.mailkey.php
View Options
<?php
$commit_table
=
new
PhabricatorRepositoryCommit
();
$commit_conn
=
$commit_table
->
establishConnection
(
'w'
);
$commit_name
=
$commit_table
->
getTableName
();
$properties_table
=
new
PhabricatorMetaMTAMailProperties
();
$conn
=
$properties_table
->
establishConnection
(
'w'
);
$iterator
=
new
LiskRawMigrationIterator
(
$commit_conn
,
$commit_name
);
$chunks
=
new
PhutilChunkedIterator
(
$iterator
,
100
);
foreach
(
$chunks
as
$chunk
)
{
$sql
=
array
();
foreach
(
$chunk
as
$commit
)
{
$sql
[]
=
qsprintf
(
$conn
,
'(%s, %s, %d, %d)'
,
$commit
[
'phid'
],
phutil_json_encode
(
array
(
'mailKey'
=>
$commit
[
'mailKey'
],
)),
PhabricatorTime
::
getNow
(),
PhabricatorTime
::
getNow
());
}
queryfx
(
$conn
,
'INSERT IGNORE INTO %R
(objectPHID, mailProperties, dateCreated, dateModified)
VALUES %LQ'
,
$properties_table
,
$sql
);
}
Event Timeline
Log In to Comment