2011-06-13 01:06:17 +02:00
|
|
|
<?php
|
|
|
|
|
2013-05-23 15:47:54 +02:00
|
|
|
/**
|
|
|
|
* @group countdown
|
|
|
|
*/
|
2012-03-10 00:46:25 +01:00
|
|
|
final class PhabricatorCountdownEditController
|
2011-06-13 01:06:17 +02:00
|
|
|
extends PhabricatorCountdownController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = idx($data, 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
2013-05-04 00:49:29 +02:00
|
|
|
$action_label = pht('Create Countdown');
|
2011-06-13 01:06:17 +02:00
|
|
|
|
2011-08-01 22:46:25 +02:00
|
|
|
if ($this->id) {
|
2013-05-23 15:47:54 +02:00
|
|
|
$countdown = id(new CountdownQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->executeOne();
|
|
|
|
|
|
|
|
// If no countdown is found
|
|
|
|
if (!$countdown) {
|
2011-06-13 01:06:17 +02:00
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2013-05-23 15:47:54 +02:00
|
|
|
if (($countdown->getAuthorPHID() != $user->getPHID())
|
2011-06-13 01:06:17 +02:00
|
|
|
&& $user->getIsAdmin() == false) {
|
2012-01-15 10:07:56 +01:00
|
|
|
return new Aphront403Response();
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-05-04 00:49:29 +02:00
|
|
|
$action_label = pht('Update Countdown');
|
2011-06-13 01:06:17 +02:00
|
|
|
} else {
|
2013-05-23 15:47:54 +02:00
|
|
|
$countdown = new PhabricatorCountdown();
|
|
|
|
$countdown->setEpoch(time());
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$error_view = null;
|
|
|
|
$e_text = null;
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$errors = array();
|
|
|
|
$title = $request->getStr('title');
|
2013-05-04 00:49:29 +02:00
|
|
|
$epoch = $request->getStr('epoch');
|
2011-06-13 01:06:17 +02:00
|
|
|
|
|
|
|
$e_text = null;
|
|
|
|
if (!strlen($title)) {
|
2013-02-25 21:48:55 +01:00
|
|
|
$e_text = pht('Required');
|
2013-06-03 21:58:11 +02:00
|
|
|
$errors[] = pht('You must give the countdown a name.');
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-06-03 21:58:11 +02:00
|
|
|
if (strlen($epoch)) {
|
|
|
|
$timestamp = PhabricatorTime::parseLocalTime($epoch, $user);
|
|
|
|
if (!$timestamp) {
|
|
|
|
$errors[] = pht(
|
|
|
|
'You entered an incorrect date. You can enter date '.
|
|
|
|
'like \'2011-06-26 13:33:37\' to create an event at '.
|
|
|
|
'13:33:37 on the 26th of June 2011.');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$e_epoch = pht('Required');
|
|
|
|
$errors[] = pht('You must specify the end date for a countdown.');
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!count($errors)) {
|
2013-06-03 21:58:11 +02:00
|
|
|
$countdown->setTitle($title);
|
|
|
|
$countdown->setEpoch($timestamp);
|
2013-05-23 15:47:54 +02:00
|
|
|
$countdown->setAuthorPHID($user->getPHID());
|
|
|
|
$countdown->save();
|
2011-06-13 01:06:17 +02:00
|
|
|
return id(new AphrontRedirectResponse())
|
2013-05-23 15:47:54 +02:00
|
|
|
->setURI('/countdown/'.$countdown->getID().'/');
|
2011-06-26 19:51:59 +02:00
|
|
|
} else {
|
2011-06-13 01:06:17 +02:00
|
|
|
$error_view = id(new AphrontErrorView())
|
|
|
|
->setErrors($errors)
|
2013-02-25 21:48:55 +01:00
|
|
|
->setTitle(pht('It\'s not The Final Countdown (du nu nuuu nun)' .
|
|
|
|
' until you fix these problem'));
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-23 15:47:54 +02:00
|
|
|
if ($countdown->getEpoch()) {
|
2013-06-03 21:58:11 +02:00
|
|
|
$display_epoch = phabricator_datetime($countdown->getEpoch(), $user);
|
2011-06-26 19:51:59 +02:00
|
|
|
} else {
|
2013-05-04 00:49:29 +02:00
|
|
|
$display_epoch = $request->getStr('epoch');
|
2011-06-26 19:51:59 +02:00
|
|
|
}
|
|
|
|
|
2011-06-13 01:06:17 +02:00
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($user)
|
|
|
|
->setAction($request->getRequestURI()->getPath())
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
2013-02-25 21:48:55 +01:00
|
|
|
->setLabel(pht('Title'))
|
2013-05-23 15:47:54 +02:00
|
|
|
->setValue($countdown->getTitle())
|
2011-06-13 01:06:17 +02:00
|
|
|
->setName('title'))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
2013-02-25 21:48:55 +01:00
|
|
|
->setLabel(pht('End date'))
|
2013-05-04 00:49:29 +02:00
|
|
|
->setValue($display_epoch)
|
|
|
|
->setName('epoch')
|
2013-02-25 21:48:55 +01:00
|
|
|
->setCaption(pht('Examples: '.
|
|
|
|
'2011-12-25 or 3 hours or '.
|
|
|
|
'June 8 2011, 5 PM.')))
|
2011-06-13 01:06:17 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->addCancelButton('/countdown/')
|
|
|
|
->setValue($action_label));
|
|
|
|
|
|
|
|
$panel = id(new AphrontPanelView())
|
|
|
|
->setWidth(AphrontPanelView::WIDTH_FORM)
|
|
|
|
->setHeader($action_label)
|
2013-02-25 21:48:55 +01:00
|
|
|
->setNoBackground()
|
2011-06-13 01:06:17 +02:00
|
|
|
->appendChild($form);
|
|
|
|
|
2013-02-25 21:48:55 +01:00
|
|
|
$crumbs = $this
|
|
|
|
->buildApplicationCrumbs()
|
|
|
|
->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
|
|
|
->setName($action_label)
|
|
|
|
->setHref($this->getApplicationURI('edit/')));
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
Countdown tweaks
Summary:
A few tweaks to hsb's Countdown implementation:
- Allow the page to be rendered "chromeless", suitable for display on one of
the dozens of monitors everyone has laying around.
- Show title of countdown in deletion dialog.
- When creating a new countdown default to time(), not Dec 31, 1969.
- Add extra "/" after editing to avoid needless redirect.
- Tweak some page titles.
- Show countdown author in list view.
- Highlight tab in list view.
- Tweak menu copy.
- Link countdown title in list view, separate buttons into different columns
so they pick up padding.
Test Plan:
Created, edited and deleted a timer. Viewed a timer and toggled chrome mode.
Viewed timer list.
Reviewed By: hsb
Reviewers: hsb, aran, jungejason, tuomaspelkonen
CC: aran, hsb, epriestley
Differential Revision: 454
2011-06-14 02:35:13 +02:00
|
|
|
array(
|
2013-02-25 21:48:55 +01:00
|
|
|
$crumbs,
|
2011-06-13 01:06:17 +02:00
|
|
|
$error_view,
|
Countdown tweaks
Summary:
A few tweaks to hsb's Countdown implementation:
- Allow the page to be rendered "chromeless", suitable for display on one of
the dozens of monitors everyone has laying around.
- Show title of countdown in deletion dialog.
- When creating a new countdown default to time(), not Dec 31, 1969.
- Add extra "/" after editing to avoid needless redirect.
- Tweak some page titles.
- Show countdown author in list view.
- Highlight tab in list view.
- Tweak menu copy.
- Link countdown title in list view, separate buttons into different columns
so they pick up padding.
Test Plan:
Created, edited and deleted a timer. Viewed a timer and toggled chrome mode.
Viewed timer list.
Reviewed By: hsb
Reviewers: hsb, aran, jungejason, tuomaspelkonen
CC: aran, hsb, epriestley
Differential Revision: 454
2011-06-14 02:35:13 +02:00
|
|
|
$panel,
|
2011-06-13 01:06:17 +02:00
|
|
|
),
|
|
|
|
array(
|
2013-02-25 21:48:55 +01:00
|
|
|
'title' => pht('Edit Countdown'),
|
|
|
|
'device' => true,
|
2011-06-13 01:06:17 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|