Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F971027
DiffusionDocumentRenderingEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
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
(),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 5:35 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
232322
Default Alt Text
DiffusionDocumentRenderingEngine.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment