Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function sendBatch(array $notifications)
 {
     $request = new CreateMessageRequest();
     foreach ($notifications as $notificationArray) {
         $content = isset($notificationArray['content']) ? $notificationArray['content'] : '';
         $data = isset($notificationArray['data']) ? $notificationArray['data'] : [];
         $devices = isset($notificationArray['devices']) ? $notificationArray['devices'] : [];
         if ($content) {
             $notification = $this->createNotification($content, $data, $devices);
             $request->addNotification($notification);
         }
     }
     return $this->sendPush($request);
 }
Exemplo n.º 2
0
 /**
  * {@inheritDoc}
  */
 public function createMessage(CreateMessageRequest $createMessageRequest)
 {
     // If both the 'application' and 'applicationsGroup' attribute are not set in the request we try to get a
     // default one from the Pushwoosh client
     if ($createMessageRequest->getApplication() === null && $createMessageRequest->getApplicationsGroup() == null) {
         // Setting both 'application' and 'applicationsGroup' is forbidden
         if (!isset($this->application) && !isset($this->applicationsGroup)) {
             throw new PushwooshException('None of the  \'application\' or \'applicationsGroup\' properties are set !');
             // Setting both the 'application' and 'applicationsGroup' parameters is an error here
         } elseif (isset($this->application) && isset($this->applicationsGroup)) {
             throw new PushwooshException('Both \'application\' and \'applicationsGroup\' properties are set !');
             // Sets the 'application' attribute
         } elseif (isset($this->application)) {
             $createMessageRequest->setApplication($this->application);
             // Sets the 'applicationsGroup' attribute
         } elseif (isset($this->applicationsGroup)) {
             $createMessageRequest->setApplicationsGroup($this->applicationsGroup);
         }
     }
     // If the 'auth' parameter is not set in the request we try to get it from the Pushwoosh client
     if ($createMessageRequest->getAuth() === null) {
         // The 'auth' parameter is expected here
         if (!isset($this->auth)) {
             throw new PushwooshException('The \'auth\' parameter is not set !');
             // Use the 'auth' parameter defined in the Pushwoosh client
         } else {
             $createMessageRequest->setAuth($this->auth);
         }
     }
     $response = $this->cURLClient->pushwooshCall('createMessage', $createMessageRequest->jsonSerialize());
     return CreateMessageResponse::create($response);
 }
