Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F466208
HarbormasterBuildLogView.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
HarbormasterBuildLogView.php
View Options
<?php
final
class
HarbormasterBuildLogView
extends
AphrontView
{
private
$log
;
private
$highlightedLineRange
;
public
function
setBuildLog
(
HarbormasterBuildLog
$log
)
{
$this
->
log
=
$log
;
return
$this
;
}
public
function
getBuildLog
()
{
return
$this
->
log
;
}
public
function
setHighlightedLineRange
(
$range
)
{
$this
->
highlightedLineRange
=
$range
;
return
$this
;
}
public
function
getHighlightedLineRange
()
{
return
$this
->
highlightedLineRange
;
}
public
function
render
()
{
$viewer
=
$this
->
getViewer
();
$log
=
$this
->
getBuildLog
();
$id
=
$log
->
getID
();
$header
=
id
(
new
PHUIHeaderView
())
->
setViewer
(
$viewer
)
->
setHeader
(
pht
(
'Build Log %d'
,
$id
));
$download_uri
=
"/harbormaster/log/download/{$id}/"
;
$download_button
=
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setHref
(
$download_uri
)
->
setIcon
(
'fa-download'
)
->
setDisabled
(!
$log
->
getFilePHID
())
->
setWorkflow
(
true
)
->
setText
(
pht
(
'Download Log'
));
$header
->
addActionLink
(
$download_button
);
$box_view
=
id
(
new
PHUIObjectBoxView
())
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setHeader
(
$header
);
$has_linemap
=
$log
->
getLineMap
();
if
(
$has_linemap
)
{
$content_id
=
celerity_generate_unique_node_id
();
$content_div
=
javelin_tag
(
'div'
,
array
(
'id'
=>
$content_id
,
'class'
=>
'harbormaster-log-view-loading'
,
),
pht
(
'Loading...'
));
require_celerity_resource
(
'harbormaster-css'
);
Javelin
::
initBehavior
(
'harbormaster-log'
,
array
(
'contentNodeID'
=>
$content_id
,
'renderURI'
=>
$log
->
getRenderURI
(
$this
->
getHighlightedLineRange
()),
));
$box_view
->
appendChild
(
$content_div
);
}
else
{
$box_view
->
setFormErrors
(
array
(
pht
(
'This older log is missing required rendering data. To rebuild '
.
'rendering data, run: %s'
,
phutil_tag
(
'tt'
,
array
(),
'$ bin/harbormaster rebuild-log --force --id '
.
$log
->
getID
())),
));
}
return
$box_view
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 12:17 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
78756
Default Alt Text
HarbormasterBuildLogView.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment