2011-05-03 19:45:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-03-10 00:46:25 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-05-03 19:45:45 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class PhabricatorFileMacroEditController
|
|
|
|
extends PhabricatorFileController {
|
2011-05-03 19:45:45 +02:00
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = idx($data, 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
if ($this->id) {
|
|
|
|
$macro = id(new PhabricatorFileImageMacro())->load($this->id);
|
|
|
|
if (!$macro) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$macro = new PhabricatorFileImageMacro();
|
|
|
|
}
|
|
|
|
|
|
|
|
$errors = array();
|
|
|
|
$e_name = true;
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
2011-07-08 06:17:00 +02:00
|
|
|
$user = $request->getUser();
|
2011-05-03 19:45:45 +02:00
|
|
|
if ($request->isFormPost()) {
|
|
|
|
|
|
|
|
$macro->setName($request->getStr('name'));
|
|
|
|
|
|
|
|
if (!strlen($macro->getName())) {
|
|
|
|
$errors[] = 'Macro name is required.';
|
|
|
|
$e_name = 'Required';
|
|
|
|
} else if (!preg_match('/^[a-z0-9_-]{3,}$/', $macro->getName())) {
|
|
|
|
$errors[] = 'Macro must be at least three characters long and contain '.
|
|
|
|
'only lowercase letters, digits, hyphen and underscore.';
|
|
|
|
$e_name = 'Invalid';
|
|
|
|
} else {
|
|
|
|
$e_name = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$errors) {
|
|
|
|
|
|
|
|
$file = PhabricatorFile::newFromPHPUpload(
|
|
|
|
idx($_FILES, 'file'),
|
|
|
|
array(
|
|
|
|
'name' => $request->getStr('name'),
|
2011-07-08 06:17:00 +02:00
|
|
|
'authorPHID' => $user->getPHID(),
|
2011-05-03 19:45:45 +02:00
|
|
|
));
|
|
|
|
$macro->setFilePHID($file->getPHID());
|
|
|
|
|
|
|
|
try {
|
|
|
|
$macro->save();
|
|
|
|
return id(new AphrontRedirectResponse())->setURI('/file/macro/');
|
|
|
|
} catch (AphrontQueryDuplicateKeyException $ex) {
|
|
|
|
$errors[] = 'Macro name is not unique!';
|
|
|
|
$e_name = 'Duplicate';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($errors) {
|
|
|
|
$error_view = new AphrontErrorView();
|
|
|
|
$error_view->setTitle('Form Errors');
|
|
|
|
$error_view->setErrors($errors);
|
|
|
|
} else {
|
|
|
|
$error_view = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$form = new AphrontFormView();
|
|
|
|
$form->setAction('/file/macro/edit/');
|
|
|
|
$form->setUser($request->getUser());
|
|
|
|
|
|
|
|
$form
|
|
|
|
->setEncType('multipart/form-data')
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setLabel('Name')
|
|
|
|
->setName('name')
|
|
|
|
->setValue($macro->getName())
|
|
|
|
->setCaption('This word or phrase will be replaced with the image.')
|
|
|
|
->setError($e_name))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormFileControl())
|
|
|
|
->setLabel('File')
|
|
|
|
->setName('file')
|
|
|
|
->setError(true))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue('Save Image Macro')
|
|
|
|
->addCancelButton('/file/macro/'));
|
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
if ($macro->getID()) {
|
2011-12-15 07:37:23 +01:00
|
|
|
$title = 'Edit Image Macro';
|
2011-05-03 19:45:45 +02:00
|
|
|
} else {
|
2011-12-15 07:37:23 +01:00
|
|
|
$title = 'Create Image Macro';
|
2011-05-03 19:45:45 +02:00
|
|
|
}
|
2011-12-15 07:37:23 +01:00
|
|
|
$panel->setHeader($title);
|
2011-05-03 19:45:45 +02:00
|
|
|
$panel->appendChild($form);
|
2011-12-15 07:37:23 +01:00
|
|
|
$panel->setWidth(AphrontPanelView::WIDTH_FULL);
|
|
|
|
|
|
|
|
$side_nav = new PhabricatorFileSideNavView();
|
|
|
|
$side_nav->setSelectedFilter('create_macro');
|
|
|
|
$side_nav->appendChild($error_view);
|
|
|
|
$side_nav->appendChild($panel);
|
2011-05-03 19:45:45 +02:00
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
2011-12-15 07:37:23 +01:00
|
|
|
$side_nav,
|
2011-05-03 19:45:45 +02:00
|
|
|
array(
|
2011-12-15 07:37:23 +01:00
|
|
|
'title' => $title,
|
2011-05-03 19:45:45 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|