Exemplo n.º 3
0
 /**
  * @param mixed $messageText
  * @param array $devices
  * @return CreateMessageRequest
  */
 protected function constructorMessage($messageText, array $devices)
 {
     $message = CreateMessageRequest::create();
     $notification = Notification::create()->setContent($messageText);
     foreach ($devices as $device) {
         $notification->addDevice($device);
     }
     $message->addNotification($notification);
     return $message;
 }
 /**
  * Test method for the <tt>toJSON()</tt> function.
  */
 public function testToJSON()
 {
     $createMessageRequest = new CreateMessageRequest();
     // Test without the 'application' and 'applicationsGroup' parameters
     try {
         $createMessageRequest->toJSON();
         $this->fail('Must have thrown a PushwooshException !');
     } catch (PushwooshException $pe) {
         // Expected
     }
     // Test with both the 'application' and 'applicationsGroup parameters set
     $createMessageRequest->setApplication('XXXX-XXXX');
     $createMessageRequest->setApplicationsGroup('XXXX-XXXX');
     try {
         $createMessageRequest->toJSON();
         $this->fail('Must have thrown a PushwooshException !');
     } catch (PushwooshException $pe) {
         // Expected
     }
     // Test without the 'auth' parameter set
     $createMessageRequest->setApplicationsGroup(null);
     try {
         $createMessageRequest->toJSON();
         $this->fail('Must have thrown a PushwooshException !');
     } catch (PushwooshException $pe) {
         // Expected
     }
     // Test with the 'auth' and 'application' parameters set and no notification
     $createMessageRequest->setAuth('XXXX');
     $json = $createMessageRequest->toJSON();
     $this->assertCount(4, $json);
     $this->assertTrue(array_key_exists('application', $json));
     $this->assertTrue(array_key_exists('applicationsGroup', $json));
     $this->assertTrue(array_key_exists('auth', $json));
     $this->assertTrue(array_key_exists('notifications', $json));
     $this->assertEquals('XXXX-XXXX', $json['application']);
     $this->assertNull($json['applicationsGroup']);
     $this->assertEquals('XXXX', $json['auth']);
     $this->assertCount(0, $json['notifications']);
     // Test with one notificiation with only a 'content' field
     $notification = Notification::create();
     $notification->setContent('CONTENT');
     $createMessageRequest->addNotification($notification);
     $json = $createMessageRequest->toJSON();
     $this->assertCount(4, $json);
     $this->assertTrue(array_key_exists('application', $json));
     $this->assertTrue(array_key_exists('applicationsGroup', $json));
     $this->assertTrue(array_key_exists('auth', $json));
     $this->assertTrue(array_key_exists('notifications', $json));
     $this->assertEquals('XXXX-XXXX', $json['application']);
     $this->assertNull($json['applicationsGroup']);
     $this->assertEquals('XXXX', $json['auth']);
     $this->assertCount(1, $json['notifications']);
     $this->assertCount(3, $json['notifications'][0]);
     $this->assertTrue(array_key_exists('send_date', $json['notifications'][0]));
     $this->assertTrue($json['notifications'][0]['ignore_user_timezone']);
     $this->assertEquals('CONTENT', $json['notifications'][0]['content']);
     // Test with one notification having additional data
     $notification->setData(array('DATA_PARAMETER_1' => 'DATA_PARAMETER_1_VALUE', 'DATA_PARAMETER_2' => 'DATA_PARAMETER_2_VALUE', 'DATA_PARAMETER_3' => 'DATA_PARAMETER_3_VALUE'));
     $json = $createMessageRequest->toJSON();
     $this->assertCount(4, $json);
     $this->assertTrue(array_key_exists('application', $json));
     $this->assertTrue(array_key_exists('applicationsGroup', $json));
     $this->assertTrue(array_key_exists('auth', $json));
     $this->assertTrue(array_key_exists('notifications', $json));
     $this->assertEquals('XXXX-XXXX', $json['application']);
     $this->assertNull($json['applicationsGroup']);
     $this->assertEquals('XXXX', $json['auth']);
     $this->assertCount(1, $json['notifications']);
     $this->assertCount(4, $json['notifications'][0]);
     $this->assertTrue(array_key_exists('send_date', $json['notifications'][0]));
     $this->assertTrue($json['notifications'][0]['ignore_user_timezone']);
     $this->assertEquals('CONTENT', $json['notifications'][0]['content']);
     $this->assertCount(3, $json['notifications'][0]['data']);
     $this->assertEquals('DATA_PARAMETER_1_VALUE', $json['notifications'][0]['data']['DATA_PARAMETER_1']);
     $this->assertEquals('DATA_PARAMETER_2_VALUE', $json['notifications'][0]['data']['DATA_PARAMETER_2']);
     $this->assertEquals('DATA_PARAMETER_3_VALUE', $json['notifications'][0]['data']['DATA_PARAMETER_3']);
     // Test with one notification hacing additional data and devices
     $notification->addDevice('DEVICE_TOKEN_1');
     $notification->addDevice('DEVICE_TOKEN_2');
     $notification->addDevice('DEVICE_TOKEN_3');
     $json = $createMessageRequest->toJSON();
     $this->assertCount(4, $json);
     $this->assertTrue(array_key_exists('application', $json));
     $this->assertTrue(array_key_exists('applicationsGroup', $json));
     $this->assertTrue(array_key_exists('auth', $json));
     $this->assertTrue(array_key_exists('notifications', $json));
     $this->assertEquals('XXXX-XXXX', $json['application']);
     $this->assertNull($json['applicationsGroup']);
     $this->assertEquals('XXXX', $json['auth']);
     $this->assertCount(1, $json['notifications']);
     $this->assertCount(5, $json['notifications'][0]);
     $this->assertTrue(array_key_exists('send_date', $json['notifications'][0]));
     $this->assertTrue($json['notifications'][0]['ignore_user_timezone']);
     $this->assertEquals('CONTENT', $json['notifications'][0]['content']);
     $this->assertCount(3, $json['notifications'][0]['data']);
     $this->assertEquals('DATA_PARAMETER_1_VALUE', $json['notifications'][0]['data']['DATA_PARAMETER_1']);
     $this->assertEquals('DATA_PARAMETER_2_VALUE', $json['notifications'][0]['data']['DATA_PARAMETER_2']);
     $this->assertEquals('DATA_PARAMETER_3_VALUE', $json['notifications'][0]['data']['DATA_PARAMETER_3']);
     $this->assertCount(3, $json['notifications'][0]['devices']);
     $this->assertEquals('DEVICE_TOKEN_1', $json['notifications'][0]['devices'][0]);
     $this->assertEquals('DEVICE_TOKEN_2', $json['notifications'][0]['devices'][1]);
     $this->assertEquals('DEVICE_TOKEN_3', $json['notifications'][0]['devices'][2]);
 }