Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
30e3a49e
Commit
30e3a49e
authored
Sep 12, 2017
by
Brett Walker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimized the email services
parent
a9b31786
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
16 deletions
+19
-16
app/controllers/profiles/emails_controller.rb
app/controllers/profiles/emails_controller.rb
+9
-5
app/services/emails/base_service.rb
app/services/emails/base_service.rb
+1
-1
app/services/emails/confirm_service.rb
app/services/emails/confirm_service.rb
+2
-2
app/services/emails/destroy_service.rb
app/services/emails/destroy_service.rb
+2
-2
spec/services/emails/confirm_service_spec.rb
spec/services/emails/confirm_service_spec.rb
+3
-4
spec/services/emails/destroy_service_spec.rb
spec/services/emails/destroy_service_spec.rb
+2
-2
No files found.
app/controllers/profiles/emails_controller.rb
View file @
30e3a49e
class
Profiles::EmailsController
<
Profiles
::
ApplicationController
class
Profiles::EmailsController
<
Profiles
::
ApplicationController
before_action
:find_email
,
only:
[
:destroy
,
:resend_confirmation_instructions
]
def
index
def
index
@primary
=
current_user
.
email
@primary
=
current_user
.
email
@emails
=
current_user
.
emails
.
order_id_desc
@emails
=
current_user
.
emails
.
order_id_desc
...
@@ -14,9 +17,7 @@ class Profiles::EmailsController < Profiles::ApplicationController
...
@@ -14,9 +17,7 @@ class Profiles::EmailsController < Profiles::ApplicationController
end
end
def
destroy
def
destroy
@email
=
current_user
.
emails
.
find
(
params
[
:id
])
Emails
::
DestroyService
.
new
(
current_user
).
execute
(
@email
)
Emails
::
DestroyService
.
new
(
current_user
,
email:
@email
.
email
).
execute
respond_to
do
|
format
|
respond_to
do
|
format
|
format
.
html
{
redirect_to
profile_emails_url
,
status:
302
}
format
.
html
{
redirect_to
profile_emails_url
,
status:
302
}
...
@@ -25,8 +26,7 @@ class Profiles::EmailsController < Profiles::ApplicationController
...
@@ -25,8 +26,7 @@ class Profiles::EmailsController < Profiles::ApplicationController
end
end
def
resend_confirmation_instructions
def
resend_confirmation_instructions
@email
=
current_user
.
emails
.
find
(
params
[
:id
])
if
Emails
::
ConfirmService
.
new
(
current_user
).
execute
(
@email
)
if
@email
&&
Emails
::
ConfirmService
.
new
(
current_user
,
email:
@email
.
email
).
execute
flash
[
:notice
]
=
"Confirmation email sent to
#{
@email
.
email
}
"
flash
[
:notice
]
=
"Confirmation email sent to
#{
@email
.
email
}
"
else
else
flash
[
:alert
]
=
"There was a problem sending the confirmation email"
flash
[
:alert
]
=
"There was a problem sending the confirmation email"
...
@@ -39,4 +39,8 @@ class Profiles::EmailsController < Profiles::ApplicationController
...
@@ -39,4 +39,8 @@ class Profiles::EmailsController < Profiles::ApplicationController
def
email_params
def
email_params
params
.
require
(
:email
).
permit
(
:email
)
params
.
require
(
:email
).
permit
(
:email
)
end
end
def
find_email
@email
=
current_user
.
emails
.
find
(
params
[
:id
])
end
end
end
app/services/emails/base_service.rb
View file @
30e3a49e
module
Emails
module
Emails
class
BaseService
class
BaseService
def
initialize
(
user
,
opts
)
def
initialize
(
user
,
opts
=
{}
)
@user
=
user
@user
=
user
@email
=
opts
[
:email
]
@email
=
opts
[
:email
]
end
end
...
...
app/services/emails/confirm_service.rb
View file @
30e3a49e
module
Emails
module
Emails
class
ConfirmService
<
::
Emails
::
BaseService
class
ConfirmService
<
::
Emails
::
BaseService
def
execute
def
execute
(
email_record
)
Email
.
find_by_email!
(
@email
)
.
resend_confirmation_instructions
email_record
.
resend_confirmation_instructions
end
end
end
end
end
end
app/services/emails/destroy_service.rb
View file @
30e3a49e
module
Emails
module
Emails
class
DestroyService
<
::
Emails
::
BaseService
class
DestroyService
<
::
Emails
::
BaseService
def
execute
def
execute
(
email_record
)
Email
.
find_by_email!
(
@email
)
.
destroy
&&
update_secondary_emails!
email_record
.
destroy
&&
update_secondary_emails!
end
end
private
private
...
...
spec/services/emails/confirm_service_spec.rb
View file @
30e3a49e
...
@@ -2,14 +2,13 @@ require 'spec_helper'
...
@@ -2,14 +2,13 @@ require 'spec_helper'
describe
Emails
::
ConfirmService
do
describe
Emails
::
ConfirmService
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:opts
)
{
{
email:
'new@email.com'
}
}
subject
(
:service
)
{
described_class
.
new
(
user
,
opts
)
}
subject
(
:service
)
{
described_class
.
new
(
user
)
}
describe
'#execute'
do
describe
'#execute'
do
it
'sends a confirmation email again'
do
it
'sends a confirmation email again'
do
user
.
emails
.
create
(
email:
opts
[
:email
]
)
email
=
user
.
emails
.
create
(
email:
'new@email.com'
)
mail
=
service
.
execute
mail
=
service
.
execute
(
email
)
expect
(
mail
.
subject
).
to
eq
(
'Confirmation instructions'
)
expect
(
mail
.
subject
).
to
eq
(
'Confirmation instructions'
)
end
end
end
end
...
...
spec/services/emails/destroy_service_spec.rb
View file @
30e3a49e
...
@@ -4,11 +4,11 @@ describe Emails::DestroyService do
...
@@ -4,11 +4,11 @@ describe Emails::DestroyService do
let!
(
:user
)
{
create
(
:user
)
}
let!
(
:user
)
{
create
(
:user
)
}
let!
(
:email
)
{
create
(
:email
,
user:
user
)
}
let!
(
:email
)
{
create
(
:email
,
user:
user
)
}
subject
(
:service
)
{
described_class
.
new
(
user
,
email:
email
.
email
)
}
subject
(
:service
)
{
described_class
.
new
(
user
)
}
describe
'#execute'
do
describe
'#execute'
do
it
'removes an email'
do
it
'removes an email'
do
expect
{
service
.
execute
}.
to
change
{
user
.
emails
.
count
}.
by
(
-
1
)
expect
{
service
.
execute
(
email
)
}.
to
change
{
user
.
emails
.
count
}.
by
(
-
1
)
end
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment