Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92651579
PhabricatorFactHomeController.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
Fri, Nov 22, 09:54
Size
3 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 09:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22477405
Attached To
rPH Phabricator
PhabricatorFactHomeController.php
View Options
<?php
final
class
PhabricatorFactHomeController
extends
PhabricatorFactController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(
$request
->
isFormPost
())
{
$uri
=
new
PhutilURI
(
'/fact/chart/'
);
$uri
->
setQueryParam
(
'y1'
,
$request
->
getStr
(
'y1'
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$uri
);
}
$types
=
array
(
'+N:*'
,
'+N:DREV'
,
'updated'
,
);
$engines
=
PhabricatorFactEngine
::
loadAllEngines
();
$specs
=
PhabricatorFactSpec
::
newSpecsForFactTypes
(
$engines
,
$types
);
$facts
=
id
(
new
PhabricatorFactAggregate
())->
loadAllWhere
(
'factType IN (%Ls)'
,
$types
);
$rows
=
array
();
foreach
(
$facts
as
$fact
)
{
$spec
=
$specs
[
$fact
->
getFactType
()];
$name
=
$spec
->
getName
();
$value
=
$spec
->
formatValueForDisplay
(
$user
,
$fact
->
getValueX
());
$rows
[]
=
array
(
$name
,
$value
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setHeaders
(
array
(
'Fact'
,
'Value'
,
));
$table
->
setColumnClasses
(
array
(
'wide'
,
'n'
,
));
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Facts!'
);
$panel
->
appendChild
(
$table
);
$chart_form
=
$this
->
buildChartForm
();
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Home'
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$chart_form
,
$panel
,
),
array
(
'title'
=>
'Facts'
,
'device'
=>
false
,
));
}
private
function
buildChartForm
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$table
=
new
PhabricatorFactRaw
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$table_name
=
$table
->
getTableName
();
$facts
=
queryfx_all
(
$conn_r
,
'SELECT DISTINCT factType from %T'
,
$table_name
);
$specs
=
PhabricatorFactSpec
::
newSpecsForFactTypes
(
PhabricatorFactEngine
::
loadAllEngines
(),
ipull
(
$facts
,
'factType'
));
$options
=
array
();
foreach
(
$specs
as
$spec
)
{
if
(
$spec
->
getUnit
()
==
PhabricatorFactSpec
::
UNIT_COUNT
)
{
$options
[
$spec
->
getType
()]
=
$spec
->
getName
();
}
}
if
(!
$options
)
{
return
id
(
new
PHUIInfoView
())
->
setSeverity
(
PHUIInfoView
::
SEVERITY_NOTICE
)
->
setTitle
(
pht
(
'No Chartable Facts'
))
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'There are no facts that can be plotted yet.'
)));
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
)
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
'Y-Axis'
)
->
setName
(
'y1'
)
->
setOptions
(
$options
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
'Plot Chart'
));
$panel
=
new
AphrontPanelView
();
$panel
->
appendChild
(
$form
);
$panel
->
setWidth
(
AphrontPanelView
::
WIDTH_FORM
);
$panel
->
setHeader
(
'Plot Chart'
);
return
$panel
;
}
}
Event Timeline
Log In to Comment