Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91590977
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, Nov 12, 12:47
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 14, 12:47 (2 d)
Engine
blob
Format
Raw Data
Handle
22289422
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
willRenderRef
(
PhabricatorDocumentRef
$ref
)
{
$drequest
=
$this
->
getDiffusionRequest
();
$blame_uri
=
(
string
)
$drequest
->
generateURI
(
array
(
'action'
=>
'blame'
,
'stable'
=>
true
,
));
$ref
->
setSymbolMetadata
(
$this
->
getSymbolMetadata
())
->
setBlameURI
(
$blame_uri
);
}
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