2013-01-25 02:23:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group conpherence
|
|
|
|
*/
|
|
|
|
final class ConpherenceViewController extends
|
|
|
|
ConpherenceController {
|
|
|
|
|
|
|
|
private $conpherenceID;
|
|
|
|
private $conpherence;
|
|
|
|
|
|
|
|
public function setConpherence(ConpherenceThread $conpherence) {
|
|
|
|
$this->conpherence = $conpherence;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
public function getConpherence() {
|
|
|
|
return $this->conpherence;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setConpherenceID($conpherence_id) {
|
|
|
|
$this->conpherenceID = $conpherence_id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
public function getConpherenceID() {
|
|
|
|
return $this->conpherenceID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->setConpherenceID(idx($data, 'id'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$conpherence_id = $this->getConpherenceID();
|
|
|
|
if (!$conpherence_id) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
if (!$request->isAjax()) {
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
|
|
->setURI($this->getApplicationURI($conpherence_id.'/'));
|
|
|
|
}
|
|
|
|
$conpherence = id(new ConpherenceThreadQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($conpherence_id))
|
|
|
|
->needWidgetData(true)
|
2013-02-06 23:03:52 +01:00
|
|
|
->needHeaderPics(true)
|
2013-01-25 02:23:05 +01:00
|
|
|
->executeOne();
|
|
|
|
$this->setConpherence($conpherence);
|
|
|
|
|
|
|
|
$participant = $conpherence->getParticipant($user->getPHID());
|
2013-01-27 03:53:30 +01:00
|
|
|
$transactions = $conpherence->getTransactions();
|
|
|
|
$latest_transaction = end($transactions);
|
2013-01-25 02:23:05 +01:00
|
|
|
$write_guard = AphrontWriteGuard::beginScopedUnguardedWrites();
|
2013-01-27 03:53:30 +01:00
|
|
|
$participant->markUpToDate($latest_transaction);
|
2013-01-25 02:23:05 +01:00
|
|
|
unset($write_guard);
|
|
|
|
|
|
|
|
$header = $this->renderHeaderPaneContent();
|
|
|
|
$messages = $this->renderMessagePaneContent();
|
|
|
|
$widgets = $this->renderWidgetPaneContent();
|
|
|
|
$content = $header + $widgets + $messages;
|
|
|
|
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($content);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderHeaderPaneContent() {
|
|
|
|
require_celerity_resource('conpherence-header-pane-css');
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$conpherence = $this->getConpherence();
|
2013-02-06 23:03:52 +01:00
|
|
|
$display_data = $conpherence->getDisplayData(
|
|
|
|
$user,
|
|
|
|
ConpherenceImageData::SIZE_HEAD
|
|
|
|
);
|
2013-01-25 02:23:05 +01:00
|
|
|
$edit_href = $this->getApplicationURI('update/'.$conpherence->getID().'/');
|
2013-02-06 23:03:52 +01:00
|
|
|
$class_mod = $display_data['image_class'];
|
2013-01-25 02:23:05 +01:00
|
|
|
|
|
|
|
$header =
|
2013-02-06 23:03:52 +01:00
|
|
|
phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'upload-photo'
|
|
|
|
),
|
|
|
|
pht('Drop photo here to change this Conpherence photo.')
|
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
javelin_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'class' => 'edit',
|
|
|
|
'href' => $edit_href,
|
2013-02-06 23:03:52 +01:00
|
|
|
'sigil' => 'workflow edit-action',
|
2013-01-25 02:23:05 +01:00
|
|
|
),
|
2013-01-26 00:48:04 +01:00
|
|
|
''
|
2013-01-25 02:23:05 +01:00
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
2013-02-06 23:03:52 +01:00
|
|
|
'class' => $class_mod.'header-image',
|
2013-01-25 02:23:05 +01:00
|
|
|
'style' => 'background-image: url('.$display_data['image'].');'
|
|
|
|
),
|
|
|
|
''
|
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
2013-02-06 23:03:52 +01:00
|
|
|
'class' => $class_mod.'title',
|
2013-01-25 02:23:05 +01:00
|
|
|
),
|
2013-02-05 04:01:46 +01:00
|
|
|
$display_data['title']
|
2013-01-25 02:23:05 +01:00
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
2013-02-06 23:03:52 +01:00
|
|
|
'class' => $class_mod.'subtitle',
|
2013-01-25 02:23:05 +01:00
|
|
|
),
|
2013-02-05 04:01:46 +01:00
|
|
|
$display_data['subtitle']
|
2013-01-25 02:23:05 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return array('header' => $header);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderMessagePaneContent() {
|
|
|
|
require_celerity_resource('conpherence-message-pane-css');
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$conpherence = $this->getConpherence();
|
|
|
|
$handles = $conpherence->getHandles();
|
|
|
|
$rendered_transactions = array();
|
|
|
|
|
|
|
|
$transactions = $conpherence->getTransactions();
|
2013-02-07 02:53:51 +01:00
|
|
|
|
|
|
|
$engine = id(new PhabricatorMarkupEngine())
|
|
|
|
->setViewer($user);
|
|
|
|
foreach ($transactions as $transaction) {
|
|
|
|
if ($transaction->getComment()) {
|
|
|
|
$engine->addObject(
|
|
|
|
$transaction->getComment(),
|
|
|
|
PhabricatorApplicationTransactionComment::MARKUP_FIELD_COMMENT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$engine->process();
|
|
|
|
|
2013-01-25 02:23:05 +01:00
|
|
|
foreach ($transactions as $transaction) {
|
2013-01-25 22:04:40 +01:00
|
|
|
if ($transaction->shouldHide()) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-25 02:23:05 +01:00
|
|
|
$rendered_transactions[] = id(new ConpherenceTransactionView())
|
|
|
|
->setUser($user)
|
|
|
|
->setConpherenceTransaction($transaction)
|
|
|
|
->setHandles($handles)
|
2013-02-07 02:53:51 +01:00
|
|
|
->setMarkupEngine($engine)
|
2013-01-25 02:23:05 +01:00
|
|
|
->render();
|
|
|
|
}
|
2013-02-13 23:08:57 +01:00
|
|
|
$transactions = implode(' ', $rendered_transactions);
|
2013-01-25 02:23:05 +01:00
|
|
|
|
|
|
|
$form =
|
|
|
|
id(new AphrontFormView())
|
2013-01-30 01:53:57 +01:00
|
|
|
->setWorkflow(true)
|
2013-01-25 02:23:05 +01:00
|
|
|
->setAction($this->getApplicationURI('update/'.$conpherence->getID().'/'))
|
|
|
|
->setFlexible(true)
|
|
|
|
->setUser($user)
|
|
|
|
->addHiddenInput('action', 'message')
|
|
|
|
->appendChild(
|
|
|
|
id(new PhabricatorRemarkupControl())
|
|
|
|
->setUser($user)
|
|
|
|
->setName('text')
|
|
|
|
)
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue(pht('Pontificate'))
|
|
|
|
)->render();
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'messages' => $transactions,
|
|
|
|
'form' => $form
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderWidgetPaneContent() {
|
|
|
|
require_celerity_resource('conpherence-widget-pane-css');
|
2013-02-05 04:01:46 +01:00
|
|
|
require_celerity_resource('sprite-conpher-css');
|
2013-01-25 02:23:05 +01:00
|
|
|
Javelin::initBehavior(
|
|
|
|
'conpherence-widget-pane',
|
|
|
|
array(
|
|
|
|
'widgetRegistery' => array(
|
|
|
|
'widgets-files' => 1,
|
|
|
|
'widgets-tasks' => 1,
|
|
|
|
'widgets-calendar' => 1,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$conpherence = $this->getConpherence();
|
|
|
|
|
2013-02-05 04:01:46 +01:00
|
|
|
$widgets = phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'widgets-header'
|
|
|
|
),
|
2013-01-25 21:57:17 +01:00
|
|
|
array(
|
|
|
|
javelin_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'sigil' => 'conpherence-change-widget',
|
2013-02-05 04:01:46 +01:00
|
|
|
'meta' => array(
|
|
|
|
'widget' => 'widgets-files',
|
|
|
|
'toggleClass' => 'conpher_files_on'
|
|
|
|
),
|
|
|
|
'id' => 'widgets-files-toggle',
|
|
|
|
'class' => 'sprite-conpher conpher_files_off first-icon'
|
2013-01-25 21:57:17 +01:00
|
|
|
),
|
2013-02-05 04:01:46 +01:00
|
|
|
''
|
2013-01-25 02:23:05 +01:00
|
|
|
),
|
2013-01-25 21:57:17 +01:00
|
|
|
javelin_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'sigil' => 'conpherence-change-widget',
|
2013-02-05 04:01:46 +01:00
|
|
|
'meta' => array(
|
|
|
|
'widget' => 'widgets-tasks',
|
|
|
|
'toggleClass' => 'conpher_list_on'
|
|
|
|
),
|
|
|
|
'id' => 'widgets-tasks-toggle',
|
|
|
|
'class' => 'sprite-conpher conpher_list_off conpher_list_on',
|
2013-01-25 21:57:17 +01:00
|
|
|
),
|
2013-02-05 04:01:46 +01:00
|
|
|
''
|
2013-01-25 02:23:05 +01:00
|
|
|
),
|
2013-01-25 21:57:17 +01:00
|
|
|
javelin_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'sigil' => 'conpherence-change-widget',
|
2013-02-05 04:01:46 +01:00
|
|
|
'meta' => array(
|
|
|
|
'widget' => 'widgets-calendar',
|
|
|
|
'toggleClass' => 'conpher_calendar_on'
|
|
|
|
),
|
|
|
|
'id' => 'widgets-calendar-toggle',
|
|
|
|
'class' => 'sprite-conpher conpher_calendar_off',
|
2013-01-25 21:57:17 +01:00
|
|
|
),
|
2013-02-05 04:01:46 +01:00
|
|
|
''
|
|
|
|
)
|
2013-01-25 02:23:05 +01:00
|
|
|
)
|
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'widgets-body',
|
|
|
|
'id' => 'widgets-files',
|
|
|
|
'style' => 'display: none;'
|
|
|
|
),
|
|
|
|
$this->renderFilesWidgetPaneContent()
|
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'widgets-body',
|
|
|
|
'id' => 'widgets-tasks',
|
|
|
|
),
|
|
|
|
$this->renderTaskWidgetPaneContent()
|
|
|
|
).
|
2013-02-05 04:01:46 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'widgets-body',
|
|
|
|
'id' => 'widgets-calendar',
|
|
|
|
'style' => 'display: none;'
|
|
|
|
),
|
|
|
|
$this->renderCalendarWidgetPaneContent()
|
|
|
|
);
|
|
|
|
|
|
|
|
return array('widgets' => $widgets);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderFilesWidgetPaneContent() {
|
|
|
|
$conpherence = $this->getConpherence();
|
|
|
|
$widget_data = $conpherence->getWidgetData();
|
|
|
|
$files = $widget_data['files'];
|
|
|
|
|
|
|
|
$table_data = array();
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$thumb = $file->getThumb60x45URI();
|
|
|
|
$table_data[] = array(
|
2013-01-29 03:41:43 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $thumb
|
|
|
|
),
|
2013-01-29 03:41:43 +01:00
|
|
|
''),
|
2013-02-13 23:08:57 +01:00
|
|
|
phutil_escape_html($file->getName()),
|
2013-01-25 02:23:05 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
$header = id(new PhabricatorHeaderView())
|
|
|
|
->setHeader(pht('Attached Files'));
|
|
|
|
$table = id(new AphrontTableView($table_data))
|
|
|
|
->setNoDataString(pht('No files attached to conpherence.'))
|
|
|
|
->setHeaders(array('', pht('Name')))
|
|
|
|
->setColumnClasses(array('', 'wide'));
|
2013-02-13 23:08:57 +01:00
|
|
|
return new PhutilSafeHTML($header->render() . $table->render());
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function renderTaskWidgetPaneContent() {
|
|
|
|
$conpherence = $this->getConpherence();
|
|
|
|
$widget_data = $conpherence->getWidgetData();
|
|
|
|
$tasks = $widget_data['tasks'];
|
|
|
|
$priority_map = ManiphestTaskPriority::getTaskPriorityMap();
|
|
|
|
$handles = $conpherence->getHandles();
|
|
|
|
$content = array();
|
|
|
|
foreach ($tasks as $owner_phid => $actual_tasks) {
|
|
|
|
$handle = $handles[$owner_phid];
|
|
|
|
$content[] = id(new PhabricatorHeaderView())
|
|
|
|
->setHeader($handle->getName())
|
|
|
|
->render();
|
|
|
|
$actual_tasks = msort($actual_tasks, 'getPriority');
|
|
|
|
$actual_tasks = array_reverse($actual_tasks);
|
|
|
|
$data = array();
|
|
|
|
foreach ($actual_tasks as $task) {
|
|
|
|
$data[] = array(
|
|
|
|
idx($priority_map, $task->getPriority(), pht('???')),
|
2013-01-29 03:41:43 +01:00
|
|
|
phutil_tag(
|
2013-01-25 02:23:05 +01:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => '/T'.$task->getID()
|
|
|
|
),
|
2013-02-05 04:01:46 +01:00
|
|
|
$task->getTitle()
|
2013-01-25 02:23:05 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$table = id(new AphrontTableView($data))
|
|
|
|
->setNoDataString(pht('No open tasks.'))
|
|
|
|
->setHeaders(array(pht('Pri'), pht('Title')))
|
|
|
|
->setColumnClasses(array('', 'wide'));
|
|
|
|
$content[] = $table->render();
|
|
|
|
}
|
2013-02-13 23:08:57 +01:00
|
|
|
return new PhutilSafeHTML(implode('', $content));
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function renderCalendarWidgetPaneContent() {
|
2013-02-05 04:01:46 +01:00
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
|
|
|
|
$conpherence = $this->getConpherence();
|
|
|
|
$widget_data = $conpherence->getWidgetData();
|
|
|
|
$statuses = $widget_data['statuses'];
|
|
|
|
$handles = $conpherence->getHandles();
|
|
|
|
$content = array();
|
|
|
|
$timestamps = $this->getCalendarWidgetWeekTimestamps();
|
|
|
|
$one_day = 24 * 60 * 60;
|
|
|
|
foreach ($timestamps as $time => $day) {
|
|
|
|
// build a header for the new day
|
|
|
|
$content[] = id(new PhabricatorHeaderView())
|
|
|
|
->setHeader($day->format('l'))
|
|
|
|
->render();
|
|
|
|
|
|
|
|
$day->setTime(0, 0, 0);
|
|
|
|
$epoch_start = $day->format('U');
|
|
|
|
$day->modify('+1 day');
|
|
|
|
$epoch_end = $day->format('U');
|
|
|
|
|
|
|
|
// keep looking through statuses where we last left off
|
|
|
|
foreach ($statuses as $status) {
|
|
|
|
if ($status->getDateFrom() >= $epoch_end) {
|
|
|
|
// This list is sorted, so we can stop looking.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ($status->getDateFrom() < $epoch_end &&
|
|
|
|
$status->getDateTo() > $epoch_start) {
|
|
|
|
$timespan = $status->getDateTo() - $status->getDateFrom();
|
|
|
|
if ($timespan > $one_day) {
|
|
|
|
$time_str = 'm/d';
|
|
|
|
} else {
|
|
|
|
$time_str = 'h:i A';
|
|
|
|
}
|
|
|
|
$epoch_range = phabricator_format_local_time(
|
|
|
|
$status->getDateFrom(),
|
|
|
|
$user,
|
|
|
|
$time_str
|
|
|
|
) . ' - ' . phabricator_format_local_time(
|
|
|
|
$status->getDateTo(),
|
|
|
|
$user,
|
|
|
|
$time_str
|
|
|
|
);
|
|
|
|
|
|
|
|
$content[] = phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'user-status '.$status->getTextStatus(),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'epoch-range'
|
|
|
|
),
|
|
|
|
$epoch_range
|
|
|
|
),
|
|
|
|
phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'icon',
|
|
|
|
),
|
|
|
|
''
|
|
|
|
),
|
|
|
|
phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'description'
|
|
|
|
),
|
|
|
|
$status->getTerseSummary($user)
|
|
|
|
),
|
|
|
|
phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'participant'
|
|
|
|
),
|
|
|
|
$handles[$status->getUserPHID()]->getName()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:08:57 +01:00
|
|
|
return new PhutilSafeHTML(implode('', $content));
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getCalendarWidgetWeekTimestamps() {
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$timezone = new DateTimeZone($user->getTimezoneIdentifier());
|
|
|
|
|
|
|
|
$timestamps = array();
|
|
|
|
for ($day = 0; $day < 7; $day++) {
|
|
|
|
$timestamps[] = new DateTime(
|
|
|
|
sprintf('today +%d days', $day),
|
|
|
|
$timezone
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $timestamps;
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|