mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
4b6c81a23c
Summary: don't remember what I changed except for add that intermediate dialog Test Plan: {F35155} Ugly, ain't it? you can edit instead, or admit that it was a mistake to take on Phriction's existing documents Reviewers: epriestley, chad, btrahan Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2686 Differential Revision: https://secure.phabricator.com/D5295
67 lines
2 KiB
PHP
67 lines
2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group phriction
|
|
*/
|
|
final class PhrictionNewController extends PhrictionController {
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
$slug = PhabricatorSlug::normalize($request->getStr('slug'));
|
|
|
|
if ($request->isFormPost()) {
|
|
$document = id(new PhrictionDocument())->loadOneWhere(
|
|
'slug = %s',
|
|
$slug);
|
|
$prompt = $request->getStr('prompt', 'no');
|
|
$document_exists = $document && $document->getStatus() ==
|
|
PhrictionDocumentStatus::STATUS_EXISTS;
|
|
|
|
if ($document_exists && $prompt == 'no') {
|
|
$dialog = new AphrontDialogView();
|
|
$dialog->setSubmitURI('/phriction/new/')
|
|
->setTitle(pht('Edit Existing Document?'))
|
|
->setUser($user)
|
|
->appendChild(pht(
|
|
'The document %s already exists. Do you want to edit it instead?',
|
|
hsprintf('<tt>%s</tt>', $slug)))
|
|
->addHiddenInput('slug', $slug)
|
|
->addHiddenInput('prompt', 'yes')
|
|
->addCancelButton('/w/')
|
|
->addSubmitButton(pht('Edit Document'));
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
} else {
|
|
$uri = '/phriction/edit/?slug='.$slug;
|
|
return id(new AphrontRedirectResponse())
|
|
->setURI($uri);
|
|
}
|
|
}
|
|
|
|
if ($slug == '/') {
|
|
$slug = '';
|
|
}
|
|
|
|
$view = id(new AphrontFormLayoutView())
|
|
->appendChild(id(new AphrontFormTextControl())
|
|
->setLabel('/w/')
|
|
->setValue($slug)
|
|
->setName('slug'));
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
->setUser($user)
|
|
->setTitle(pht('New Document'))
|
|
->setSubmitURI('/phriction/new/')
|
|
->appendChild(phutil_tag('p',
|
|
array(),
|
|
pht('Create a new document at')))
|
|
->appendChild($view)
|
|
->addSubmitButton(pht('Create'))
|
|
->addCancelButton('/w/');
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
}
|
|
|
|
}
|