mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 09:42:41 +01:00
4d7c1026f4
Summary: Ref T4029. We use a lot of very outdated content loading in Phriction, which blocks T4029. Test Plan: - Called phriction.info - Called phriction.history - Called phriction.edit - Viewed document list. - Deleted a document. - Viewed history. - Viewed a diff. - Created a document. - Edited a document. - Moved a document. - Tried to overwrite a document with "new". - Tried to overwrite a document with "move". - Viewed a moved document note. Reviewers: btrahan Reviewed By: btrahan Subscribers: shadowhand, epriestley Maniphest Tasks: T4029 Differential Revision: https://secure.phabricator.com/D9194
82 lines
2.8 KiB
PHP
82 lines
2.8 KiB
PHP
<?php
|
|
|
|
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 PhrictionDocumentQuery())
|
|
->setViewer($user)
|
|
->withSlugs(array($slug))
|
|
->executeOne();
|
|
$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?',
|
|
phutil_tag('tt', array(), $slug)))
|
|
->addHiddenInput('slug', $slug)
|
|
->addHiddenInput('prompt', 'yes')
|
|
->addCancelButton('/w/')
|
|
->addSubmitButton(pht('Edit Document'));
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
} else if (PhrictionDocument::isProjectSlug($slug)) {
|
|
$project = id(new PhabricatorProjectQuery())
|
|
->setViewer($user)
|
|
->withPhrictionSlugs(array(
|
|
PhrictionDocument::getProjectSlugIdentifier($slug)))
|
|
->executeOne();
|
|
if (!$project) {
|
|
$dialog = new AphrontDialogView();
|
|
$dialog->setSubmitURI('/w/')
|
|
->setTitle(pht('Oops!'))
|
|
->setUser($user)
|
|
->appendChild(pht(
|
|
'You cannot create wiki pages under "projects/",
|
|
because they are reserved as project pages.
|
|
Create a new project with this name first.'))
|
|
->addCancelButton('/w/', 'Okay');
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
}
|
|
}
|
|
|
|
$uri = '/phriction/edit/?slug='.$slug;
|
|
return id(new AphrontRedirectResponse())
|
|
->setURI($uri);
|
|
}
|
|
|
|
if ($slug == '/') {
|
|
$slug = '';
|
|
}
|
|
|
|
$view = id(new PHUIFormLayoutView())
|
|
->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);
|
|
}
|
|
|
|
}
|