Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90836206
PhabricatorSlowvoteListController.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 5, 05:19
Size
4 KB
Mime Type
text/x-php
Expires
Thu, Nov 7, 05:19 (2 d)
Engine
blob
Format
Raw Data
Handle
22141942
Attached To
rPH Phabricator
PhabricatorSlowvoteListController.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @group slowvote
*/
final
class
PhabricatorSlowvoteListController
extends
PhabricatorSlowvoteController
{
private
$view
;
const
VIEW_ALL
=
'all'
;
const
VIEW_CREATED
=
'created'
;
const
VIEW_VOTED
=
'voted'
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
view
=
idx
(
$data
,
'view'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$views
=
array
(
self
::
VIEW_ALL
=>
'All Slowvotes'
,
self
::
VIEW_CREATED
=>
'Created'
,
self
::
VIEW_VOTED
=>
'Voted In'
,
);
$view
=
isset
(
$views
[
$this
->
view
])
?
$this
->
view
:
self
::
VIEW_ALL
;
$side_nav
=
$this
->
renderSideNav
(
$views
,
$view
);
$pager
=
new
AphrontPagerView
();
$pager
->
setOffset
(
$request
->
getInt
(
'page'
));
$pager
->
setURI
(
$request
->
getRequestURI
(),
'page'
);
$polls
=
$this
->
loadPolls
(
$pager
,
$view
);
$phids
=
mpull
(
$polls
,
'getAuthorPHID'
);
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$phids
))->
loadHandles
();
$rows
=
array
();
foreach
(
$polls
as
$poll
)
{
$rows
[]
=
array
(
'V'
.
$poll
->
getID
(),
phutil_render_tag
(
'a'
,
array
(
'href'
=>
'/V'
.
$poll
->
getID
(),
),
phutil_escape_html
(
$poll
->
getQuestion
())),
$handles
[
$poll
->
getAuthorPHID
()]->
renderLink
(),
phabricator_date
(
$poll
->
getDateCreated
(),
$user
),
phabricator_time
(
$poll
->
getDateCreated
(),
$user
),
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setColumnClasses
(
array
(
''
,
'pri wide'
,
''
,
''
,
'right'
,
));
$table
->
setHeaders
(
array
(
'ID'
,
'Poll'
,
'Author'
,
'Date'
,
'Time'
,
));
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
$this
->
getTableHeader
(
$view
));
$panel
->
setCreateButton
(
'Create Slowvote'
,
'/vote/create/'
);
$panel
->
appendChild
(
$table
);
$panel
->
appendChild
(
$pager
);
$side_nav
->
appendChild
(
$panel
);
return
$this
->
buildStandardPageResponse
(
$side_nav
,
array
(
'title'
=>
'Slowvotes'
,
));
}
private
function
loadPolls
(
AphrontPagerView
$pager
,
$view
)
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$poll
=
new
PhabricatorSlowvotePoll
();
$conn
=
$poll
->
establishConnection
(
'r'
);
$offset
=
$pager
->
getOffset
();
$limit
=
$pager
->
getPageSize
()
+
1
;
switch
(
$view
)
{
case
self
::
VIEW_ALL
:
$data
=
queryfx_all
(
$conn
,
'SELECT * FROM %T ORDER BY id DESC LIMIT %d, %d'
,
$poll
->
getTableName
(),
$offset
,
$limit
);
break
;
case
self
::
VIEW_CREATED
:
$data
=
queryfx_all
(
$conn
,
'SELECT * FROM %T WHERE authorPHID = %s ORDER BY id DESC
LIMIT %d, %d'
,
$poll
->
getTableName
(),
$user
->
getPHID
(),
$offset
,
$limit
);
break
;
case
self
::
VIEW_VOTED
:
$choice
=
new
PhabricatorSlowvoteChoice
();
$data
=
queryfx_all
(
$conn
,
'SELECT p.* FROM %T p JOIN %T o
ON o.pollID = p.id
WHERE o.authorPHID = %s
GROUP BY p.id
ORDER BY p.id DESC
LIMIT %d, %d'
,
$poll
->
getTableName
(),
$choice
->
getTableName
(),
$user
->
getPHID
(),
$offset
,
$limit
);
break
;
}
$data
=
$pager
->
sliceResults
(
$data
);
return
$poll
->
loadAllFromArray
(
$data
);
}
private
function
renderSideNav
(
array
$views
,
$view
)
{
$side_nav
=
new
AphrontSideNavView
();
foreach
(
$views
as
$key
=>
$name
)
{
$side_nav
->
addNavItem
(
phutil_render_tag
(
'a'
,
array
(
'href'
=>
'/vote/view/'
.
$key
.
'/'
,
'class'
=>
(
$view
==
$key
)
?
'aphront-side-nav-selected'
:
null
,
),
phutil_escape_html
(
$name
)));
}
return
$side_nav
;
}
private
function
getTableHeader
(
$view
)
{
static
$headers
=
array
(
self
::
VIEW_ALL
=>
'Slowvotes Not Yet Consumed by the Ravages of Time'
,
self
::
VIEW_CREATED
=>
'Slowvotes Birthed from Your Noblest of Great Minds'
,
self
::
VIEW_VOTED
=>
'Slowvotes Within Which You Express Your Mighty Opinion'
,
);
return
idx
(
$headers
,
$view
);
}
}
Event Timeline
Log In to Comment