/** * Return a compiled message to display. * * @param $node * The node object. * * @return array * An array containing the elements of the message to be rendered. */ protected function getMessage($node) { $status = $node->simplenews_issue->status; $sent_count = (int) $node->simplenews_issue->sent_count; $published = $node->isPublished(); $subscriber_count = $node->simplenews_issue->status == SIMPLENEWS_STATUS_SEND_READY ? $node->simplenews_issue->subscribers : simplenews_count_subscriptions($node->simplenews_issue->target_id); $message = array(); $message['count'] = $subscriber_count; $message['uri'] = NULL; $images = array(SIMPLENEWS_STATUS_SEND_PENDING => 'images/sn-cron.png', SIMPLENEWS_STATUS_SEND_READY => 'images/sn-sent.png'); if ($status == SIMPLENEWS_STATUS_SEND_READY) { $message['description'] = t('Newsletter issue sent to @sent_count subscribers.', ['@sent_count' => $sent_count]); $message['uri'] = drupal_get_path('module', 'simplenews') . '/' . $images[$status]; } elseif ($status == SIMPLENEWS_STATUS_SEND_PENDING) { $message['description'] = t('Newsletter issue is pending, @sent_count mails sent out of @count.', array('@sent_count' => $sent_count, '@count' => $subscriber_count)); $message['uri'] = drupal_get_path('module', 'simplenews') . '/' . $images[$status]; } elseif ($status == SIMPLENEWS_STATUS_SEND_NOT) { $message['description'] = t('Newsletter issue will be sent to @count subscribers.', array('@count' => $subscriber_count)); } if (!$published) { $message['description'] = t('Newsletter issue will be sent to @count subscribers on publish.', array('@count' => $subscriber_count)); } return $message; }
/** * {@inheritdoc} */ public function addFromEntity(NodeInterface $node) { // Loop for handling the multi-Newsletter options. foreach ($node->simplenews_issue as $simplenews_issue) { $newsletter = $simplenews_issue->entity; $handler = $simplenews_issue->handler; $handler_settings = $simplenews_issue->handler_settings; $recipient_handler = simplenews_get_recipient_handler($newsletter, $handler, $handler_settings); // To send the newsletter, the node id and target email addresses. // are stored in the spool. // Only subscribed recipients are stored in the spool (status = 1). $select = $recipient_handler->buildRecipientQuery(); $select->addExpression('\'node\'', 'entity_type'); $select->addExpression($node->id(), 'entity_id'); $select->addExpression(SIMPLENEWS_SUBSCRIPTION_STATUS_SUBSCRIBED, 'status'); $select->addExpression(REQUEST_TIME, 'timestamp'); $select->condition('s.id', db_select('simplenews_mail_spool', 'r')->fields('r', array('snid'))->condition('entity_id', $node->id(), '='), 'NOT IN'); $simplenews_issue->subscribers = simplenews_count_subscriptions($simplenews_issue->target_id); $this->connection->insert('simplenews_mail_spool')->from($select)->execute(); // Update simplenews newsletter status to send pending. $simplenews_issue->status = SIMPLENEWS_STATUS_SEND_PENDING; // Notify other modules that a newsletter was just spooled. $this->moduleHandler->invokeAll('simplenews_spooled', array($node)); } }
/** * Test newsletter subscription management. * * Steps performed: */ function testSubscriptionManagement() { $admin_user = $this->drupalCreateUser(array('administer newsletters', 'administer simplenews settings', 'administer simplenews subscriptions', 'administer users')); $this->drupalLogin($admin_user); // Create a newsletter. $newsletter_name = Unicode::strtolower($this->randomMachineName()); $edit = array('name' => $newsletter_name, 'id' => $newsletter_name); $this->drupalPostForm('admin/config/services/simplenews/add', $edit, t('Save')); // Add a number of users to each newsletter separately and then add another // bunch to both. $subscribers = array(); $groups = array(); $newsletters = simplenews_newsletter_get_all(); foreach ($newsletters as $newsletter) { $groups[$newsletter->id()] = array($newsletter->id()); } $groups['all'] = array_keys($groups); $subscribers_flat = array(); foreach ($groups as $key => $group) { for ($i = 0; $i < 5; $i++) { $mail = $this->randomEmail(); $subscribers[$key][$mail] = $mail; $subscribers_flat[$mail] = $mail; } } // Create a user and assign him one of the mail addresses of the all group. $user = $this->drupalCreateUser(array('subscribe to newsletters')); // Make sure that user_save() does not update the user object, as it will // override the pass_raw property which we'll need to log this user in // later on. $user_mail = current($subscribers['all']); $user->setEmail($user_mail); $user->save(); $delimiters = array(',', ' ', "\n"); // Visit subscribers by clicking menu tab in people. $this->drupalGet('admin/people'); $this->clickLink('Subscribers'); $i = 0; foreach ($groups as $key => $group) { $this->clickLink(t('Mass subscribe')); $edit = array('emails' => implode($delimiters[$i++], $subscribers[$key])); foreach ($group as $newsletter_id) { $edit['newsletters[' . $newsletter_id . ']'] = TRUE; } $this->drupalPostForm(NULL, $edit, t('Subscribe')); } // The user to which the mail was assigned should be listed too. $this->assertText($user->label()); // Verify that all addresses are displayed in the table. $rows = $this->xpath('//tbody/tr'); $mail_addresses = array(); for ($i = 0; $i < count($subscribers_flat); $i++) { $mail_addresses[] = trim((string) $rows[$i]->td[0]); } $this->assertEqual(15, count($mail_addresses)); foreach ($mail_addresses as $mail_address) { $mail_address = (string) $mail_address; $this->assertTrue(isset($subscribers_flat[$mail_address])); unset($subscribers_flat[$mail_address]); } // All entries of the array should be removed by now. $this->assertTrue(empty($subscribers_flat)); reset($groups); $first = 'default'; $first_mail = array_rand($subscribers[$first]); $all_mail = array_rand($subscribers['all']); // Limit list to subscribers of the first newsletter only. // Build a flat list of the subscribers of this list. $subscribers_flat = array_merge($subscribers[$first], $subscribers['all']); $this->drupalGet('admin/people/simplenews', array('query' => array('subscriptions_target_id' => $first))); // Verify that all addresses are displayed in the table. $rows = $this->xpath('//tbody/tr'); $mail_addresses = array(); for ($i = 0; $i < count($subscribers_flat); $i++) { $mail_addresses[] = trim((string) $rows[$i]->td[0]); } $this->assertEqual(10, count($mail_addresses)); foreach ($mail_addresses as $mail_address) { $mail_address = (string) $mail_address; $this->assertTrue(isset($subscribers_flat[$mail_address])); unset($subscribers_flat[$mail_address]); } // All entries of the array should be removed by now. $this->assertTrue(empty($subscribers_flat)); // Filter a single mail address, the one assigned to a user. $edit = array('mail' => Unicode::substr(current($subscribers['all']), 0, 4)); $this->drupalGet('admin/people/simplenews', array('query' => array('mail' => $edit['mail']))); $rows = $this->xpath('//tbody/tr'); $this->assertEqual(1, count($rows)); $this->assertEqual(current($subscribers['all']), trim((string) $rows[0]->td[0])); $this->assertEqual($user->label(), trim((string) $rows[0]->td[1]->span)); // Reset the filter. $this->drupalGet('admin/people/simplenews'); // Test mass-unsubscribe, unsubscribe one from the first group and one from // the all group, but only from the first newsletter. unset($subscribers[$first][$first_mail]); $edit = array('emails' => $first_mail . ', ' . $all_mail, 'newsletters[' . $first . ']' => TRUE); $this->clickLink(t('Mass unsubscribe')); $this->drupalPostForm(NULL, $edit, t('Unsubscribe')); // The all mail is still displayed because it's still subscribed to the // second newsletter. Reload the page to get rid of the confirmation // message. $this->drupalGet('admin/people/simplenews'); $this->assertNoText($first_mail); $this->assertText($all_mail); // Limit to first newsletter, the all mail shouldn't be shown anymore. $this->drupalGet('admin/people/simplenews', array('query' => array('subscriptions_target_id' => $first))); $this->assertNoText($first_mail); $this->assertNoText($all_mail); // Check exporting. $this->clickLink(t('Export')); $this->drupalPostForm(NULL, array('newsletters[' . $first . ']' => TRUE), t('Export')); $export_field = $this->xpath($this->constructFieldXpath('name', 'emails')); $exported_mails = (string) $export_field[0]; foreach ($subscribers[$first] as $mail) { $this->assertTrue(strpos($exported_mails, $mail) !== FALSE, t('Mail address exported correctly.')); } foreach ($subscribers['all'] as $mail) { if ($mail != $all_mail) { $this->assertTrue(strpos($exported_mails, $mail) !== FALSE, t('Mail address exported correctly.')); } else { $this->assertFALSE(strpos($exported_mails, $mail) !== FALSE, t('Unsubscribed mail address not exported.')); } } // Only export unsubscribed mail addresses. $edit = array('subscribed[subscribed]' => FALSE, 'subscribed[unsubscribed]' => TRUE, 'newsletters[' . $first . ']' => TRUE); $this->drupalPostForm(NULL, $edit, t('Export')); $export_field = $this->xpath($this->constructFieldXpath('name', 'emails')); $exported_mails = (string) $export_field[0]; $exported_mails = explode(', ', $exported_mails); $this->assertEqual(2, count($exported_mails)); $this->assertTrue(in_array($all_mail, $exported_mails)); $this->assertTrue(in_array($first_mail, $exported_mails)); /** @var \Drupal\simplenews\Subscription\SubscriptionManagerInterface $subscription_manager */ $subscription_manager = \Drupal::service('simplenews.subscription_manager'); // Make sure there are unconfirmed subscriptions. $unconfirmed = array(); $unconfirmed[] = $this->randomEmail(); $unconfirmed[] = $this->randomEmail(); foreach ($unconfirmed as $mail) { $subscription_manager->subscribe($mail, $first, TRUE); } // Only export unconfirmed mail addresses. $edit = array('subscribed[subscribed]' => FALSE, 'subscribed[unconfirmed]' => TRUE, 'subscribed[unsubscribed]' => FALSE, 'newsletters[' . $first . ']' => TRUE); $this->drupalPostForm(NULL, $edit, t('Export')); $export_field = $this->xpath($this->constructFieldXpath('name', 'emails')); $exported_mails = (string) $export_field[0]; $exported_mails = explode(', ', $exported_mails); $this->assertEqual(2, count($exported_mails)); $this->assertTrue(in_array($unconfirmed[0], $exported_mails)); $this->assertTrue(in_array($unconfirmed[1], $exported_mails)); // Make sure the user is subscribed to the first newsletter_id. $subscription_manager->subscribe($user_mail, $first, FALSE); $before_count = simplenews_count_subscriptions($first); // Block the user. $user->block(); $user->save(); $this->drupalGet('admin/people/simplenews'); // Verify updated subscriptions count. drupal_static_reset('simplenews_count_subscriptions'); $after_count = simplenews_count_subscriptions($first); $this->assertEqual($before_count - 1, $after_count, t('Blocked users are not counted in subscription count.')); // Test mass subscribe with previously unsubscribed users. for ($i = 0; $i < 3; $i++) { $tested_subscribers[] = $this->randomEmail(); } $subscription_manager->subscribe($tested_subscribers[0], $first, FALSE); $subscription_manager->subscribe($tested_subscribers[1], $first, FALSE); $subscription_manager->unsubscribe($tested_subscribers[0], $first, FALSE); $subscription_manager->unsubscribe($tested_subscribers[1], $first, FALSE); $unsubscribed = implode(', ', array_slice($tested_subscribers, 0, 2)); $edit = array('emails' => implode(', ', $tested_subscribers), 'newsletters[' . $first . ']' => TRUE); $this->drupalPostForm('admin/people/simplenews/import', $edit, t('Subscribe')); \Drupal::entityManager()->getStorage('simplenews_subscriber')->resetCache(); $subscription_manager->reset(); $this->assertFalse($subscription_manager->isSubscribed($tested_subscribers[0], $first), t('Subscriber not resubscribed through mass subscription.')); $this->assertFalse($subscription_manager->isSubscribed($tested_subscribers[1], $first), t('Subscriber not resubscribed through mass subscription.')); $this->assertTrue($subscription_manager->isSubscribed($tested_subscribers[2], $first), t('Subscriber subscribed through mass subscription.')); $substitutes = array('@name' => SafeMarkup::checkPlain(simplenews_newsletter_load($first)->label()), '@mail' => $unsubscribed); $this->assertText(t('The following addresses were skipped because they have previously unsubscribed from @name: @mail.', $substitutes)); $this->assertText(t("If you would like to resubscribe them, use the 'Force resubscription' option.")); // Try to mass subscribe without specifying newsletters. $tested_subscribers[2] = $this->randomEmail(); $edit = array('emails' => implode(', ', $tested_subscribers), 'resubscribe' => TRUE); $this->drupalPostForm('admin/people/simplenews/import', $edit, t('Subscribe')); $this->assertText('Subscribe to field is required.'); // Test mass subscribe with previously unsubscribed users and force // resubscription. $tested_subscribers[2] = $this->randomEmail(); $edit = array('emails' => implode(', ', $tested_subscribers), 'newsletters[' . $first . ']' => TRUE, 'resubscribe' => TRUE); $this->drupalPostForm('admin/people/simplenews/import', $edit, t('Subscribe')); $subscription_manager->reset(); \Drupal::entityManager()->getStorage('simplenews_subscriber')->resetCache(); $this->assertTrue($subscription_manager->isSubscribed($tested_subscribers[0], $first, t('Subscriber resubscribed trough mass subscription.'))); $this->assertTrue($subscription_manager->isSubscribed($tested_subscribers[1], $first, t('Subscriber resubscribed trough mass subscription.'))); $this->assertTrue($subscription_manager->isSubscribed($tested_subscribers[2], $first, t('Subscriber subscribed trough mass subscription.'))); // Try to mass unsubscribe without specifying newsletters. $tested_subscribers[2] = $this->randomEmail(); $edit = array('emails' => implode(', ', $tested_subscribers)); $this->drupalPostForm('admin/people/simplenews/unsubscribe', $edit, t('Unsubscribe')); $this->assertText('Unsubscribe from field is required.'); // Create two blocks, to ensure that they are updated/deleted when a // newsletter is deleted. $only_first_block = $this->setupSubscriptionBlock(['newsletters' => [$first]]); $all_block = $this->setupSubscriptionBlock(['newsletters' => array_keys($groups)]); $enabled_newsletters = $all_block->get('settings')['newsletters']; $this->assertTrue(in_array($first, $enabled_newsletters)); // Delete newsletter. \Drupal::entityManager()->getStorage('simplenews_newsletter')->resetCache(); $this->drupalGet('admin/config/services/simplenews/manage/' . $first); $this->clickLink(t('Delete')); $this->drupalPostForm(NULL, array(), t('Delete')); $this->assertText(t('All subscriptions to newsletter @newsletter have been deleted.', array('@newsletter' => $newsletters[$first]->name))); // Verify that all related data has been deleted/updated. $this->assertNull(Newsletter::load($first)); $this->assertNull(Block::load($only_first_block->id())); $all_block = Block::load($all_block->id()); $enabled_newsletters = $all_block->get('settings')['newsletters']; $this->assertFalse(in_array($first, $enabled_newsletters)); // Verify that all subscriptions of that newsletter have been removed. $this->drupalGet('admin/people/simplenews'); foreach ($subscribers[$first] as $mail) { $this->assertNoText($mail); } $this->clickLink(t('Edit'), 1); // Get the subscriber id from the path. $this->assertTrue(preg_match('|admin/people/simplenews/edit/(\\d+)\\?destination|', $this->getUrl(), $matches), 'Subscriber found'); $subscriber = Subscriber::load($matches[1]); $this->assertTitle(t('Edit subscriber @mail', array('@mail' => $subscriber->getMail())) . ' | Drupal'); $this->assertFieldChecked('edit-status'); // Disable account. $edit = array('status' => FALSE); $this->drupalPostForm(NULL, $edit, t('Save')); \Drupal::entityManager()->getStorage('simplenews_subscriber')->resetCache(); $subscription_manager->reset(); $this->assertFalse($subscription_manager->isSubscribed($subscriber->getMail(), $this->getRandomNewsletter()), t('Subscriber is not active')); // Re-enable account. $this->drupalGet('admin/people/simplenews/edit/' . $subscriber->id()); $this->assertTitle(t('Edit subscriber @mail', array('@mail' => $subscriber->getMail())) . ' | Drupal'); $this->assertNoFieldChecked('edit-status'); $edit = array('status' => TRUE); $this->drupalPostForm(NULL, $edit, t('Save')); \Drupal::entityManager()->getStorage('simplenews_subscriber')->resetCache(); $subscription_manager->reset(); $this->assertTrue($subscription_manager->isSubscribed($subscriber->getMail(), $this->getRandomNewsletter()), t('Subscriber is active again.')); // Remove the newsletter. $this->drupalGet('admin/people/simplenews/edit/' . $subscriber->id()); $this->assertTitle(t('Edit subscriber @mail', array('@mail' => $subscriber->getMail())) . ' | Drupal'); \Drupal::entityManager()->getStorage('simplenews_subscriber')->resetCache(); $subscriber = Subscriber::load($subscriber->id()); $nlids = $subscriber->getSubscribedNewsletterIds(); // If the subscriber still has subscribed to newsletter, try to unsubscribe. $newsletter_id = reset($nlids); $edit['subscriptions[' . $newsletter_id . ']'] = FALSE; $this->drupalPostForm(NULL, $edit, t('Save')); \Drupal::entityManager()->getStorage('simplenews_subscriber')->resetCache(); $subscription_manager->reset(); $nlids = $subscriber->getSubscribedNewsletterIds(); $this->assertFalse($subscription_manager->isSubscribed($subscriber->getMail(), reset($nlids)), t('Subscriber not subscribed anymore.')); // @todo Test Admin subscriber edit preferred language $subscription->language // Register a subscriber with an insecure e-mail address through the API // and make sure the address is correctly encoded. $xss_mail = "<script>alert('XSS');</script>"; $subscription_manager->subscribe($xss_mail, $this->getRandomNewsletter(), FALSE); $this->drupalGet('admin/people/simplenews'); $this->assertNoRaw($xss_mail); $this->assertRaw(SafeMarkup::checkPlain($xss_mail)); $xss_subscriber = simplenews_subscriber_load_by_mail($xss_mail); $this->drupalGet('admin/people/simplenews/edit/' . $xss_subscriber->id()); $this->assertNoRaw($xss_mail); $this->assertRaw(SafeMarkup::checkPlain($xss_mail)); // Create a new user for the next test. $new_user = $this->drupalCreateUser(array('subscribe to newsletters')); // Test for saving the subscription for no newsletter. $this->drupalPostForm('user/' . $new_user->id() . '/simplenews', null, t('Save')); $this->assertText('The newsletter subscriptions for user ' . $new_user->getUsername() . ' have been updated.'); // Editing a subscriber with subscription. $edit = array('subscriptions[' . $newsletter_name . ']' => TRUE, 'status' => TRUE, 'mail[0][value]' => '*****@*****.**'); $this->drupalPostForm('admin/people/simplenews/edit/' . $xss_subscriber->id(), $edit, t('Save')); $this->assertText('Subscriber edit@example.com has been updated.'); // Create a second newsletter. $second_newsletter_name = Unicode::strtolower($this->randomMachineName()); $edit2 = array('name' => $second_newsletter_name, 'id' => $second_newsletter_name); $this->drupalPostForm('admin/config/services/simplenews/add', $edit2, t('Save')); // Test for adding a subscriber. $subscribe = array('newsletters[' . $newsletter_name . ']' => TRUE, 'emails' => '*****@*****.**'); $this->drupalPostForm('admin/people/simplenews/import', $subscribe, t('Subscribe')); // The subscriber should appear once in the list. $rows = $this->xpath('//tbody/tr'); $counter = 0; foreach ($rows as $value) { if (trim((string) $value->td[0]) == '*****@*****.**') { $counter++; } } $this->assertEqual(1, $counter); $this->assertText(t('The following addresses were added or updated: @email.', ['@email' => '*****@*****.**'])); $this->assertText(t('The addresses were subscribed to the following newsletters: @newsletter.', ['@newsletter' => $newsletter_name])); // Check exact subscription statuses. $subscriber = simplenews_subscriber_load_by_mail('*****@*****.**'); $this->assertEqual($subscriber->getSubscription($newsletter_name)->get('status')->getValue(), SIMPLENEWS_SUBSCRIPTION_STATUS_SUBSCRIBED); // The second newsletter was not subscribed, so there should be no // subscription record at all. $this->assertFalse($subscriber->getSubscription($second_newsletter_name)); }