Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119623681
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
Sat, Jun 28, 02:45
Size
899 B
Mime Type
text/x-php
Expires
Mon, Jun 30, 02:45 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27047591
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