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();
|
|
|
|
|
2011-08-01 22:46:25 +02:00
|
|
|
if ($this->id) {
|
2013-08-26 20:53:11 +02:00
|
|
|
$page_title = pht('Edit Countdown');
|
2013-07-22 23:42:25 +02:00
|
|
|
$countdown = id(new PhabricatorCountdownQuery())
|
2013-05-23 15:47:54 +02:00
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($this->id))
|
2013-07-23 15:16:19 +02:00
|
|
|
->requireCapabilities(
|
|
|
|
array(
|
|
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
|
|
))
|
2013-05-23 15:47:54 +02:00
|
|
|
->executeOne();
|
|
|
|
|
|
|
|
// If no countdown is found
|
|
|
|
if (!$countdown) {
|
2011-06-13 01:06:17 +02:00
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
} else {
|
2013-08-26 20:53:11 +02:00
|
|
|
$page_title = pht('Create Countdown');
|
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
|
|
|
}
|
|
|
|
|
2013-07-23 15:16:19 +02:00
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
|
|
|
|
|
|
$cancel_uri = '/countdown/';
|
|
|
|
if ($countdown->getID()) {
|
|
|
|
$cancel_uri = '/countdown/'.$countdown->getID().'/';
|
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
|
|
|
->setName('C'.$countdown->getID())
|
|
|
|
->setHref($cancel_uri));
|
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
|
|
|
->setName(pht('Edit')));
|
|
|
|
$submit_label = pht('Save Changes');
|
|
|
|
} else {
|
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
|
|
|
->setName(pht('Create Countdown')));
|
|
|
|
$submit_label = pht('Create Countdown');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-07-23 15:16:19 +02: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())
|
2013-07-23 15:16:19 +02:00
|
|
|
->addCancelButton($cancel_uri)
|
|
|
|
->setValue($submit_label));
|
|
|
|
|
2013-09-25 20:23:29 +02:00
|
|
|
$form_box = id(new PHUIObjectBoxView())
|
2013-08-26 20:53:11 +02:00
|
|
|
->setHeaderText($page_title)
|
|
|
|
->setFormError($error_view)
|
|
|
|
->setForm($form);
|
2013-02-25 21:48:55 +01:00
|
|
|
|
|
|
|
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,
|
2013-08-26 20:53:11 +02:00
|
|
|
$form_box,
|
2011-06-13 01:06:17 +02:00
|
|
|
),
|
|
|
|
array(
|
2013-08-26 20:53:11 +02:00
|
|
|
'title' => $page_title,
|
2013-02-25 21:48:55 +01:00
|
|
|
'device' => true,
|
2011-06-13 01:06:17 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|