Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91571106
HeraldDifferentialAdapter.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
Tue, Nov 12, 07:42
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 14, 07:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22284376
Attached To
rPH Phabricator
HeraldDifferentialAdapter.php
View Options
<?php
abstract
class
HeraldDifferentialAdapter
extends
HeraldAdapter
{
private
$repository
=
false
;
private
$diff
;
abstract
protected
function
loadChangesets
();
abstract
protected
function
loadChangesetsWithHunks
();
public
function
getDiff
()
{
return
$this
->
diff
;
}
public
function
setDiff
(
DifferentialDiff
$diff
)
{
$this
->
diff
=
$diff
;
return
$this
;
}
public
function
loadRepository
()
{
if
(
$this
->
repository
===
false
)
{
$repository_phid
=
$this
->
getObject
()->
getRepositoryPHID
();
if
(
$repository_phid
)
{
$repository
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withPHIDs
(
array
(
$repository_phid
))
->
needProjectPHIDs
(
true
)
->
executeOne
();
}
else
{
$repository
=
null
;
}
$this
->
repository
=
$repository
;
}
return
$this
->
repository
;
}
protected
function
loadAffectedPaths
()
{
$changesets
=
$this
->
loadChangesets
();
$paths
=
array
();
foreach
(
$changesets
as
$changeset
)
{
$paths
[]
=
$this
->
getAbsoluteRepositoryPathForChangeset
(
$changeset
);
}
return
$paths
;
}
protected
function
getAbsoluteRepositoryPathForChangeset
(
DifferentialChangeset
$changeset
)
{
$repository
=
$this
->
loadRepository
();
if
(!
$repository
)
{
return
'/'
.
ltrim
(
$changeset
->
getFilename
(),
'/'
);
}
$diff
=
$this
->
getDiff
();
return
$changeset
->
getAbsoluteRepositoryPath
(
$repository
,
$diff
);
}
protected
function
loadContentDictionary
()
{
$add_lines
=
DifferentialHunk
::
FLAG_LINES_ADDED
;
$rem_lines
=
DifferentialHunk
::
FLAG_LINES_REMOVED
;
$mask
=
(
$add_lines
|
$rem_lines
);
return
$this
->
loadContentWithMask
(
$mask
);
}
protected
function
loadAddedContentDictionary
()
{
return
$this
->
loadContentWithMask
(
DifferentialHunk
::
FLAG_LINES_ADDED
);
}
protected
function
loadRemovedContentDictionary
()
{
return
$this
->
loadContentWithMask
(
DifferentialHunk
::
FLAG_LINES_REMOVED
);
}
protected
function
loadContentWithMask
(
$mask
)
{
$changesets
=
$this
->
loadChangesetsWithHunks
();
$dict
=
array
();
foreach
(
$changesets
as
$changeset
)
{
$content
=
array
();
foreach
(
$changeset
->
getHunks
()
as
$hunk
)
{
$content
[]
=
$hunk
->
getContentWithMask
(
$mask
);
}
$path
=
$this
->
getAbsoluteRepositoryPathForChangeset
(
$changeset
);
$dict
[
$path
]
=
implode
(
"
\n
"
,
$content
);
}
return
$dict
;
}
}
Event Timeline
Log In to Comment