Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92794353
PhabricatorSlowvoteVoteController.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
Sat, Nov 23, 18:50
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 18:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22514844
Attached To
rPH Phabricator
PhabricatorSlowvoteVoteController.php
View Options
<?php
/**
* @group slowvote
*/
final
class
PhabricatorSlowvoteVoteController
extends
PhabricatorSlowvoteController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$poll
=
id
(
new
PhabricatorSlowvoteQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
needOptions
(
true
)
->
needViewerChoices
(
true
)
->
executeOne
();
if
(!
$poll
)
{
return
new
Aphront404Response
();
}
if
(
$poll
->
getIsClosed
())
{
return
new
Aphront400Response
();
}
$options
=
$poll
->
getOptions
();
$user_choices
=
$poll
->
getViewerChoices
(
$user
);
$old_votes
=
mpull
(
$user_choices
,
null
,
'getOptionID'
);
if
(
$request
->
isAjax
())
{
$vote
=
$request
->
getInt
(
'vote'
);
$votes
=
array_keys
(
$old_votes
);
$votes
=
array_fuse
(
$votes
,
$votes
);
if
(
$poll
->
getMethod
()
==
PhabricatorSlowvotePoll
::
METHOD_PLURALITY
)
{
if
(
idx
(
$votes
,
$vote
,
false
))
{
$votes
=
array
();
}
else
{
$votes
=
array
(
$vote
);
}
}
else
{
if
(
idx
(
$votes
,
$vote
,
false
))
{
unset
(
$votes
[
$vote
]);
}
else
{
$votes
[
$vote
]
=
$vote
;
}
}
$this
->
updateVotes
(
$user
,
$poll
,
$old_votes
,
$votes
);
$updated_choices
=
id
(
new
PhabricatorSlowvoteChoice
())->
loadAllWhere
(
'pollID = %d AND authorPHID = %s'
,
$poll
->
getID
(),
$user
->
getPHID
());
$embed
=
id
(
new
SlowvoteEmbedView
())
->
setPoll
(
$poll
)
->
setOptions
(
$options
)
->
setViewerChoices
(
$updated_choices
);
return
id
(
new
AphrontAjaxResponse
())
->
setContent
(
array
(
'pollID'
=>
$poll
->
getID
(),
'contentHTML'
=>
$embed
->
render
()));
}
if
(!
$request
->
isFormPost
())
{
return
id
(
new
Aphront404Response
());
}
$votes
=
$request
->
getArr
(
'vote'
);
$votes
=
array_fuse
(
$votes
,
$votes
);
$this
->
updateVotes
(
$user
,
$poll
,
$old_votes
,
$votes
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
'/V'
.
$poll
->
getID
());
}
private
function
updateVotes
(
$user
,
$poll
,
$old_votes
,
$votes
)
{
if
(!
empty
(
$votes
)
&&
count
(
$votes
)
>
1
&&
$poll
->
getMethod
()
==
PhabricatorSlowvotePoll
::
METHOD_PLURALITY
)
{
return
id
(
new
Aphront400Response
());
}
foreach
(
$old_votes
as
$old_vote
)
{
if
(!
idx
(
$votes
,
$old_vote
->
getOptionID
(),
false
))
{
$old_vote
->
delete
();
}
}
foreach
(
$votes
as
$vote
)
{
if
(
idx
(
$old_votes
,
$vote
,
false
))
{
continue
;
}
id
(
new
PhabricatorSlowvoteChoice
())
->
setAuthorPHID
(
$user
->
getPHID
())
->
setPollID
(
$poll
->
getID
())
->
setOptionID
(
$vote
)
->
save
();
}
}
}
Event Timeline
Log In to Comment