2011-12-17 18:19:08 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group phriction
|
|
|
|
*/
|
2012-03-10 00:46:25 +01:00
|
|
|
final class PhrictionDeleteController extends PhrictionController {
|
2011-12-17 18:19:08 +01:00
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$document = id(new PhrictionDocument())->load($this->id);
|
|
|
|
if (!$document) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$document_uri = PhrictionDocument::getSlugURI($document->getSlug());
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$editor = id(PhrictionDocumentEditor::newForSlug($document->getSlug()))
|
2012-10-10 19:18:23 +02:00
|
|
|
->setActor($user)
|
2011-12-17 18:19:08 +01:00
|
|
|
->delete();
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($document_uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($user)
|
2013-02-08 18:54:27 +01:00
|
|
|
->setTitle(pht('Delete document?'))
|
2011-12-17 18:19:08 +01:00
|
|
|
->appendChild(
|
2013-02-08 18:54:27 +01:00
|
|
|
pht('Really delete this document? You can recover it later by '.
|
|
|
|
'reverting to a previous version.'))
|
|
|
|
->addSubmitButton(pht('Delete'))
|
2011-12-17 18:19:08 +01:00
|
|
|
->addCancelButton($document_uri);
|
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|