Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109639455
DiffusionDocumentRenderingEngine.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, Apr 22, 19:56
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Apr 24, 19:56 (2 d)
Engine
blob
Format
Raw Data
Handle
25743250
Attached To
rPH Phabricator
DiffusionDocumentRenderingEngine.php
View Options
<?php
final
class
DiffusionDocumentRenderingEngine
extends
PhabricatorDocumentRenderingEngine
{
private
$diffusionRequest
;
public
function
setDiffusionRequest
(
DiffusionRequest
$drequest
)
{
$this
->
diffusionRequest
=
$drequest
;
return
$this
;
}
public
function
getDiffusionRequest
()
{
return
$this
->
diffusionRequest
;
}
protected
function
newRefViewURI
(
PhabricatorDocumentRef
$ref
,
PhabricatorDocumentEngine
$engine
)
{
$file
=
$ref
->
getFile
();
$engine_key
=
$engine
->
getDocumentEngineKey
();
$drequest
=
$this
->
getDiffusionRequest
();
return
(
string
)
$drequest
->
generateURI
(
array
(
'action'
=>
'browse'
,
'stable'
=>
true
,
'params'
=>
array
(
'as'
=>
$engine_key
,
),
));
}
protected
function
newRefRenderURI
(
PhabricatorDocumentRef
$ref
,
PhabricatorDocumentEngine
$engine
)
{
$engine_key
=
$engine
->
getDocumentEngineKey
();
$file
=
$ref
->
getFile
();
$file_phid
=
$file
->
getPHID
();
$drequest
=
$this
->
getDiffusionRequest
();
return
(
string
)
$drequest
->
generateURI
(
array
(
'action'
=>
'document'
,
'stable'
=>
true
,
'params'
=>
array
(
'as'
=>
$engine_key
,
'filePHID'
=>
$file_phid
,
),
));
}
protected
function
getSelectedDocumentEngineKey
()
{
return
$this
->
getRequest
()->
getStr
(
'as'
);
}
protected
function
getSelectedLineRange
()
{
$range
=
$this
->
getDiffusionRequest
()->
getLine
();
return
AphrontRequest
::
parseURILineRange
(
$range
,
1000
);
}
protected
function
addApplicationCrumbs
(
PHUICrumbsView
$crumbs
,
PhabricatorDocumentRef
$ref
=
null
)
{
return
;
}
protected
function
willStageRef
(
PhabricatorDocumentRef
$ref
)
{
$drequest
=
$this
->
getDiffusionRequest
();
$blame_uri
=
(
string
)
$drequest
->
generateURI
(
array
(
'action'
=>
'blame'
,
'stable'
=>
true
,
));
$ref
->
setBlameURI
(
$blame_uri
);
}
protected
function
willRenderRef
(
PhabricatorDocumentRef
$ref
)
{
$drequest
=
$this
->
getDiffusionRequest
();
$ref
->
setSymbolMetadata
(
$this
->
getSymbolMetadata
());
$coverage
=
$drequest
->
loadCoverage
();
if
(
strlen
(
$coverage
))
{
$ref
->
addCoverage
(
$coverage
);
}
}
private
function
getSymbolMetadata
()
{
$drequest
=
$this
->
getDiffusionRequest
();
$repo
=
$drequest
->
getRepository
();
$symbol_repos
=
nonempty
(
$repo
->
getSymbolSources
(),
array
());
$symbol_repos
[]
=
$repo
->
getPHID
();
$lang
=
last
(
explode
(
'.'
,
$drequest
->
getPath
()));
return
array
(
'repositories'
=>
$symbol_repos
,
'lang'
=>
$lang
,
'path'
=>
$drequest
->
getPath
(),
);
}
}
Event Timeline
Log In to Comment