Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568135
HarbormasterUnitMessageViewController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
HarbormasterUnitMessageViewController.php
View Options
<?php
final
class
HarbormasterUnitMessageViewController
extends
HarbormasterController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$message_id
=
$request
->
getURIData
(
'id'
);
$message
=
id
(
new
HarbormasterBuildUnitMessageQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$message_id
))
->
executeOne
();
if
(!
$message
)
{
return
new
Aphront404Response
();
}
$build_target
=
id
(
new
HarbormasterBuildTargetQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$message
->
getBuildTargetPHID
()))
->
executeOne
();
if
(!
$build_target
)
{
return
new
Aphront404Response
();
}
$build
=
$build_target
->
getBuild
();
$buildable
=
$build
->
getBuildable
();
$buildable_id
=
$buildable
->
getID
();
$id
=
$message
->
getID
();
$display_name
=
$message
->
getUnitMessageDisplayName
();
$status
=
$message
->
getResult
();
$status_icon
=
HarbormasterUnitStatus
::
getUnitStatusIcon
(
$status
);
$status_color
=
HarbormasterUnitStatus
::
getUnitStatusColor
(
$status
);
$status_label
=
HarbormasterUnitStatus
::
getUnitStatusLabel
(
$status
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$display_name
)
->
setStatus
(
$status_icon
,
$status_color
,
$status_label
);
$properties
=
$this
->
buildPropertyListView
(
$message
);
$curtain
=
$this
->
buildCurtainView
(
$message
,
$build
);
$unit
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'TEST RESULT'
))
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
addPropertyList
(
$properties
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$this
->
addBuildableCrumb
(
$crumbs
,
$buildable
);
$crumbs
->
addTextCrumb
(
pht
(
'Unit Tests'
),
"/harbormaster/unit/{$buildable_id}/"
);
$crumbs
->
addTextCrumb
(
pht
(
'Unit %d'
,
$id
));
$crumbs
->
setBorder
(
true
);
$title
=
array
(
$display_name
,
$buildable
->
getMonogram
(),
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setCurtain
(
$curtain
)
->
setMainColumn
(
array
(
$unit
,
));
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
private
function
buildPropertyListView
(
HarbormasterBuildUnitMessage
$message
)
{
$viewer
=
$this
->
getViewer
();
$view
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
);
$view
->
addProperty
(
pht
(
'Run At'
),
phabricator_datetime
(
$message
->
getDateCreated
(),
$viewer
));
$details
=
$message
->
newUnitMessageDetailsView
(
$viewer
);
$view
->
addSectionHeader
(
pht
(
'Details'
),
PHUIPropertyListView
::
ICON_TESTPLAN
);
$view
->
addTextContent
(
$details
);
return
$view
;
}
private
function
buildCurtainView
(
HarbormasterBuildUnitMessage
$message
,
HarbormasterBuild
$build
)
{
$viewer
=
$this
->
getViewer
();
$curtain
=
$this
->
newCurtainView
(
$build
);
$curtain
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'View Build'
))
->
setHref
(
$build
->
getURI
())
->
setIcon
(
'fa-wrench'
));
return
$curtain
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:15 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
124328
Default Alt Text
HarbormasterUnitMessageViewController.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment