2011-06-13 01:06:17 +02:00
|
|
|
<?php
|
|
|
|
|
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-02-25 21:48:55 +01:00
|
|
|
$action_label = pht('Create Timer');
|
2011-06-13 01:06:17 +02:00
|
|
|
|
2011-08-01 22:46:25 +02:00
|
|
|
if ($this->id) {
|
2011-06-13 01:06:17 +02:00
|
|
|
$timer = id(new PhabricatorTimer())->load($this->id);
|
|
|
|
// If no timer is found
|
|
|
|
if (!$timer) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($timer->getAuthorPHID() != $user->getPHID())
|
|
|
|
&& $user->getIsAdmin() == false) {
|
2012-01-15 10:07:56 +01:00
|
|
|
return new Aphront403Response();
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-02-25 21:48:55 +01:00
|
|
|
$action_label = pht('Update Timer');
|
2011-06-13 01:06:17 +02:00
|
|
|
} else {
|
|
|
|
$timer = new PhabricatorTimer();
|
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
|
|
|
$timer->setDatePoint(time());
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$error_view = null;
|
|
|
|
$e_text = null;
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$errors = array();
|
|
|
|
$title = $request->getStr('title');
|
|
|
|
$datepoint = $request->getStr('datepoint');
|
|
|
|
|
|
|
|
$e_text = null;
|
|
|
|
if (!strlen($title)) {
|
2013-02-25 21:48:55 +01:00
|
|
|
$e_text = pht('Required');
|
|
|
|
$errors[] = pht('You must give it a name.');
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2011-06-26 19:51:59 +02:00
|
|
|
// If the user types something like "5 PM", convert it to a timestamp
|
|
|
|
// using their local time, not the server time.
|
|
|
|
$timezone = new DateTimeZone($user->getTimezoneIdentifier());
|
|
|
|
|
|
|
|
try {
|
|
|
|
$date = new DateTime($datepoint, $timezone);
|
|
|
|
$timestamp = $date->format('U');
|
|
|
|
} catch (Exception $e) {
|
2013-02-25 21:48:55 +01:00
|
|
|
$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.');
|
2011-06-26 19:51:59 +02:00
|
|
|
$timestamp = null;
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$timer->setTitle($title);
|
|
|
|
$timer->setDatePoint($timestamp);
|
|
|
|
|
|
|
|
if (!count($errors)) {
|
|
|
|
$timer->setAuthorPHID($user->getPHID());
|
|
|
|
$timer->save();
|
|
|
|
return id(new AphrontRedirectResponse())
|
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
|
|
|
->setURI('/countdown/'.$timer->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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-26 19:51:59 +02:00
|
|
|
if ($timer->getDatePoint()) {
|
|
|
|
$display_datepoint = phabricator_datetime(
|
|
|
|
$timer->getDatePoint(),
|
|
|
|
$user);
|
|
|
|
} else {
|
|
|
|
$display_datepoint = $request->getStr('datepoint');
|
|
|
|
}
|
|
|
|
|
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'))
|
2011-06-13 01:06:17 +02:00
|
|
|
->setValue($timer->getTitle())
|
|
|
|
->setName('title'))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
2013-02-25 21:48:55 +01:00
|
|
|
->setLabel(pht('End date'))
|
2011-06-26 19:51:59 +02:00
|
|
|
->setValue($display_datepoint)
|
2011-06-13 01:06:17 +02:00
|
|
|
->setName('datepoint')
|
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
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|