get all the values from the matrix

This commit is contained in:
Caluera 2021-10-10 14:26:31 +02:00
parent 8243b695ea
commit d17e40e56b
1 changed files with 3 additions and 5 deletions

View File

@ -81,6 +81,7 @@ class TicketService {
} }
/** /**
* matrixTicketContent has all the syncronized data
* @param MatrixTicket $ticket the database object. * @param MatrixTicket $ticket the database object.
* @return array a JSON serializable representation of the resolved ticket, for the frontend. * @return array a JSON serializable representation of the resolved ticket, for the frontend.
*/ */
@ -92,11 +93,8 @@ class TicketService {
$title = array_get($matrixTicketContent, "title", "Untitled"); $title = array_get($matrixTicketContent, "title", "Untitled");
$description = array_get($matrixTicketContent, "description", ""); $description = array_get($matrixTicketContent, "description", "");
$lastModified = $this->matrix->getLastEventDate($ticket->getMatrixRoom()); $lastModified = $this->matrix->getLastEventDate($ticket->getMatrixRoom());
$matrixHelperUser = $ticket->getMatrixHelperUser(); $matrixHelperUserName = array_get($matrixTicketContent, "matrixHelperUserName", "nicht zugewiesen");
$matrixHelperUserName = $matrixHelperUser ? "Helfer Name" : "nicht zugewiesen"; $expirationDate = array_get($matrixTicketContent, "expiration date", "");
//FIXME : set $maxHelpTime somewhere as an option or at least available for other functions
$maxHelpTime = 7 * 24 * 60 * 60 * 1000;
$expirationDate = $lastModified + $maxHelpTime;
return array( return array(
'ticketId' => $ticketId, 'ticketId' => $ticketId,
'status' => $ticket->getStatus(), 'status' => $ticket->getStatus(),