Revert "Implement Ci::NestedUniquenessValidator"
This reverts commit 8f0a2b6d78
.
This commit is contained in:
parent
951dd04871
commit
dafc341794
7 changed files with 47 additions and 59 deletions
|
@ -33,8 +33,7 @@ class Projects::PipelineSchedulesController < Projects::ApplicationController
|
|||
end
|
||||
|
||||
def update
|
||||
if Ci::UpdatePipelineScheduleService
|
||||
.new(@project, current_user, schedule_params).execute(schedule)
|
||||
if schedule.update(schedule_params)
|
||||
redirect_to namespace_project_pipeline_schedules_path(@project.namespace.becomes(Namespace), @project)
|
||||
else
|
||||
render :edit
|
||||
|
|
|
@ -15,6 +15,11 @@ module Ci
|
|||
validates :cron_timezone, cron_timezone: true, presence: { unless: :importing? }
|
||||
validates :ref, presence: { unless: :importing? }
|
||||
validates :description, presence: true
|
||||
validates :variables, uniqueness_of_in_memory: {
|
||||
:collection => :variables,
|
||||
:attrs => [:pipeline_schedule_id, :key],
|
||||
:message => ['variables.key', 'keys are duplicated']
|
||||
}
|
||||
|
||||
before_save :set_next_run_at
|
||||
|
||||
|
|
|
@ -1,22 +1,13 @@
|
|||
module Ci
|
||||
class CreatePipelineScheduleService < BaseService
|
||||
def execute
|
||||
pipeline_schedule = project.pipeline_schedules.build(pipeline_schedule_params)
|
||||
|
||||
if Ci::NestedUniquenessValidator.duplicated?(pipeline_schedule_params['variables_attributes'], 'key')
|
||||
pipeline_schedule.errors.add('variables.key', "keys are duplicated")
|
||||
|
||||
return pipeline_schedule
|
||||
end
|
||||
|
||||
pipeline_schedule.save
|
||||
pipeline_schedule
|
||||
project.pipeline_schedules.create(pipeline_schedule_params)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def pipeline_schedule_params
|
||||
@pipeline_schedule_params ||= params.merge(owner: current_user)
|
||||
params.merge(owner: current_user)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
module Ci
|
||||
class UpdatePipelineScheduleService < BaseService
|
||||
def execute(pipeline_schedule)
|
||||
if Ci::NestedUniquenessValidator.duplicated?(pipeline_schedule_params['variables_attributes'], 'key')
|
||||
pipeline_schedule.errors.add('variables.key', "keys are duplicated")
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
pipeline_schedule.update(pipeline_schedule_params)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def pipeline_schedule_params
|
||||
@pipeline_schedule_params ||= params.merge(owner: current_user)
|
||||
end
|
||||
end
|
||||
end
|
37
app/validators/uniqueness_of_in_memory_validator.rb
Normal file
37
app/validators/uniqueness_of_in_memory_validator.rb
Normal file
|
@ -0,0 +1,37 @@
|
|||
# UniquenessOfInMemoryValidator
|
||||
#
|
||||
# This validtor is designed for especially the following condition
|
||||
# - Use `accepts_nested_attributes_for :xxx` in a parent model
|
||||
# - Use `validates :xxx, uniqueness: { scope: :xxx_id }` in a child model
|
||||
#
|
||||
# Inspired by https://stackoverflow.com/a/2883129/2522666
|
||||
module ActiveRecord
|
||||
class Base
|
||||
# Validate that the the objects in +collection+ are unique
|
||||
# when compared against all their non-blank +attrs+. If not
|
||||
# add +message+ to the base errors.
|
||||
def validate_uniqueness_of_in_memory(collection, attrs, message)
|
||||
hashes = collection.inject({}) do |hash, record|
|
||||
key = attrs.map { |a| record.send(a).to_s }.join
|
||||
if key.blank? || record.marked_for_destruction?
|
||||
key = record.object_id
|
||||
end
|
||||
hash[key] = record unless hash[key]
|
||||
hash
|
||||
end
|
||||
|
||||
if collection.length > hashes.length
|
||||
self.errors.add(*message)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
class UniquenessOfInMemoryValidator < ActiveModel::Validator
|
||||
def validate(record)
|
||||
record.validate_uniqueness_of_in_memory(
|
||||
record.public_send(options[:collection]),
|
||||
options[:attrs],
|
||||
options[:message])
|
||||
end
|
||||
end
|
|
@ -1,11 +0,0 @@
|
|||
module Ci
|
||||
module NestedUniquenessValidator
|
||||
class << self
|
||||
def duplicated?(nested_attributes, unique_key)
|
||||
return false unless nested_attributes.is_a?(Array)
|
||||
|
||||
nested_attributes.map { |v| v[unique_key] }.uniq.length != nested_attributes.length
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
|
@ -267,7 +267,8 @@ describe Projects::PipelineSchedulesController do
|
|||
end
|
||||
|
||||
it 'returns an error that variables are duplciated' do
|
||||
go
|
||||
put :update, namespace_id: project.namespace.to_param,
|
||||
project_id: project, id: pipeline_schedule, schedule: schedule
|
||||
|
||||
expect(assigns(:schedule).errors['variables.key']).not_to be_empty
|
||||
end
|
||||
|
@ -339,21 +340,6 @@ describe Projects::PipelineSchedulesController do
|
|||
expect { go }.to change { Ci::PipelineScheduleVariable.count }.by(-1)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when deletes and creates the same keys' do
|
||||
let(:schedule) do
|
||||
basic_param.merge({
|
||||
variables_attributes: [{ id: pipeline_schedule_variable.id, key: pipeline_schedule_variable.key, _destroy: true },
|
||||
{ key: pipeline_schedule_variable.key, value: 'new_value' }]
|
||||
})
|
||||
end
|
||||
|
||||
it 'returns an error that variables are duplciated' do
|
||||
go
|
||||
|
||||
expect(assigns(:schedule).errors['variables.key']).not_to be_empty
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue