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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
b83a18a5
Commit
b83a18a5
authored
Oct 14, 2015
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Improve invalidation of stored service password if the endpoint URL is changed"
This reverts commit
b4639754
.
parent
2fb02f92
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
78 deletions
+13
-78
app/controllers/admin/services_controller.rb
app/controllers/admin/services_controller.rb
+1
-7
app/controllers/projects/services_controller.rb
app/controllers/projects/services_controller.rb
+1
-7
app/models/project_services/bamboo_service.rb
app/models/project_services/bamboo_service.rb
+1
-1
app/models/project_services/teamcity_service.rb
app/models/project_services/teamcity_service.rb
+1
-1
app/models/service.rb
app/models/service.rb
+6
-26
spec/models/service_spec.rb
spec/models/service_spec.rb
+3
-36
No files found.
app/controllers/admin/services_controller.rb
View file @
b83a18a5
...
@@ -39,13 +39,7 @@ class Admin::ServicesController < Admin::ApplicationController
...
@@ -39,13 +39,7 @@ class Admin::ServicesController < Admin::ApplicationController
end
end
def
application_services_params
def
application_services_params
application_services_params
=
params
.
permit
(
:id
,
params
.
permit
(
:id
,
service:
Projects
::
ServicesController
::
ALLOWED_PARAMS
)
service:
Projects
::
ServicesController
::
ALLOWED_PARAMS
)
if
application_services_params
[
:service
].
is_a?
(
Hash
)
Projects
::
ServicesController
::
FILTER_BLANK_PARAMS
.
each
do
|
param
|
application_services_params
[
:service
].
delete
(
param
)
if
application_services_params
[
:service
][
param
].
blank?
end
end
application_services_params
end
end
end
end
app/controllers/projects/services_controller.rb
View file @
b83a18a5
...
@@ -9,10 +9,6 @@ class Projects::ServicesController < Projects::ApplicationController
...
@@ -9,10 +9,6 @@ class Projects::ServicesController < Projects::ApplicationController
:note_events
,
:send_from_committer_email
,
:disable_diffs
,
:external_wiki_url
,
:note_events
,
:send_from_committer_email
,
:disable_diffs
,
:external_wiki_url
,
:notify
,
:color
,
:notify
,
:color
,
:server_host
,
:server_port
,
:default_irc_uri
,
:enable_ssl_verification
]
:server_host
,
:server_port
,
:default_irc_uri
,
:enable_ssl_verification
]
# Parameters to ignore if no value is specified
FILTER_BLANK_PARAMS
=
[
:password
]
# Authorize
# Authorize
before_action
:authorize_admin_project!
before_action
:authorize_admin_project!
before_action
:service
,
only:
[
:edit
,
:update
,
:test
]
before_action
:service
,
only:
[
:edit
,
:update
,
:test
]
...
@@ -63,9 +59,7 @@ class Projects::ServicesController < Projects::ApplicationController
...
@@ -63,9 +59,7 @@ class Projects::ServicesController < Projects::ApplicationController
def
service_params
def
service_params
service_params
=
params
.
require
(
:service
).
permit
(
ALLOWED_PARAMS
)
service_params
=
params
.
require
(
:service
).
permit
(
ALLOWED_PARAMS
)
FILTER_BLANK_PARAMS
.
each
do
|
param
|
service_params
.
delete
(
"password"
)
if
service_params
[
"password"
].
blank?
service_params
.
delete
(
param
)
if
service_params
[
param
].
blank?
end
service_params
service_params
end
end
end
end
app/models/project_services/bamboo_service.rb
View file @
b83a18a5
...
@@ -48,7 +48,7 @@ class BambooService < CiService
...
@@ -48,7 +48,7 @@ class BambooService < CiService
end
end
def
reset_password
def
reset_password
if
prop_
modified?
(
:bamboo_url
)
&&
!
prop_updated?
(
:password
)
if
prop_
updated?
(
:bamboo_url
)
self
.
password
=
nil
self
.
password
=
nil
end
end
end
end
...
...
app/models/project_services/teamcity_service.rb
View file @
b83a18a5
...
@@ -45,7 +45,7 @@ class TeamcityService < CiService
...
@@ -45,7 +45,7 @@ class TeamcityService < CiService
end
end
def
reset_password
def
reset_password
if
prop_
modified?
(
:teamcity_url
)
&&
!
prop_updated?
(
:password
)
if
prop_
updated?
(
:teamcity_url
)
self
.
password
=
nil
self
.
password
=
nil
end
end
end
end
...
...
app/models/service.rb
View file @
b83a18a5
...
@@ -33,8 +33,6 @@ class Service < ActiveRecord::Base
...
@@ -33,8 +33,6 @@ class Service < ActiveRecord::Base
after_initialize
:initialize_properties
after_initialize
:initialize_properties
after_commit
:reset_updated_properties
belongs_to
:project
belongs_to
:project
has_one
:service_hook
has_one
:service_hook
...
@@ -105,7 +103,6 @@ class Service < ActiveRecord::Base
...
@@ -105,7 +103,6 @@ class Service < ActiveRecord::Base
# Provide convenient accessor methods
# Provide convenient accessor methods
# for each serialized property.
# for each serialized property.
# Also keep track of updated properties.
def
self
.
prop_accessor
(
*
args
)
def
self
.
prop_accessor
(
*
args
)
args
.
each
do
|
arg
|
args
.
each
do
|
arg
|
class_eval
%{
class_eval
%{
...
@@ -114,36 +111,19 @@ class Service < ActiveRecord::Base
...
@@ -114,36 +111,19 @@ class Service < ActiveRecord::Base
end
end
def #{arg}=(value)
def #{arg}=(value)
updated_properties['#{arg}'] = #{arg} unless updated_properties.include?('#{arg}')
self.properties['#{arg}'] = value
self.properties['#{arg}'] = value
end
end
}
}
end
end
end
end
# Returns a hash of the properties that have been assigned a new value since last save,
# ActiveRecord does not provide a mechanism to track changes in serialized keys.
# indicating their original values (attr => original value).
# This is why we need to perform extra query to do it mannually.
# ActiveRecord does not provide a mechanism to track changes in serialized keys,
# so we need a specific implementation for service properties.
# This allows to track changes to properties set with the accessor methods,
# but not direct manipulation of properties hash.
def
updated_properties
@updated_properties
||=
ActiveSupport
::
HashWithIndifferentAccess
.
new
end
def
prop_updated?
(
prop_name
)
def
prop_updated?
(
prop_name
)
# Check if a new value was set.
relation_name
=
self
.
type
.
underscore
# The new value may or may not be the same as the old value
previous_value
=
project
.
send
(
relation_name
).
send
(
prop_name
)
updated_properties
.
include?
(
prop_name
)
return
false
if
previous_value
.
nil?
end
previous_value
!=
send
(
prop_name
)
def
prop_modified?
(
prop_name
)
# Check if new value was set and it is different from the old value
prop_updated?
(
prop_name
)
&&
updated_properties
[
prop_name
]
!=
send
(
prop_name
)
end
def
reset_updated_properties
@updated_properties
=
nil
end
end
def
async_execute
(
data
)
def
async_execute
(
data
)
...
...
spec/models/service_spec.rb
View file @
b83a18a5
...
@@ -116,47 +116,14 @@ describe Service do
...
@@ -116,47 +116,14 @@ describe Service do
)
)
end
end
it
"returns false
when the property has not been assigned a new value
"
do
it
"returns false"
do
service
.
username
=
"key_changed"
service
.
username
=
"key_changed"
expect
(
service
.
prop_updated?
(
:bamboo_url
)).
to
be_falsy
expect
(
service
.
prop_updated?
(
:bamboo_url
)).
to
be_falsy
end
end
it
"returns true
when the property has been assigned a different value
"
do
it
"returns true"
do
service
.
bamboo_url
=
"http://
example
.com"
service
.
bamboo_url
=
"http://
other
.com"
expect
(
service
.
prop_updated?
(
:bamboo_url
)).
to
be_truthy
expect
(
service
.
prop_updated?
(
:bamboo_url
)).
to
be_truthy
end
end
it
"returns true when the property has been re-assigned the same value"
do
service
.
bamboo_url
=
'http://gitlab.com'
expect
(
service
.
prop_updated?
(
:bamboo_url
)).
to
be_truthy
end
end
describe
"#prop_modified?"
do
let
(
:service
)
do
BambooService
.
create
(
project:
create
(
:project
),
properties:
{
bamboo_url:
'http://gitlab.com'
,
username:
'mic'
,
password:
"password"
}
)
end
it
"returns false when the property has not been assigned a new value"
do
service
.
username
=
"key_changed"
expect
(
service
.
prop_modified?
(
:bamboo_url
)).
to
be_falsy
end
it
"returns true when the property has been assigned a different value"
do
service
.
bamboo_url
=
"http://example.com"
expect
(
service
.
prop_modified?
(
:bamboo_url
)).
to
be_truthy
end
it
"returns false when the property has been re-assigned the same value"
do
service
.
bamboo_url
=
'http://gitlab.com'
expect
(
service
.
prop_modified?
(
:bamboo_url
)).
to
be_falsy
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