2011-03-22 22:34:38 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-01-14 00:24:56 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-03-22 22:34:38 +01:00
|
|
|
*
|
|
|
|
* 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 HeraldNewController extends HeraldController {
|
|
|
|
|
2012-01-14 00:24:56 +01:00
|
|
|
private $contentType;
|
2011-03-22 22:34:38 +01:00
|
|
|
|
2011-12-16 22:29:32 +01:00
|
|
|
public function getFilter() {
|
|
|
|
return 'new';
|
|
|
|
}
|
|
|
|
|
2011-03-22 22:34:38 +01:00
|
|
|
public function willProcessRequest(array $data) {
|
2012-01-14 00:24:56 +01:00
|
|
|
$this->contentType = idx($data, 'type');
|
2011-03-22 22:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
2012-01-14 00:24:56 +01:00
|
|
|
$content_type_map = HeraldContentTypeConfig::getContentTypeMap();
|
|
|
|
if (empty($content_type_map[$this->contentType])) {
|
|
|
|
reset($content_type_map);
|
|
|
|
$this->contentType = key($content_type_map);
|
2011-03-22 22:34:38 +01:00
|
|
|
}
|
|
|
|
|
2012-01-14 00:24:56 +01:00
|
|
|
$rule_type_map = HeraldRuleTypeConfig::getRuleTypeMap();
|
|
|
|
|
2011-03-22 22:34:38 +01:00
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($user)
|
|
|
|
->setAction('/herald/rule/')
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSelectControl())
|
|
|
|
->setLabel('New rule for')
|
2012-01-14 00:24:56 +01:00
|
|
|
->setName('content_type')
|
|
|
|
->setValue($this->contentType)
|
|
|
|
->setOptions($content_type_map))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSelectControl())
|
|
|
|
->setLabel('Type')
|
|
|
|
->setName('rule_type')
|
|
|
|
->setOptions($rule_type_map))
|
2011-03-22 22:34:38 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue('Create Rule')
|
2012-01-14 00:24:56 +01:00
|
|
|
->addCancelButton('/herald/view/'.$this->contentType.'/'));
|
2011-03-22 22:34:38 +01:00
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
$panel->setHeader('Create New Herald Rule');
|
2011-12-16 22:29:32 +01:00
|
|
|
$panel->setWidth(AphrontPanelView::WIDTH_FULL);
|
2011-03-22 22:34:38 +01:00
|
|
|
$panel->appendChild($form);
|
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
$panel,
|
|
|
|
array(
|
|
|
|
'title' => 'Create Herald Rule',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|