2011-05-03 19:45:45 +02:00
|
|
|
<?php
|
|
|
|
|
2012-10-01 23:04:03 +02:00
|
|
|
final class PhabricatorMacroEditController
|
|
|
|
extends PhabricatorMacroController {
|
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;
|
2012-10-05 03:43:49 +02:00
|
|
|
$file = null;
|
2011-05-03 19:45:45 +02:00
|
|
|
|
|
|
|
$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();
|
2012-10-01 23:04:03 +02:00
|
|
|
return id(new AphrontRedirectResponse())->setURI(
|
|
|
|
$this->getApplicationURI());
|
2011-05-03 19:45:45 +02:00
|
|
|
} catch (AphrontQueryDuplicateKeyException $ex) {
|
|
|
|
$errors[] = 'Macro name is not unique!';
|
|
|
|
$e_name = 'Duplicate';
|
|
|
|
}
|
|
|
|
}
|
2012-10-05 03:43:49 +02:00
|
|
|
} else if ($this->id) {
|
|
|
|
$file = id(new PhabricatorFile())
|
|
|
|
->loadOneWhere('phid = %s', $macro->getFilePHID());
|
|
|
|
}
|
|
|
|
|
|
|
|
$caption = null;
|
|
|
|
if ($file) {
|
|
|
|
$caption = phutil_render_tag(
|
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $file->getViewURI(),
|
|
|
|
));
|
2011-05-03 19:45:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($errors) {
|
|
|
|
$error_view = new AphrontErrorView();
|
|
|
|
$error_view->setTitle('Form Errors');
|
|
|
|
$error_view->setErrors($errors);
|
|
|
|
} else {
|
|
|
|
$error_view = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$form = new AphrontFormView();
|
|
|
|
$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')
|
2012-10-05 03:43:49 +02:00
|
|
|
->setCaption($caption)
|
2011-05-03 19:45:45 +02:00
|
|
|
->setError(true))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue('Save Image Macro')
|
2012-10-01 23:04:03 +02:00
|
|
|
->addCancelButton($this->getApplicationURI()));
|
2011-05-03 19:45:45 +02:00
|
|
|
|
|
|
|
$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);
|
|
|
|
|
2012-10-01 23:04:03 +02:00
|
|
|
$nav = $this->buildSideNavView($macro);
|
|
|
|
$nav->selectFilter('#', 'edit');
|
|
|
|
$nav->appendChild($error_view);
|
|
|
|
$nav->appendChild($panel);
|
2011-05-03 19:45:45 +02:00
|
|
|
|
2012-10-01 23:04:03 +02:00
|
|
|
return $this->buildApplicationPage(
|
|
|
|
$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
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|