2011-07-11 21:34:53 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class PhrictionEditController
|
|
|
|
extends PhrictionController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = idx($data, 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
if ($this->id) {
|
|
|
|
$document = id(new PhrictionDocument())->load($this->id);
|
|
|
|
if (!$document) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
2011-07-17 20:06:02 +02:00
|
|
|
|
|
|
|
$revert = $request->getInt('revert');
|
|
|
|
if ($revert) {
|
|
|
|
$content = id(new PhrictionContent())->loadOneWhere(
|
|
|
|
'documentID = %d AND version = %d',
|
|
|
|
$document->getID(),
|
|
|
|
$revert);
|
|
|
|
if (!$content) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$content = id(new PhrictionContent())->load($document->getContentID());
|
|
|
|
}
|
2011-08-31 21:00:34 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
$slug = $request->getStr('slug');
|
|
|
|
$slug = PhrictionDocument::normalizeSlug($slug);
|
|
|
|
if (!$slug) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2011-07-12 17:08:03 +02:00
|
|
|
$document = id(new PhrictionDocument())->loadOneWhere(
|
|
|
|
'slug = %s',
|
|
|
|
$slug);
|
2011-07-11 21:34:53 +02:00
|
|
|
|
|
|
|
if ($document) {
|
|
|
|
$content = id(new PhrictionContent())->load($document->getContentID());
|
|
|
|
} else {
|
|
|
|
$document = new PhrictionDocument();
|
|
|
|
$document->setSlug($slug);
|
|
|
|
|
|
|
|
$content = new PhrictionContent();
|
|
|
|
$content->setSlug($slug);
|
|
|
|
|
2011-07-12 17:08:03 +02:00
|
|
|
$default_title = PhrictionDocument::getDefaultSlugTitle($slug);
|
2011-07-11 21:34:53 +02:00
|
|
|
$content->setTitle($default_title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-17 03:25:45 +02:00
|
|
|
require_celerity_resource('phriction-document-css');
|
|
|
|
|
2011-07-11 21:34:53 +02:00
|
|
|
$e_title = true;
|
|
|
|
$errors = array();
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$title = $request->getStr('title');
|
|
|
|
|
|
|
|
if (!strlen($title)) {
|
|
|
|
$e_title = 'Required';
|
|
|
|
$errors[] = 'Document title is required.';
|
|
|
|
} else {
|
|
|
|
$e_title = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count($errors)) {
|
2011-08-31 21:00:34 +02:00
|
|
|
$editor = id(PhrictionDocumentEditor::newForSlug($document->getSlug()))
|
2011-08-26 21:50:28 +02:00
|
|
|
->setUser($user)
|
|
|
|
->setTitle($title)
|
|
|
|
->setContent($request->getStr('content'))
|
|
|
|
->setDescription($request->getStr('description'));
|
2011-07-11 21:34:53 +02:00
|
|
|
|
2011-08-26 21:50:28 +02:00
|
|
|
$editor->save();
|
2011-07-11 21:34:53 +02:00
|
|
|
|
2011-08-31 21:00:34 +02:00
|
|
|
$uri = PhrictionDocument::getSlugURI($document->getSlug());
|
2011-07-11 21:34:53 +02:00
|
|
|
return id(new AphrontRedirectResponse())->setURI($uri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$error_view = null;
|
|
|
|
if ($errors) {
|
|
|
|
$error_view = id(new AphrontErrorView())
|
|
|
|
->setTitle('Form Errors')
|
|
|
|
->setErrors($errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($document->getID()) {
|
|
|
|
$panel_header = 'Edit Phriction Document';
|
2011-07-17 03:25:45 +02:00
|
|
|
$submit_button = 'Save Changes';
|
2011-07-11 21:34:53 +02:00
|
|
|
} else {
|
|
|
|
$panel_header = 'Create New Phriction Document';
|
|
|
|
$submit_button = 'Create Document';
|
|
|
|
}
|
|
|
|
|
|
|
|
$uri = $document->getSlug();
|
|
|
|
$uri = PhrictionDocument::getSlugURI($uri);
|
|
|
|
$uri = PhabricatorEnv::getProductionURI($uri);
|
|
|
|
|
2011-07-12 17:28:07 +02:00
|
|
|
$remarkup_reference = phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => PhabricatorEnv::getDoclink('article/Remarkup_Reference.html'),
|
|
|
|
),
|
|
|
|
'Formatting Reference');
|
|
|
|
|
2011-07-15 23:24:50 +02:00
|
|
|
$cancel_uri = PhrictionDocument::getSlugURI($document->getSlug());
|
|
|
|
|
2011-07-11 21:34:53 +02:00
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($user)
|
|
|
|
->setAction($request->getRequestURI()->getPath())
|
2011-08-31 21:00:34 +02:00
|
|
|
->addHiddenInput('slug', $document->getSlug())
|
2011-07-11 21:34:53 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setLabel('Title')
|
|
|
|
->setValue($content->getTitle())
|
|
|
|
->setError($e_title)
|
|
|
|
->setName('title'))
|
2011-07-22 00:32:54 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setLabel('Description')
|
|
|
|
->setValue($content->getDescription())
|
|
|
|
->setError(null)
|
|
|
|
->setName('description'))
|
2011-07-11 21:34:53 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('URI')
|
|
|
|
->setValue($uri))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextAreaControl())
|
|
|
|
->setLabel('Content')
|
|
|
|
->setValue($content->getContent())
|
|
|
|
->setHeight(AphrontFormTextAreaControl::HEIGHT_VERY_TALL)
|
2011-07-12 17:28:07 +02:00
|
|
|
->setName('content')
|
2011-07-17 03:25:45 +02:00
|
|
|
->setID('document-textarea')
|
2011-07-15 23:17:55 +02:00
|
|
|
->setEnableDragAndDropFileUploads(true)
|
2011-07-12 17:28:07 +02:00
|
|
|
->setCaption($remarkup_reference))
|
2011-07-11 21:34:53 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
2011-07-15 23:24:50 +02:00
|
|
|
->addCancelButton($cancel_uri)
|
2011-07-11 21:34:53 +02:00
|
|
|
->setValue($submit_button));
|
|
|
|
|
|
|
|
$panel = id(new AphrontPanelView())
|
|
|
|
->setWidth(AphrontPanelView::WIDTH_WIDE)
|
|
|
|
->setHeader($panel_header)
|
|
|
|
->appendChild($form);
|
|
|
|
|
2011-07-17 03:25:45 +02:00
|
|
|
$preview_panel =
|
|
|
|
'<div class="aphront-panel-preview aphront-panel-preview-wide">
|
|
|
|
<div class="phriction-document-preview-header">
|
|
|
|
Document Preview
|
|
|
|
</div>
|
|
|
|
<div id="document-preview">
|
|
|
|
<div class="aphront-panel-preview-loading-text">
|
|
|
|
Loading preview...
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>';
|
|
|
|
|
|
|
|
Javelin::initBehavior(
|
|
|
|
'phriction-document-preview',
|
|
|
|
array(
|
|
|
|
'preview' => 'document-preview',
|
|
|
|
'textarea' => 'document-textarea',
|
|
|
|
'uri' => '/phriction/preview/',
|
|
|
|
));
|
|
|
|
|
2011-07-11 21:34:53 +02:00
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
array(
|
|
|
|
$error_view,
|
|
|
|
$panel,
|
2011-07-17 03:25:45 +02:00
|
|
|
$preview_panel,
|
2011-07-11 21:34:53 +02:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => 'Edit Document',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|