2011-03-24 19:07:36 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-03-10 00:46:25 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-03-24 19:07:36 +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.
|
|
|
|
*/
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class HeraldDeleteController extends HeraldController {
|
2011-03-24 19:07:36 +01:00
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
2011-12-16 22:29:32 +01:00
|
|
|
public function getFilter() {
|
|
|
|
// note this controller is only used from a dialog-context at the moment
|
|
|
|
// and there is actually no "delete" filter
|
|
|
|
return 'delete';
|
|
|
|
}
|
|
|
|
|
2011-03-24 19:07:36 +01:00
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$rule = id(new HeraldRule())->load($this->id);
|
|
|
|
if (!$rule) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
2011-11-06 09:07:04 +01:00
|
|
|
if ($user->getPHID() != $rule->getAuthorPHID() && !$user->getIsAdmin()) {
|
2011-03-24 19:07:36 +01:00
|
|
|
return new Aphront400Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$rule->delete();
|
|
|
|
if ($request->isAjax()) {
|
|
|
|
return new AphrontRedirectResponse();
|
|
|
|
} else {
|
|
|
|
return id(new AphrontRedirectResponse())->setURI('/herald/');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$dialog = new AphrontDialogView();
|
|
|
|
$dialog->setUser($request->getUser());
|
|
|
|
$dialog->setTitle('Really delete this rule?');
|
|
|
|
$dialog->appendChild(
|
|
|
|
"Are you sure you want to delete the rule ".
|
|
|
|
"'<strong>".phutil_escape_html($rule->getName())."</strong>'?");
|
|
|
|
$dialog->addSubmitButton('Delete');
|
|
|
|
$dialog->addCancelButton('/herald/');
|
|
|
|
$dialog->setSubmitURI($request->getPath());
|
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|