Class: JSONAPI::Request

Inherits:
Object
  • Object
show all
Defined in:
lib/jsonapi/request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = nil, options = {}) ⇒ Request

Returns a new instance of Request.



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/jsonapi/request.rb', line 10

def initialize(params = nil, options = {})
  @params = params
  @context = options[:context]
  @key_formatter = options.fetch(:key_formatter, JSONAPI.configuration.key_formatter)
  @errors = []
  @operations = []
  @fields = {}
  @filters = {}
  @sort_criteria = [{field: 'id', direction: :asc}]
  @source_klass = nil
  @source_id = nil
  @include_directives = nil
  @paginator = nil
  @id = nil

  setup_action(@params)
end

Instance Attribute Details

#contextObject

Returns the value of attribute context.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def context
  @context
end

#errorsObject

Returns the value of attribute errors.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def errors
  @errors
end

#fieldsObject

Returns the value of attribute fields.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def fields
  @fields
end

#filtersObject

Returns the value of attribute filters.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def filters
  @filters
end

#includeObject

Returns the value of attribute include.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def include
  @include
end

#include_directivesObject

Returns the value of attribute include_directives.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def include_directives
  @include_directives
end

#operationsObject

Returns the value of attribute operations.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def operations
  @operations
end

#paginatorObject

Returns the value of attribute paginator.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def paginator
  @paginator
end

#paramsObject

Returns the value of attribute params.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def params
  @params
end

#resource_klassObject

Returns the value of attribute resource_klass.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def resource_klass
  @resource_klass
end

#sort_criteriaObject

Returns the value of attribute sort_criteria.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def sort_criteria
  @sort_criteria
end

#source_idObject

Returns the value of attribute source_id.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def source_id
  @source_id
end

#source_klassObject

Returns the value of attribute source_klass.



6
7
8
# File 'lib/jsonapi/request.rb', line 6

def source_klass
  @source_klass
end

Instance Method Details

#add_find_operationObject



263
264
265
266
267
268
269
270
271
272
273
# File 'lib/jsonapi/request.rb', line 263

def add_find_operation
  @operations.push JSONAPI::FindOperation.new(
                     @resource_klass,
                     {
                       filters: @filters,
                       include_directives: @include_directives,
                       sort_criteria: @sort_criteria,
                       paginator: @paginator
                     }
                   )
end

#add_show_association_operation(association_type, parent_key) ⇒ Object



285
286
287
288
289
290
291
292
293
# File 'lib/jsonapi/request.rb', line 285

def add_show_association_operation(association_type, parent_key)
  @operations.push JSONAPI::ShowAssociationOperation.new(
                     @resource_klass,
                     {
                       association_type: association_type,
                       parent_key: @resource_klass.verify_key(parent_key)
                     }
                   )
end

#add_show_operationObject



275
276
277
278
279
280
281
282
283
# File 'lib/jsonapi/request.rb', line 275

def add_show_operation
  @operations.push JSONAPI::ShowOperation.new(
                     @resource_klass,
                     {
                       id: @id,
                       include_directives: @include_directives
                     }
                   )
end


295
296
297
298
299
300
301
302
303
304
# File 'lib/jsonapi/request.rb', line 295

def add_show_related_resource_operation(association_type)
  @operations.push JSONAPI::ShowRelatedResourceOperation.new(
                     @resource_klass,
                     {
                       association_type: association_type,
                       source_klass: @source_klass,
                       source_id: @source_id
                     }
                   )
end


306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/jsonapi/request.rb', line 306

def add_show_related_resources_operation(association_type)
  @operations.push JSONAPI::ShowRelatedResourcesOperation.new(
                     @resource_klass,
                     {
                       association_type: association_type,
                       source_klass: @source_klass,
                       source_id: @source_id,
                       filters: @source_klass.verify_filters(@filters, @context),
                       sort_criteria: @sort_criteria,
                       paginator: @paginator
                     }
                   )
end

#check_include(resource_klass, include_parts) ⇒ Object



182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/jsonapi/request.rb', line 182

def check_include(resource_klass, include_parts)
  association_name = unformat_key(include_parts.first)

  association = resource_klass._association(association_name)
  if association && format_key(association_name) == include_parts.first
    unless include_parts.last.empty?
      check_include(Resource.resource_for(@resource_klass.module_path + association.class_name.to_s), include_parts.last.partition('.'))
    end
  else
    @errors.concat(JSONAPI::Exceptions::InvalidInclude.new(format_key(resource_klass._type),
                                                           include_parts.first,).errors)
  end
