2012-07-19 18:03:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group phame
|
|
|
|
*/
|
2012-10-15 23:50:12 +02:00
|
|
|
final class PhameBlogDeleteController extends PhameController {
|
2012-07-19 18:03:10 +02:00
|
|
|
|
2012-10-15 23:50:12 +02:00
|
|
|
private $id;
|
2012-07-19 18:03:10 +02:00
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
2012-10-15 23:50:12 +02:00
|
|
|
$this->id = $data['id'];
|
2012-07-19 18:03:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
2012-10-15 23:49:52 +02:00
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$blog = id(new PhameBlogQuery())
|
|
|
|
->setViewer($user)
|
2012-10-15 23:50:12 +02:00
|
|
|
->withIDs(array($this->id))
|
2012-10-15 23:49:52 +02:00
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
|
|
|
->executeOne();
|
|
|
|
if (!$blog) {
|
2012-07-19 18:03:10 +02:00
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$blog->delete();
|
|
|
|
return id(new AphrontRedirectResponse())
|
2012-10-15 23:50:12 +02:00
|
|
|
->setURI($this->getApplicationURI());
|
2012-07-19 18:03:10 +02:00
|
|
|
}
|
|
|
|
|
2012-10-15 23:50:12 +02:00
|
|
|
$cancel_uri = $this->getApplicationURI('/blog/view/'.$blog->getID().'/');
|
|
|
|
|
2012-07-19 18:03:10 +02:00
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($user)
|
2012-10-15 23:50:45 +02:00
|
|
|
->setTitle(pht('Delete Blog?'))
|
2012-10-15 23:50:12 +02:00
|
|
|
->appendChild(
|
|
|
|
pht(
|
|
|
|
'Really delete the blog "%s"? It will be gone forever.',
|
2013-02-13 23:08:57 +01:00
|
|
|
phutil_escape_html($blog->getName())))
|
2012-10-15 23:50:12 +02:00
|
|
|
->addSubmitButton(pht('Delete'))
|
|
|
|
->addCancelButton($cancel_uri);
|
2012-07-19 18:03:10 +02:00
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
|
|
}
|
|
|
|
}
|