Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90965422
20140722.audit.3.miginlines.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, Nov 6, 11:31
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 11:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22168792
Attached To
rPH Phabricator
20140722.audit.3.miginlines.php
View Options
<?php
$audit_table
=
new
PhabricatorAuditTransaction
();
$conn_w
=
$audit_table
->
establishConnection
(
'w'
);
$conn_w
->
openTransaction
();
$src_table
=
'audit_inlinecomment'
;
$dst_table
=
'audit_transaction_comment'
;
echo
"Migrating Audit inline comments to new format...
\n
"
;
$content_source
=
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_LEGACY
,
array
())->
serialize
();
$rows
=
new
LiskRawMigrationIterator
(
$conn_w
,
$src_table
);
foreach
(
$rows
as
$row
)
{
$id
=
$row
[
'id'
];
echo
"Migrating inline #{$id}...
\n
"
;
if
(
$row
[
'auditCommentID'
])
{
$xaction_phid
=
PhabricatorPHID
::
generateNewPHID
(
PhabricatorApplicationTransactionTransactionPHIDType
::
TYPECONST
,
PhabricatorRepositoryCommitPHIDType
::
TYPECONST
);
}
else
{
$xaction_phid
=
null
;
}
$comment_phid
=
PhabricatorPHID
::
generateNewPHID
(
PhabricatorPHIDConstants
::
PHID_TYPE_XCMT
,
PhabricatorRepositoryCommitPHIDType
::
TYPECONST
);
queryfx
(
$conn_w
,
'INSERT IGNORE INTO %T
(id, phid, transactionPHID, authorPHID, viewPolicy, editPolicy,
commentVersion, content, contentSource, isDeleted,
dateCreated, dateModified, commitPHID, pathID,
isNewFile, lineNumber, lineLength, hasReplies, legacyCommentID)
VALUES (%d, %s, %ns, %s, %s, %s,
%d, %s, %s, %d,
%d, %d, %s, %nd,
%d, %d, %d, %d, %nd)'
,
$dst_table
,
// id, phid, transactionPHID, authorPHID, viewPolicy, editPolicy
$row
[
'id'
],
$comment_phid
,
$xaction_phid
,
$row
[
'authorPHID'
],
'public'
,
$row
[
'authorPHID'
],
// commentVersion, content, contentSource, isDeleted
1
,
$row
[
'content'
],
$content_source
,
0
,
// dateCreated, dateModified, commitPHID, pathID
$row
[
'dateCreated'
],
$row
[
'dateModified'
],
$row
[
'commitPHID'
],
$row
[
'pathID'
],
// isNewFile, lineNumber, lineLength, hasReplies, legacyCommentID
$row
[
'isNewFile'
],
$row
[
'lineNumber'
],
$row
[
'lineLength'
],
0
,
$row
[
'auditCommentID'
]);
}
$conn_w
->
saveTransaction
();
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment