2012-08-10 19:44:04 +02:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
final class PonderQuestionAskController extends PonderController {
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$question = id(new PonderQuestion())
|
|
|
|
->setAuthorPHID($user->getPHID())
|
|
|
|
->setVoteCount(0)
|
|
|
|
->setAnswerCount(0)
|
2012-10-01 05:09:18 +02:00
|
|
|
->setHeat(0.0);
|
2012-08-10 19:44:04 +02:00
|
|
|
|
2012-10-01 05:09:18 +02:00
|
|
|
$errors = array();
|
|
|
|
$e_title = true;
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$question->setTitle($request->getStr('title'));
|
|
|
|
$question->setContent($request->getStr('content'));
|
|
|
|
|
|
|
|
$len = phutil_utf8_strlen($question->getTitle());
|
|
|
|
if ($len < 1) {
|
|
|
|
$errors[] = pht('Title must not be empty.');
|
|
|
|
$e_title = pht('Required');
|
|
|
|
} else if ($len > 255) {
|
|
|
|
$errors[] = pht('Title is too long.');
|
|
|
|
$e_title = pht('Too Long');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$errors) {
|
|
|
|
$content_source = PhabricatorContentSource::newForSource(
|
|
|
|
PhabricatorContentSource::SOURCE_WEB,
|
|
|
|
array(
|
|
|
|
'ip' => $request->getRemoteAddr(),
|
|
|
|
));
|
|
|
|
$question->setContentSource($content_source);
|
|
|
|
|
2012-10-07 23:35:01 +02:00
|
|
|
id(new PonderQuestionEditor())
|
|
|
|
->setQuestion($question)
|
2012-10-08 23:47:21 +02:00
|
|
|
->setUser($user)
|
2012-10-07 23:35:01 +02:00
|
|
|
->save();
|
2012-10-01 05:09:18 +02:00
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
|
|
->setURI('/Q'.$question->getID());
|
|
|
|
}
|
|
|
|
}
|
2012-08-10 19:44:04 +02:00
|
|
|
|
|
|
|
$error_view = null;
|
|
|
|
if ($errors) {
|
|
|
|
$error_view = id(new AphrontErrorView())
|
|
|
|
->setTitle('Form Errors')
|
|
|
|
->setErrors($errors);
|
|
|
|
}
|
|
|
|
|
2012-10-01 05:09:18 +02:00
|
|
|
$header = id(new PhabricatorHeaderView())->setHeader(pht('Ask Question'));
|
|
|
|
|
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($user)
|
|
|
|
->setFlexible(true)
|
2012-08-10 19:44:04 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
2012-10-01 05:09:18 +02:00
|
|
|
->setLabel(pht('Question'))
|
2012-08-10 19:44:04 +02:00
|
|
|
->setName('title')
|
2012-10-01 05:09:18 +02:00
|
|
|
->setValue($question->getTitle())
|
|
|
|
->setError($e_title))
|
2012-08-10 19:44:04 +02:00
|
|
|
->appendChild(
|
2012-09-19 21:27:28 +02:00
|
|
|
id(new PhabricatorRemarkupControl())
|
2012-08-10 19:44:04 +02:00
|
|
|
->setName('content')
|
|
|
|
->setID('content')
|
2012-10-01 05:09:18 +02:00
|
|
|
->setValue($question->getContent())
|
|
|
|
->setLabel(pht('Description')))
|
2012-08-10 19:44:04 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue('Ask Away!'));
|
|
|
|
|
2012-10-01 05:09:18 +02:00
|
|
|
$preview =
|
2012-08-10 19:44:04 +02:00
|
|
|
'<div class="aphront-panel-flush">'.
|
|
|
|
'<div id="question-preview">'.
|
|
|
|
'<span class="aphront-panel-preview-loading-text">'.
|
2012-10-01 05:09:18 +02:00
|
|
|
pht('Loading question preview...').
|
2012-08-10 19:44:04 +02:00
|
|
|
'</span>'.
|
|
|
|
'</div>'.
|
2012-10-01 05:09:18 +02:00
|
|
|
'</div>';
|
2012-08-10 19:44:04 +02:00
|
|
|
|
|
|
|
Javelin::initBehavior(
|
|
|
|
'ponder-feedback-preview',
|
|
|
|
array(
|
|
|
|
'uri' => '/ponder/question/preview/',
|
|
|
|
'content' => 'content',
|
|
|
|
'preview' => 'question-preview',
|
|
|
|
'question_id' => null
|
|
|
|
));
|
|
|
|
|
2012-10-01 05:09:18 +02:00
|
|
|
$nav = $this->buildSideNavView($question);
|
|
|
|
$nav->selectFilter($question->getID() ? null : 'question/ask');
|
|
|
|
|
|
|
|
$nav->appendChild(
|
|
|
|
array(
|
|
|
|
$header,
|
|
|
|
$error_view,
|
|
|
|
$form,
|
|
|
|
$preview,
|
|
|
|
));
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
|
|
$nav,
|
|
|
|
array(
|
|
|
|
'device' => true,
|
|
|
|
'title' => 'Ask a Question',
|
|
|
|
)
|
2012-08-10 19:44:04 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|