end

#check_sort_criteria(resource_klass, sort_criteria) ⇒ Object



253
254
255
256
257
258
259
260
261
# File 'lib/jsonapi/request.rb', line 253

def check_sort_criteria(resource_klass, sort_criteria)
  sort_field = sort_criteria[:field]
  sortable_fields = resource_klass.sortable_fields(context)

  unless sortable_fields.include? sort_field.to_sym
    @errors.concat(JSONAPI::Exceptions::InvalidSortCriteria
                     .new(format_key(resource_klass._type), sort_field).errors)
  end
end

#creatable_fieldsObject

TODO: Please remove after ‘createable_fields` is removed :nocov:



322
323
324
325
326
327
328
# File 'lib/jsonapi/request.rb', line 322

def creatable_fields
  if @resource_klass.respond_to?(:createable_fields)
    creatable_fields = @resource_klass.createable_fields(@context)
  else
    creatable_fields = @resource_klass.creatable_fields(@context)
  end
end

#format_key(key) ⇒ Object



661
662
663
# File 'lib/jsonapi/request.rb', line 661

def format_key(key)
  @key_formatter.format(key)
end

#initialize_source(params) ⇒ Object



118
119
120
121
# File 'lib/jsonapi/request.rb', line 118

def initialize_source(params)
  @source_klass = Resource.resource_for(params.require(:source))
  @source_id = @source_klass.verify_key(params.require(@source_klass._as_parent_key), @context)
end

#parse_add_association_operation(data, association_type, parent_key) ⇒ Object

:nocov:



512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
# File 'lib/jsonapi/request.rb', line 512

def parse_add_association_operation(data, association_type, parent_key)
  association = resource_klass._association(association_type)

  if association.is_a?(JSONAPI::Association::HasMany)
    object_params = {relationships: {format_key(association.name) => {data: data}}}
    verified_param_set = parse_params(object_params, updatable_fields)

    @operations.push JSONAPI::CreateHasManyAssociationOperation.new(
                       resource_klass,
                       {
                         resource_id: parent_key,
                         association_type: association_type,
                         data: verified_param_set[:has_many].values[0]
                       }
                     )
  end
end

#parse_add_operation(data) ⇒ Object

:nocov:



331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
# File 'lib/jsonapi/request.rb', line 331

def parse_add_operation(data)
  Array.wrap(data).each do |params|
    verify_type(params[:type])

    data = parse_params(params, creatable_fields)
    @operations.push JSONAPI::CreateResourceOperation.new(
                       @resource_klass,
                       {
                         data: data
                       }
                     )
  end
rescue JSONAPI::Exceptions::Error => e
  @errors.concat(e.errors)
end

#parse_fields(fields) ⇒ Object



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/jsonapi/request.rb', line 130

def parse_fields(fields)
  return if fields.nil?

  extracted_fields = {}

  # Extract the fields for each type from the fields parameters
  if fields.is_a?(ActionController::Parameters)
    fields.each do |field, value|
      resource_fields = value.split(',') unless value.nil? || value.empty?
      extracted_fields[field] = resource_fields
    end
  else
    raise JSONAPI::Exceptions::InvalidFieldFormat.new
  end

  # Validate the fields
  extracted_fields.each do |type, values|
    underscored_type = unformat_key(type)
    extracted_fields[type] = []
    begin
      if type != format_key(type)
        raise JSONAPI::Exceptions::InvalidResource.new(type)
      end
      type_resource = Resource.resource_for(@resource_klass.module_path + underscored_type.to_s)
    rescue NameError
      @errors.concat(JSONAPI::Exceptions::InvalidResource.new(type).errors)
    rescue JSONAPI::Exceptions::InvalidResource => e
    @errors.concat(e.errors)
    end

    if type_resource.nil? || !(@resource_klass._type == underscored_type ||
      @resource_klass._has_association?(underscored_type))
      @errors.concat(JSONAPI::Exceptions::InvalidResource.new(type).errors)
    else
      unless values.nil?
        valid_fields = type_resource.fields.collect { |key| format_key(key) }
        values.each do |field|
          if valid_fields.include?(field)
            extracted_fields[type].push unformat_key(field)
          else
            @errors.concat(JSONAPI::Exceptions::InvalidField.new(type, field).errors)
          end
        end
      else
        @errors.concat(JSONAPI::Exceptions::InvalidField.new(type, 'nil').errors)
      end
    end
  end

  @fields = extracted_fields.deep_transform_keys { |key| unformat_key(key) }
end

#parse_filters(filters) ⇒ Object



211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/jsonapi/request.rb', line 211

def parse_filters(filters)
  return unless filters

  unless filters.class.method_defined?(:each)
    @errors.concat(JSONAPI::Exceptions::InvalidFiltersSyntax.new(filters).errors)
    return
  end

  filters.each do |key, value|
    filter = unformat_key(key)
    if @resource_klass._allowed_filter?(filter)
      @filters[filter] = value
    else
      @errors.concat(JSONAPI::Exceptions::FilterNotAllowed.new(filter).errors)
    end
  end
end


373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/jsonapi/request.rb', line 373

def parse_has_many_links_object(raw)
  if raw.nil?
    raise JSONAPI::Exceptions::InvalidLinksObject.new
  end

  links_object = {}
  if raw.is_a?(Array)
    raw.each do |link|
      link_object = parse_has_one_links_object(link)
      links_object[link_object[:type]] ||= []
      links_object[link_object[:type]].push(link_object[:id])
    end
  else
    raise JSONAPI::Exceptions::InvalidLinksObject.new
  end
  links_object
end


355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# File 'lib/jsonapi/request.rb', line 355

def parse_has_one_links_object(raw)
  if raw.nil?
    return {
      type: nil,
      id: nil
    }
  end

  if !raw.is_a?(Hash) || raw.length != 2 || !(raw.has_key?('type') && raw.has_key?('id'))
    raise JSONAPI::Exceptions::InvalidLinksObject.new
  end

  {
    type: unformat_key(raw['type']).to_s,
    id: raw['id']
  }
end

#parse_include_directives(include) ⇒ Object



196
197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/jsonapi/request.rb', line 196

def parse_include_directives(include)
  return if include.nil?

  included_resources = CSV.parse_line(include)
  return if included_resources.nil?

  include = []
  included_resources.each do |included_resource|
    check_include(@resource_klass, included_resource.partition('.'))
    include.push(unformat_key(included_resource).to_s)
  end

  @include_directives = JSONAPI::IncludeDirectives.new(include)
end

#parse_key_array(raw) ⇒ Object



657
658
659
# File 'lib/jsonapi/request.rb', line 657

def parse_key_array(raw)
  return @resource_klass.verify_keys(raw.split(/,/), context)
end

#parse_pagination(page) ⇒ Object



123
124
125
126
127
128
# File 'lib/jsonapi/request.rb', line 123

def parse_pagination(page)
  paginator_name = @resource_klass._paginator
  @paginator = JSONAPI::Paginator.paginator_for(paginator_name).new(page) unless paginator_name == :none
rescue JSONAPI::Exceptions::Error => e
  @errors.concat(e.errors)
end

#parse_params(params, allowed_fields) ⇒ Object



391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
# File 'lib/jsonapi/request.rb', line 391

def parse_params(params, allowed_fields)
  verify_permitted_params(params, allowed_fields)

  checked_attributes = {}
  checked_has_one_associations = {}
  checked_has_many_associations = {}

  params.each do |key, value|
    case key.to_s
      when 'relationships'
        value.each do |link_key, link_value|
          param = unformat_key(link_key)

          association = @resource_klass._association(param)

          if association.is_a?(JSONAPI::Association::HasOne)
            if link_value.nil?
              linkage = nil
            else
              linkage = link_value[:data]
            end

            links_object = parse_has_one_links_object(linkage)
            # Since we do not yet support polymorphic associations we will raise an error if the type does not match the
            # association's type.
            # ToDo: Support Polymorphic associations
            if links_object[:type] && (links_object[:type].to_s != association.type.to_s)
              raise JSONAPI::Exceptions::TypeMismatch.new(links_object[:type])
            end

            unless links_object[:id].nil?
              association_resource = Resource.resource_for(@resource_klass.module_path + unformat_key(links_object[:type]).to_s)
              checked_has_one_associations[param] = association_resource.verify_key(links_object[:id], @context)
            else
              checked_has_one_associations[param] = nil
            end
          elsif association.is_a?(JSONAPI::Association::HasMany)
            if link_value.is_a?(Array) && link_value.length == 0
              linkage = []
            elsif link_value.is_a?(Hash)
              linkage = link_value[:data]
            else
              raise JSONAPI::Exceptions::InvalidLinksObject.new
            end

            links_object = parse_has_many_links_object(linkage)

            # Since we do not yet support polymorphic associations we will raise an error if the type does not match the
            # association's type.
            # ToDo: Support Polymorphic associations

            if links_object.length == 0
              checked_has_many_associations[param] = []
            else
              if links_object.length > 1 || !links_object.has_key?(unformat_key(association.type).to_s)
                raise JSONAPI::Exceptions::TypeMismatch.new(links_object[:type])
              end

              links_object.each_pair do |type, keys|
                association_resource = Resource.resource_for(@resource_klass.module_path + unformat_key(type).to_s)
                checked_has_many_associations[param] = association_resource.verify_keys(keys, @context)
              end
            end
          end
        end
      when 'id'
        checked_attributes['id'] = unformat_value(:id, value)
      when 'attributes'
        value.each do |key, value|
          param = unformat_key(key)
          checked_attributes[param] = unformat_value(param, value)
        end
    end
  end

  return {
    'attributes' => checked_attributes,
    'has_one' => checked_has_one_associations,
    'has_many' => checked_has_many_associations
  }.deep_transform_keys { |key| unformat_key(key) }
end

#parse_remove_association_operation(params) ⇒ Object



628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
# File 'lib/jsonapi/request.rb', line 628

def parse_remove_association_operation(params)
  association_type = params[:association]

  parent_key = params[resource_klass._as_parent_key]

  association = resource_klass._association(association_type)
  if association.is_a?(JSONAPI::Association::HasMany)
    keys = parse_key_array(params[:keys])
    keys.each do |key|
      @operations.push JSONAPI::RemoveHasManyAssociationOperation.new(
                         resource_klass,
                         {
                           resource_id: parent_key,
                           association_type: association_type,
                           associated_key: key
                         }
                       )
    end
  else
    @operations.push JSONAPI::RemoveHasOneAssociationOperation.new(
                       resource_klass,
                       {
                         resource_id: parent_key,
                         association_type: association_type
                       }
                     )
  end
end

#parse_remove_operation(params) ⇒ Object



611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
# File 'lib/jsonapi/request.rb', line 611

def parse_remove_operation(params)
  keys = parse_key_array(params.permit(:id)[:id])

  keys.each do |key|
    @operations.push JSONAPI::RemoveResourceOperation.new(
                       @resource_klass,
                       {
                         resource_id: key
                       }
                     )
  end
rescue ActionController::UnpermittedParameters => e
  @errors.concat(JSONAPI::Exceptions::ParametersNotAllowed.new(e.params).errors)
rescue JSONAPI::Exceptions::Error => e
  @errors.concat(e.errors)
end

#parse_replace_operation(data, keys) ⇒ Object



594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
# File 'lib/jsonapi/request.rb', line 594

def parse_replace_operation(data, keys)
  if data.is_a?(Array)
    if keys.count != data.count
      raise JSONAPI::Exceptions::CountMismatch
    end

    data.each do |object_params|
      parse_single_replace_operation(object_params, keys)
    end
  else
    parse_single_replace_operation(data, [keys])
  end

rescue JSONAPI::Exceptions::Error => e
  @errors.concat(e.errors)
end

#parse_single_replace_operation(data, keys) ⇒ Object



564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
# File 'lib/jsonapi/request.rb', line 564

def parse_single_replace_operation(data, keys)
  if data[:id].nil?
    raise JSONAPI::Exceptions::MissingKey.new
  end

  type = data[:type]
  if type.nil? || type != format_key(@resource_klass._type).to_s
    raise JSONAPI::Exceptions::ParameterMissing.new(:type)
  end

  key = data[:id]
  if !keys.include?(key)
    raise JSONAPI::Exceptions::KeyNotIncludedInURL.new(key)
  end

  if !keys.include?(:id)
    data.delete(:id)
  end

  verify_type(data[:type])

  @operations.push JSONAPI::ReplaceFieldsOperation.new(
                     @resource_klass,
                     {
                       resource_id: key,
                       data: parse_params(data, updatable_fields)
                     }
                   )
end

#parse_sort_criteria(sort_criteria) ⇒ Object



236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
# File 'lib/jsonapi/request.rb', line 236

def parse_sort_criteria(sort_criteria)
  return unless sort_criteria

  @sort_criteria = CSV.parse_line(URI.unescape(sort_criteria)).collect do |sort|
    if sort.start_with?('-')
      sort_criteria = {field: unformat_key(sort[1..-1]).to_s}
      sort_criteria[:direction] = :desc
    else
      sort_criteria = {field: unformat_key(sort).to_s}
      sort_criteria[:direction] = :asc
    end

    check_sort_criteria(@resource_klass, sort_criteria)
    sort_criteria
  end
end

#parse_update_association_operation(data, association_type, parent_key) ⇒ Object



530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
# File 'lib/jsonapi/request.rb', line 530

def parse_update_association_operation(data, association_type, parent_key)
  association = resource_klass._association(association_type)

  if association.is_a?(JSONAPI::Association::HasOne)
    object_params = {relationships: {format_key(association.name) => {data: data}}}
    verified_param_set = parse_params(object_params, updatable_fields)

    @operations.push JSONAPI::ReplaceHasOneAssociationOperation.new(
                       resource_klass,
                       {
                         resource_id: parent_key,
                         association_type: association_type,
                         key_value: verified_param_set[:has_one].values[0]
                       }
                     )
  else
    unless association.acts_as_set
      raise JSONAPI::Exceptions::HasManySetReplacementForbidden.new
    end

    object_params = {relationships: {format_key(association.name) => {data: data}}}
    verified_param_set = parse_params(object_params, updatable_fields)

    @operations.push JSONAPI::ReplaceHasManyAssociationOperation.new(
                       resource_klass,
                       {
                         resource_id: parent_key,
                         association_type: association_type,
                         data: verified_param_set[:has_many].values[0]
                       }
                     )
  end
end

#set_default_filtersObject



229
230
231
232
233
234
# File 'lib/jsonapi/request.rb', line 229

def set_default_filters
  @resource_klass._allowed_filters.each do |filter, opts|
    next if opts[:default].nil? || !@filters[filter].nil?
    @filters[filter] = opts[:default]
  end
end

#setup_action(params) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/jsonapi/request.rb', line 28

def setup_action(params)
  return if params.nil?

  @resource_klass ||= Resource.resource_for(params[:controller]) if params[:controller]

  unless params.nil?
    setup_action_method_name = "setup_#{params[:action]}_action"
    if respond_to?(setup_action_method_name)
      send(setup_action_method_name, params)
    end
  end
rescue ActionController::ParameterMissing => e
  @errors.concat(JSONAPI::Exceptions::ParameterMissing.new(e.param).errors)
end

#setup_create_action(params) ⇒ Object



86
87
88
89
90
# File 'lib/jsonapi/request.rb', line 86

def setup_create_action(params)
  parse_fields(params[:fields])
  parse_include_directives(params[:include])
  parse_add_operation(params.require(:data))
end

#setup_create_association_action(params) ⇒ Object



92
93
94
95
96
# File 'lib/jsonapi/request.rb', line 92

def setup_create_association_action(params)
  parse_add_association_operation(params.require(:data),
                                  params.require(:association),
                                  params.require(@resource_klass._as_parent_key))
end

#setup_destroy_action(params) ⇒ Object



110
111
112
# File 'lib/jsonapi/request.rb', line 110

def setup_destroy_action(params)
  parse_remove_operation(params)
end

#setup_destroy_association_action(params) ⇒ Object



114
115
116
# File 'lib/jsonapi/request.rb', line 114

def setup_destroy_association_action  (params)
  parse_remove_association_operation(params)
end


53
54
55
56
57
58
59
60
61
62
# File 'lib/jsonapi/request.rb', line 53

def setup_get_related_resource_action(params)
  initialize_source(params)
  parse_fields(params[:fields])
  parse_include_directives(params[:include])
  set_default_filters
  parse_filters(params[:filter])
  parse_sort_criteria(params[:sort])
  parse_pagination(params[:page])
  add_show_related_resource_operation(params[:association])
end


64
65
66
67
68
69
70
71
72
73
# File 'lib/jsonapi/request.rb', line 64

def setup_get_related_resources_action(params)
  initialize_source(params)
  parse_fields(params[:fields])
  parse_include_directives(params[:include])
  set_default_filters
  parse_filters(params[:filter])
  parse_sort_criteria(params[:sort])
  parse_pagination(params[:page])
  add_show_related_resources_operation(params[:association])
end

#setup_index_action(params) ⇒ Object



43
44
45
46
47
48
49
50
51
# File 'lib/jsonapi/request.rb', line 43

def setup_index_action(params)
  parse_fields(params[:fields])
  parse_include_directives(params[:include])
  set_default_filters
  parse_filters(params[:filter])
  parse_sort_criteria(params[:sort])
  parse_pagination(params[:page])
  add_find_operation
end

#setup_show_action(params) ⇒ Object



75
76
77
78
79
80
# File 'lib/jsonapi/request.rb', line 75

def setup_show_action(params)
  parse_fields(params[:fields])
  parse_include_directives(params[:include])
  @id = params[:id]
  add_show_operation
end

#setup_show_association_action(params) ⇒ Object



82
83
84
# File 'lib/jsonapi/request.rb', line 82

def setup_show_association_action(params)
  add_show_association_operation(params[:association], params.require(@resource_klass._as_parent_key))
end

#setup_update_action(params) ⇒ Object



104
105
106
107
108
# File 'lib/jsonapi/request.rb', line 104

def setup_update_action(params)
  parse_fields(params[:fields])
  parse_include_directives(params[:include])
  parse_replace_operation(params.require(:data), params.require(:id))
end

#setup_update_association_action(params) ⇒ Object



98
99
100
101
102
# File 'lib/jsonapi/request.rb', line 98

def setup_update_association_action(params)
  parse_update_association_operation(params.fetch(:data),
                                     params.require(:association),
                                     params.require(@resource_klass._as_parent_key))
end

#unformat_key(key) ⇒ Object



665
666
667
668
# File 'lib/jsonapi/request.rb', line 665

def unformat_key(key)
  unformatted_key = @key_formatter.unformat(key)
  unformatted_key.nil? ? nil : unformatted_key.to_sym
end

#unformat_value(attribute, value) ⇒ Object



473
474
475
476
# File 'lib/jsonapi/request.rb', line 473

def unformat_value(attribute, value)
  value_formatter = JSONAPI::ValueFormatter.value_formatter_for(@resource_klass._attribute_options(attribute)[:format])
  value_formatter.unformat(value)
end

#updatable_fieldsObject

TODO: Please remove after ‘updateable_fields` is removed :nocov:



503
504
505
506
507
508
509
# File 'lib/jsonapi/request.rb', line 503

def updatable_fields
  if @resource_klass.respond_to?(:updateable_fields)
    @resource_klass.updateable_fields(@context)
  else
    @resource_klass.updatable_fields(@context)
  end
end

#verify_permitted_params(params, allowed_fields) ⇒ Object



478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
# File 'lib/jsonapi/request.rb', line 478

def verify_permitted_params(params, allowed_fields)
  formatted_allowed_fields = allowed_fields.collect { |field| format_key(field).to_sym }
  params_not_allowed = []

  params.each do |key, value|
    case key.to_s
      when 'relationships'
        value.each_key do |links_key|
          params_not_allowed.push(links_key) unless formatted_allowed_fields.include?(links_key.to_sym)
        end
      when 'attributes'
        value.each do |attr_key, attr_value|
          params_not_allowed.push(attr_key) unless formatted_allowed_fields.include?(attr_key.to_sym)
        end
      when 'type', 'id'
      else
        params_not_allowed.push(key)
    end
  end

  raise JSONAPI::Exceptions::ParametersNotAllowed.new(params_not_allowed) if params_not_allowed.length > 0
end

#verify_type(type) ⇒ Object



347
348
349
350
351
352
353
# File 'lib/jsonapi/request.rb', line 347

def verify_type(type)
  if type.nil?
    raise JSONAPI::Exceptions::ParameterMissing.new(:type)
  elsif unformat_key(type).to_sym != @resource_klass._type
    raise JSONAPI::Exceptions::InvalidResource.new(type)
  end
end