Commit bef7c5ce authored by Riccardo Padovani's avatar Riccardo Padovani Committed by Sean McGivern

Send a notification email when a new email address is added

Changelog: added
parent e30cd780
...@@ -206,6 +206,23 @@ module EmailsHelper ...@@ -206,6 +206,23 @@ module EmailsHelper
end end
end end
def new_email_address_added_text(email)
_('A new email address has been added to your GitLab account: %{email}') % { email: email }
end
def remove_email_address_text(format: nil)
url = profile_emails_url
case format
when :html
settings_link_to = generate_link(_('email address settings'), url).html_safe
_("If you want to remove this email address, visit the %{settings_link_to} page.").html_safe % { settings_link_to: settings_link_to }
else
_('If you want to remove this email address, visit %{profile_link}') %
{ profile_link: url }
end
end
def admin_changed_password_text(format: nil) def admin_changed_password_text(format: nil)
url = Gitlab.config.gitlab.url url = Gitlab.config.gitlab.url
......
...@@ -141,6 +141,17 @@ module Emails ...@@ -141,6 +141,17 @@ module Emails
end end
end end
def new_email_address_added_email(user, email)
return unless user
@user = user
@email = email
Gitlab::I18n.with_locale(@user.preferred_language) do
mail(to: @user.notification_email_or_default, subject: subject(_("New email address added")))
end
end
private private
def profile_email_with_layout(to:, subject:, layout: 'mailer') def profile_email_with_layout(to:, subject:, layout: 'mailer')
......
...@@ -181,6 +181,10 @@ class NotifyPreview < ActionMailer::Preview ...@@ -181,6 +181,10 @@ class NotifyPreview < ActionMailer::Preview
Notify.unknown_sign_in_email(user, '127.0.0.1', Time.current).message Notify.unknown_sign_in_email(user, '127.0.0.1', Time.current).message
end end
def new_email_address_added_email
Notify.new_email_address_added_email(user, 'someone@gitlab.com').message
end
def service_desk_new_note_email def service_desk_new_note_email
cleanup do cleanup do
note = create_note(noteable_type: 'Issue', noteable_id: issue.id, note: 'Issue note content') note = create_note(noteable_type: 'Issue', noteable_id: issue.id, note: 'Issue note content')
......
...@@ -9,6 +9,10 @@ module Emails ...@@ -9,6 +9,10 @@ module Emails
@params = params.dup @params = params.dup
@user = params.delete(:user) @user = params.delete(:user)
end end
def notification_service
NotificationService.new
end
end end
end end
......
...@@ -7,6 +7,7 @@ module Emails ...@@ -7,6 +7,7 @@ module Emails
user.emails.create(params.merge(extra_params)).tap do |email| user.emails.create(params.merge(extra_params)).tap do |email|
email&.confirm if skip_confirmation && current_user.admin? email&.confirm if skip_confirmation && current_user.admin?
notification_service.new_email_address_added(user, email.email) if email.persisted? && !email.user_primary_email?
end end
end end
end end
......
...@@ -109,6 +109,13 @@ class NotificationService ...@@ -109,6 +109,13 @@ class NotificationService
mailer.unknown_sign_in_email(user, ip, time).deliver_later mailer.unknown_sign_in_email(user, ip, time).deliver_later
end end
# Notify a user when a new email address is added to the their account
def new_email_address_added(user, email)
return unless user.can?(:receive_notifications)
mailer.new_email_address_added_email(user, email).deliver_later
end
# When create an issue we should send an email to: # When create an issue we should send an email to:
# #
# * issue assignee if their notification level is not Disabled # * issue assignee if their notification level is not Disabled
......
<%= say_hi(@user) %>
<%= new_email_address_added_text(@email) %>
<%= remove_email_address_text %>
%p
= say_hi(@user)
%p
= new_email_address_added_text(@email)
%p
= remove_email_address_text(format: :html)
...@@ -172,19 +172,20 @@ Users are notified of the following events: ...@@ -172,19 +172,20 @@ Users are notified of the following events:
<!-- The table is sorted first by recipient, then alphabetically. --> <!-- The table is sorted first by recipient, then alphabetically. -->
| Event | Sent to | Settings level | | Event | Sent to | Settings level |
|------------------------------|---------------------|------------------------------| |------------------------------------------|-----------------|-----------------------------------------------------------------------------------------------------------------------------------------|
| New release | Project members | Custom notification. | | New release | Project members | Custom notification. |
| Project moved | Project members | Any other than disabled. | | Project moved | Project members | Any other than disabled. |
| Email changed | User | Security email, always sent. | | Email changed | User | Security email, always sent. |
| Group access level changed | User | Sent when user group access level is changed. | | Group access level changed | User | Sent when user group access level is changed. |
| New email added | User | Security email, always sent. | | New email address added | User | Security email, sent to primary email address. _[Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/337635) in GitLab 14.9._ |
| New SAML/SCIM user provisioned | User | Sent when a user is provisioned through SAML/SCIM. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/276018) in GitLab 13.8 | | New email address added | User | Security email, sent to newly-added email address. |
| New SAML/SCIM user provisioned | User | Sent when a user is provisioned through SAML/SCIM. _[Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/276018) in GitLab 13.8._ |
| New SSH key added | User | Security email, always sent. | | New SSH key added | User | Security email, always sent. |
| New user created | User | Sent on user creation, except for OmniAuth (LDAP). | | New user created | User | Sent on user creation, except for OmniAuth (LDAP). |
| Password changed | User | Security email, always sent when user changes their own password. | | Password changed | User | Security email, always sent when user changes their own password. |
| Password changed by administrator | User | Security email, always sent when an administrator changes the password of another user. | | Password changed by administrator | User | Security email, always sent when an administrator changes the password of another user. |
| Personal access tokens expiring soon | User | Security email, always sent. | | Personal access tokens expiring soon | User | Security email, always sent. |
| Personal access tokens have been created | User | Security email, always sent. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/337591) in GitLab 14.9. | | Personal access tokens have been created | User | Security email, always sent. _[Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/337591) in GitLab 14.9._ |
| Personal access tokens have expired | User | Security email, always sent. | | Personal access tokens have expired | User | Security email, always sent. |
| Project access level changed | User | Sent when user project access level is changed. | | Project access level changed | User | Sent when user project access level is changed. |
| SSH key has expired | User | Security email, always sent. _[Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/322637) in GitLab 13.12._ | | SSH key has expired | User | Security email, always sent. _[Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/322637) in GitLab 13.12._ |
......
...@@ -1604,6 +1604,9 @@ msgstr "" ...@@ -1604,6 +1604,9 @@ msgstr ""
msgid "A new Release %{tag} for %{name} was published. Visit the Releases page to read more about it:" msgid "A new Release %{tag} for %{name} was published. Visit the Releases page to read more about it:"
msgstr "" msgstr ""
msgid "A new email address has been added to your GitLab account: %{email}"
msgstr ""
msgid "A new impersonation token has been created." msgid "A new impersonation token has been created."
msgstr "" msgstr ""
...@@ -18691,6 +18694,12 @@ msgstr "" ...@@ -18691,6 +18694,12 @@ msgstr ""
msgid "If you want to re-enable two-factor authentication, visit the %{settings_link_to} page." msgid "If you want to re-enable two-factor authentication, visit the %{settings_link_to} page."
msgstr "" msgstr ""
msgid "If you want to remove this email address, visit %{profile_link}"
msgstr ""
msgid "If you want to remove this email address, visit the %{settings_link_to} page."
msgstr ""
msgid "If you've purchased or renewed your subscription and have an activation code, please enter it below to start the activation process." msgid "If you've purchased or renewed your subscription and have an activation code, please enter it below to start the activation process."
msgstr "" msgstr ""
...@@ -24746,6 +24755,9 @@ msgstr "" ...@@ -24746,6 +24755,9 @@ msgstr ""
msgid "New discussion" msgid "New discussion"
msgstr "" msgstr ""
msgid "New email address added"
msgstr ""
msgid "New environment" msgid "New environment"
msgstr "" msgstr ""
...@@ -43911,6 +43923,9 @@ msgstr "" ...@@ -43911,6 +43923,9 @@ msgstr ""
msgid "email '%{email}' is not a verified email." msgid "email '%{email}' is not a verified email."
msgstr "" msgstr ""
msgid "email address settings"
msgstr ""
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
......
...@@ -416,4 +416,27 @@ RSpec.describe Emails::Profile do ...@@ -416,4 +416,27 @@ RSpec.describe Emails::Profile do
is_expected.to have_body_text /#{profile_two_factor_auth_path}/ is_expected.to have_body_text /#{profile_two_factor_auth_path}/
end end
end end
describe 'added a new email address' do
let_it_be(:user) { create(:user) }
let_it_be(:email) { create(:email, user: user) }
subject { Notify.new_email_address_added_email(user, email) }
it_behaves_like 'an email sent from GitLab'
it_behaves_like 'it should not have Gmail Actions links'
it_behaves_like 'a user cannot unsubscribe through footer link'
it 'is sent to the user' do
is_expected.to deliver_to user.email
end
it 'has the correct subject' do
is_expected.to have_subject /^New email address added$/i
end
it 'includes a link to the email address page' do
is_expected.to have_body_text /#{profile_emails_path}/
end
end
end end
...@@ -1934,7 +1934,7 @@ RSpec.describe API::Users do ...@@ -1934,7 +1934,7 @@ RSpec.describe API::Users do
end end
end end
describe "POST /users/:id/emails" do describe "POST /users/:id/emails", :mailer do
it "does not create invalid email" do it "does not create invalid email" do
post api("/users/#{user.id}/emails", admin), params: {} post api("/users/#{user.id}/emails", admin), params: {}
...@@ -1944,11 +1944,15 @@ RSpec.describe API::Users do ...@@ -1944,11 +1944,15 @@ RSpec.describe API::Users do
it "creates unverified email" do it "creates unverified email" do
email_attrs = attributes_for :email email_attrs = attributes_for :email
perform_enqueued_jobs do
expect do expect do
post api("/users/#{user.id}/emails", admin), params: email_attrs post api("/users/#{user.id}/emails", admin), params: email_attrs
end.to change { user.emails.count }.by(1) end.to change { user.emails.count }.by(1)
end
expect(json_response['confirmed_at']).to be_nil expect(json_response['confirmed_at']).to be_nil
should_email(user)
end end
it "returns a 400 for invalid ID" do it "returns a 400 for invalid ID" do
......
...@@ -25,5 +25,34 @@ RSpec.describe Emails::CreateService do ...@@ -25,5 +25,34 @@ RSpec.describe Emails::CreateService do
expect(user.emails).to include(Email.find_by(opts)) expect(user.emails).to include(Email.find_by(opts))
end end
it 'sends a notification to the user' do
expect_next_instance_of(NotificationService) do |notification_service|
expect(notification_service).to receive(:new_email_address_added)
end
service.execute
end
it 'does not send a notification when the email is not persisted' do
allow_next_instance_of(NotificationService) do |notification_service|
expect(notification_service).not_to receive(:new_email_address_added)
end
service.execute(email: 'invalid@@example.com')
end
it 'does not send a notification email when the email is the primary, because we are creating the user' do
allow_next_instance_of(NotificationService) do |notification_service|
expect(notification_service).not_to receive(:new_email_address_added)
end
# This is here to ensure that the service is actually called.
allow_next_instance_of(described_class) do |create_service|
expect(create_service).to receive(:execute).and_call_original
end
create(:user)
end
end end
end end
...@@ -376,6 +376,17 @@ RSpec.describe NotificationService, :mailer do ...@@ -376,6 +376,17 @@ RSpec.describe NotificationService, :mailer do
end end
end end
describe '#new_email_address_added' do
let_it_be(:user) { create(:user) }
let_it_be(:email) { create(:email, user: user) }
subject { notification.new_email_address_added(user, email) }
it 'sends email to the user' do
expect { subject }.to have_enqueued_email(user, email, mail: 'new_email_address_added_email')
end
end
describe 'Notes' do describe 'Notes' do
context 'issue note' do context 'issue note' do
let_it_be(:project) { create(:project, :private) } let_it_be(:project) { create(:project, :private) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment