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();
|
|
|
|
}
|
|
|
|
|
2013-03-13 18:30:39 +01:00
|
|
|
$e_text = null;
|
2013-03-04 17:50:42 +01:00
|
|
|
$disallowed_states = array(
|
|
|
|
PhrictionDocumentStatus::STATUS_DELETED, // Stupid
|
|
|
|
PhrictionDocumentStatus::STATUS_MOVED, // Makes no sense
|
2013-03-14 14:20:35 +01:00
|
|
|
PhrictionDocumentStatus::STATUS_STUB, // How could they?
|
2013-03-04 17:50:42 +01:00
|
|
|
);
|
|
|
|
if (in_array($document->getStatus(), $disallowed_states)) {
|
2013-03-13 18:30:39 +01:00
|
|
|
$e_text = pht('An already moved or deleted document can not be deleted');
|
2013-03-04 17:50:42 +01:00
|
|
|
}
|
|
|
|
|
2011-12-17 18:19:08 +01:00
|
|
|
$document_uri = PhrictionDocument::getSlugURI($document->getSlug());
|
|
|
|
|
2013-03-13 18:30:39 +01:00
|
|
|
if (!$e_text && $request->isFormPost()) {
|
2011-12-17 18:19:08 +01:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2013-03-13 18:30:39 +01:00
|
|
|
if ($e_text) {
|
2013-03-04 17:50:42 +01:00
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($user)
|
2013-03-13 18:30:39 +01:00
|
|
|
->setTitle(pht('Can not delete document!'))
|
|
|
|
->appendChild($e_text)
|
2013-03-04 17:50:42 +01:00
|
|
|
->addCancelButton($document_uri);
|
|
|
|
} else {
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($user)
|
|
|
|
->setTitle(pht('Delete document?'))
|
|
|
|
->appendChild(
|
|
|
|
pht('Really delete this document? You can recover it later by '.
|
|
|
|
'reverting to a previous version.'))
|
|
|
|
->addSubmitButton(pht('Delete'))
|
|
|
|
->addCancelButton($document_uri);
|
|
|
|
}
|
2011-12-17 18:19:08 +01:00
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|