Hash event UID to make sure it's not too long for PushProvider
notifications Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
8816823fb3
commit
5d8ed5c144
2 changed files with 5 additions and 2 deletions
|
@ -89,6 +89,9 @@ class PushProvider extends AbstractProvider {
|
|||
|
||||
$eventDetails = $this->extractEventDetails($vevent);
|
||||
$eventDetails['calendar_displayname'] = $calendarDisplayName;
|
||||
$eventUUID = (string) $vevent->UID;
|
||||
// Empty Notification ObjectId will be catched by OC\Notification\Notification
|
||||
$eventUUIDHash = $eventUUID ? hash('sha256', $eventUUID, false) : '';
|
||||
|
||||
foreach($users as $user) {
|
||||
/** @var INotification $notification */
|
||||
|
@ -96,7 +99,7 @@ class PushProvider extends AbstractProvider {
|
|||
$notification->setApp(Application::APP_ID)
|
||||
->setUser($user->getUID())
|
||||
->setDateTime($this->timeFactory->getDateTime())
|
||||
->setObject(Application::APP_ID, (string) $vevent->UID)
|
||||
->setObject(Application::APP_ID, $eventUUIDHash)
|
||||
->setSubject('calendar_reminder', [
|
||||
'title' => $eventDetails['title'],
|
||||
'start_atom' => $eventDetails['start_atom']
|
||||
|
|
|
@ -184,7 +184,7 @@ class PushProviderTest extends AbstractNotificationProviderTest {
|
|||
|
||||
$notification->expects($this->once())
|
||||
->method('setObject')
|
||||
->with('dav', 'uid1234')
|
||||
->with('dav', hash('sha256', 'uid1234', false))
|
||||
->willReturn($notification);
|
||||
|
||||
$notification->expects($this->once())
|
||||
|
|
Loading…
Reference in a new issue