Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100368666
PhabricatorSlowvoteCreateController.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
Thu, Jan 30, 06:54
Size
4 KB
Mime Type
text/x-php
Expires
Sat, Feb 1, 06:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23923436
Attached To
rPH Phabricator
PhabricatorSlowvoteCreateController.php
View Options
<?php
/*
* Copyright 2011 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.
*/
class
PhabricatorSlowvoteCreateController
extends
PhabricatorSlowvoteController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$poll
=
new
PhabricatorSlowvotePoll
();
$poll
->
setAuthorPHID
(
$user
->
getPHID
());
$e_question
=
true
;
$e_response
=
true
;
$errors
=
array
();
$responses
=
$request
->
getArr
(
'response'
);
if
(
$request
->
isFormPost
())
{
$poll
->
setQuestion
(
$request
->
getStr
(
'question'
));
$poll
->
setResponseVisibility
(
$request
->
getInt
(
'response_visibility'
));
$poll
->
setShuffle
(
$request
->
getBool
(
'shuffle'
,
false
));
$poll
->
setMethod
(
$request
->
getInt
(
'method'
));
if
(!
strlen
(
$poll
->
getQuestion
()))
{
$e_question
=
'Required'
;
$errors
[]
=
'You must ask a poll question.'
;
}
else
{
$e_question
=
null
;
}
$responses
=
array_filter
(
$responses
);
if
(
empty
(
$responses
))
{
$errors
[]
=
'You must offer at least one response.'
;
$e_response
=
'Required'
;
}
else
{
$e_response
=
null
;
}
if
(
empty
(
$errors
))
{
$poll
->
save
();
foreach
(
$responses
as
$response
)
{
$option
=
new
PhabricatorSlowvoteOption
();
$option
->
setName
(
$response
);
$option
->
setPollID
(
$poll
->
getID
());
$option
->
save
();
}
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/V'
.
$poll
->
getID
());
}
}
$error_view
=
null
;
if
(
$errors
)
{
$error_view
=
new
AphrontErrorView
();
$error_view
->
setTitle
(
'Form Errors'
);
$error_view
->
setErrors
(
$errors
);
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
)
->
appendChild
(
'<p class="aphront-form-instructions">Resolve issues and build '
.
'consensus through protracted deliberation.</p>'
)
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'Question'
)
->
setName
(
'question'
)
->
setValue
(
$poll
->
getQuestion
())
->
setError
(
$e_question
));
for
(
$ii
=
0
;
$ii
<
10
;
$ii
++)
{
$n
=
(
$ii
+
1
);
$response
=
id
(
new
AphrontFormTextControl
())
->
setLabel
(
"Response {$n}"
)
->
setName
(
'response[]'
)
->
setValue
(
idx
(
$responses
,
$ii
,
''
));
if
(
$ii
==
0
)
{
$response
->
setError
(
$e_response
);
}
$form
->
appendChild
(
$response
);
}
$poll_type_options
=
array
(
PhabricatorSlowvotePoll
::
METHOD_PLURALITY
=>
'Plurality (Single Choice)'
,
PhabricatorSlowvotePoll
::
METHOD_APPROVAL
=>
'Approval (Multiple Choice)'
,
);
$response_type_options
=
array
(
PhabricatorSlowvotePoll
::
RESPONSES_VISIBLE
=>
'Allow anyone to see the responses'
,
PhabricatorSlowvotePoll
::
RESPONSES_VOTERS
=>
'Require a vote to see the responses'
,
PhabricatorSlowvotePoll
::
RESPONSES_OWNER
=>
'Only I can see the responses'
,
);
$form
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
'Vote Type'
)
->
setName
(
'method'
)
->
setValue
(
$poll
->
getMethod
())
->
setOptions
(
$poll_type_options
))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
'Responses'
)
->
setName
(
'response_visibility'
)
->
setValue
(
$poll
->
getResponseVisibility
())
->
setOptions
(
$response_type_options
))
->
appendChild
(
id
(
new
AphrontFormCheckboxControl
())
->
setLabel
(
'Shuffle'
)
->
addCheckbox
(
'shuffle'
,
1
,
'Show choices in random order'
,
$poll
->
getShuffle
()))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
'Create Slowvote'
)
->
addCancelButton
(
'/vote/'
));
$panel
=
new
AphrontPanelView
();
$panel
->
setWidth
(
AphrontPanelView
::
WIDTH_FORM
);
$panel
->
setHeader
(
'Create Slowvote'
);
$panel
->
appendChild
(
$form
);
return
$this
->
buildStandardPageResponse
(
array
(
$error_view
,
$panel
,
),
array
(
'title'
=>
'Create Slowvote'
,
));
}
}
Event Timeline
Log In to Comment