Class: JSONAPI::Resource
- Inherits:
-
Object
- Object
- JSONAPI::Resource
- Includes:
- Callbacks
- Defined in:
- lib/jsonapi/resource.rb
Class Attribute Summary collapse
- ._allowed_filters ⇒ Object
-
._attributes ⇒ Object
Returns the value of attribute _attributes.
-
._model_hints ⇒ Object
Returns the value of attribute _model_hints.
- ._paginator ⇒ Object
-
._relationships ⇒ Object
Returns the value of attribute _relationships.
-
._type ⇒ Object
Returns the value of attribute _type.
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
Class Method Summary collapse
- ._abstract ⇒ Object
- ._add_relationship(klass, *attrs) ⇒ Object
- ._allowed_filter?(filter) ⇒ Boolean
- ._as_parent_key ⇒ Object
-
._attribute_options(attr) ⇒ Object
quasi private class methods.
- ._build_joins(associations) ⇒ Object
- ._cache_field ⇒ Object
- ._caching ⇒ Object
- ._has_attribute?(attr) ⇒ Boolean
- ._immutable ⇒ Object
- ._lookup_association_chain(model_names) ⇒ Object
- ._model_class ⇒ Object
- ._model_name ⇒ Object
- ._primary_key ⇒ Object
- ._relationship(type) ⇒ Object
- ._resource_name_from_type(type) ⇒ Object
- ._table_name ⇒ Object
- ._updatable_relationships ⇒ Object
- .abstract(val = true) ⇒ Object
- .apply_filter(records, filter, value, options = {}) ⇒ Object
- .apply_filters(records, filters, options = {}) ⇒ Object
- .apply_included_resources_filters(records, options = {}) ⇒ Object
- .apply_includes(records, options = {}) ⇒ Object
- .apply_pagination(records, paginator, order_options) ⇒ Object
- .apply_sort(records, order_options, _context = {}) ⇒ Object
- .attribute(attribute_name, options = {}) ⇒ Object
- .attribute_caching_context(context) ⇒ Object
-
.attributes(*attrs) ⇒ Object
Methods used in defining a resource class.
- .belongs_to(*attrs) ⇒ Object
- .cache_field(field) ⇒ Object
- .caching(val = true) ⇒ Object
- .caching? ⇒ Boolean
- .construct_order_options(sort_params) ⇒ Object
-
.count_records(records) ⇒ Object
Assumes ActiveRecord’s counting.
-
.creatable_fields(_context = nil) ⇒ Object
Override in your resource to filter the creatable keys.
- .create(context) ⇒ Object
- .create_model ⇒ Object
- .default_attribute_options ⇒ Object
- .default_sort ⇒ Object
- .fields ⇒ Object
- .filter(attr, *args) ⇒ Object
- .filter_records(filters, options, records = records(options)) ⇒ Object
- .filters(*attrs) ⇒ Object
- .find(filters, options = {}) ⇒ Object
- .find_by_key(key, options = {}) ⇒ Object
- .find_by_key_serialized_with_caching(key, serializer, options = {}) ⇒ Object
- .find_by_keys(keys, options = {}) ⇒ Object
- .find_count(filters, options = {}) ⇒ Object
- .find_serialized_with_caching(filters_or_source, serializer, options = {}) ⇒ Object
- .has_many(*attrs) ⇒ Object
- .has_one(*attrs) ⇒ Object
- .immutable(val = true) ⇒ Object
- .inherited(subclass) ⇒ Object
-
.inject_method_definition(name, body) ⇒ Object
Allows JSONAPI::RelationshipBuilder to access metaprogramming hooks.
- .is_filter_relationship?(filter) ⇒ Boolean
- .key_type(key_type) ⇒ Object
- .model_hint(model: _model_name, resource: _type) ⇒ Object
- .model_name(model, options = {}) ⇒ Object
- .module_path ⇒ Object
- .mutable? ⇒ Boolean
- .paginator(paginator) ⇒ Object
- .primary_key(key) ⇒ Object
- .rebuild_relationships(relationships) ⇒ Object
-
.records(_options = {}) ⇒ Object
Override this method if you want to customize the relation for finder methods (find, find_by_key, find_serialized_with_caching).
- .register_relationship(name, relationship_object) ⇒ Object
- .relationship(*attrs) ⇒ Object
- .resolve_relationship_names_to_relations(resource_klass, model_includes, options = {}) ⇒ Object
- .resource_for(type) ⇒ Object
- .resource_for_model(model) ⇒ Object
- .resource_key_type ⇒ Object
- .resource_type_for(model) ⇒ Object
- .resources_for(records, context) ⇒ Object
- .routing_options(options) ⇒ Object
- .routing_resource_options ⇒ Object
- .sort_records(records, order_options, context = {}) ⇒ Object
-
.sortable_fields(_context = nil) ⇒ Object
Override in your resource to filter the sortable keys.
-
.updatable_fields(_context = nil) ⇒ Object
Override in your resource to filter the updatable keys.
-
.verify_custom_filter(filter, value, _context = nil) ⇒ Object
Either add a custom :verify labmda or override verify_custom_filter to allow for custom filters.
- .verify_filter(filter, raw, context = nil) ⇒ Object
- .verify_filters(filters, context = nil) ⇒ Object
- .verify_key(key, context = nil) ⇒ Object
-
.verify_keys(keys, context = nil) ⇒ Object
override to allow for key processing and checking.
-
.verify_relationship_filter(filter, raw, _context = nil) ⇒ Object
Either add a custom :verify labmda or override verify_relationship_filter to allow for custom relationship logic, such as uuids, multiple keys or permission checks on keys.
Instance Method Summary collapse
- #_model ⇒ Object
- #cache_id ⇒ Object
- #change(callback) ⇒ Object
- #create_to_many_links(relationship_type, relationship_key_values, options = {}) ⇒ Object
-
#custom_links(_options) ⇒ Object
Override this to return custom links must return a hash, which will be merged with the default { self: ‘self-url’ } links hash links keys will be not be formatted with the key formatter for the serializer by default.
-
#fetchable_fields ⇒ Object
Override this on a resource instance to override the fetchable keys.
- #id ⇒ Object
-
#initialize(model, context) ⇒ Resource
constructor
A new instance of Resource.
- #is_new? ⇒ Boolean
-
#meta(_options) ⇒ Object
Override this to return resource level meta data must return a hash, and if the hash is empty the meta section will not be serialized with the resource meta keys will be not be formatted with the key formatter for the serializer by default.
- #model_error_messages ⇒ Object
- #preloaded_fragments ⇒ Object
-
#records_for(relation_name) ⇒ Object
Override this on a resource to customize how the associated records are fetched for a model.
- #remove ⇒ Object
- #remove_to_many_link(relationship_type, key, options = {}) ⇒ Object
- #remove_to_one_link(relationship_type, options = {}) ⇒ Object
- #replace_fields(field_data) ⇒ Object
- #replace_polymorphic_to_one_link(relationship_type, relationship_key_value, relationship_key_type, options = {}) ⇒ Object
- #replace_to_many_links(relationship_type, relationship_key_values, options = {}) ⇒ Object
- #replace_to_one_link(relationship_type, relationship_key_value, options = {}) ⇒ Object
-
#validation_error_metadata ⇒ Object
Add metadata to validation error objects.
Methods included from Callbacks
Constructor Details
#initialize(model, context) ⇒ Resource
Returns a new instance of Resource.
23 24 25 26 27 28 29 |
# File 'lib/jsonapi/resource.rb', line 23 def initialize(model, context) @model = model @context = context @reload_needed = false @changing = false @save_needed = false end |
Class Attribute Details
._allowed_filters ⇒ Object
976 977 978 |
# File 'lib/jsonapi/resource.rb', line 976 def _allowed_filters defined?(@_allowed_filters) ? @_allowed_filters : { id: {} } end |
._attributes ⇒ Object
Returns the value of attribute _attributes.
483 484 485 |
# File 'lib/jsonapi/resource.rb', line 483 def _attributes @_attributes end |
._model_hints ⇒ Object
Returns the value of attribute _model_hints.
483 484 485 |
# File 'lib/jsonapi/resource.rb', line 483 def _model_hints @_model_hints end |
._paginator ⇒ Object
980 981 982 |
# File 'lib/jsonapi/resource.rb', line 980 def _paginator @_paginator ||= JSONAPI.configuration.default_paginator end |
._relationships ⇒ Object
Returns the value of attribute _relationships.
483 484 485 |
# File 'lib/jsonapi/resource.rb', line 483 def _relationships @_relationships end |
._type ⇒ Object
Returns the value of attribute _type.
483 484 485 |
# File 'lib/jsonapi/resource.rb', line 483 def _type @_type end |
Instance Attribute Details
#context ⇒ Object (readonly)
Returns the value of attribute context.
8 9 10 |
# File 'lib/jsonapi/resource.rb', line 8 def context @context end |
Class Method Details
._abstract ⇒ Object
992 993 994 |
# File 'lib/jsonapi/resource.rb', line 992 def _abstract @abstract end |
._add_relationship(klass, *attrs) ⇒ Object
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 |
# File 'lib/jsonapi/resource.rb', line 1067 def _add_relationship(klass, *attrs) = attrs. [:parent_resource] = self attrs.each do |name| relationship_name = name.to_sym check_reserved_relationship_name(relationship_name) check_duplicate_relationship_name(relationship_name) JSONAPI::RelationshipBuilder.new(klass, _model_class, ) .define_relationship_methods(relationship_name.to_sym) end end |
._allowed_filter?(filter) ⇒ Boolean
1040 1041 1042 |
# File 'lib/jsonapi/resource.rb', line 1040 def _allowed_filter?(filter) !_allowed_filters[filter].nil? end |
._as_parent_key ⇒ Object
972 973 974 |
# File 'lib/jsonapi/resource.rb', line 972 def _as_parent_key @_as_parent_key ||= "#{_type.to_s.singularize}_id" end |
._attribute_options(attr) ⇒ Object
quasi private class methods
931 932 933 |
# File 'lib/jsonapi/resource.rb', line 931 def (attr) .merge(@_attributes[attr]) end |
._build_joins(associations) ⇒ Object
686 687 688 689 690 691 692 693 694 |
# File 'lib/jsonapi/resource.rb', line 686 def _build_joins(associations) joins = [] associations.inject do |prev, current| joins << "LEFT JOIN #{current.table_name} AS #{current.name}_sorting ON #{current.name}_sorting.id = #{prev.table_name}.#{current.foreign_key}" current end joins.join("\n") end |
._cache_field ⇒ Object
964 965 966 |
# File 'lib/jsonapi/resource.rb', line 964 def _cache_field @_cache_field ||= JSONAPI.configuration.default_resource_cache_field end |
._caching ⇒ Object
1012 1013 1014 |
# File 'lib/jsonapi/resource.rb', line 1012 def _caching @caching end |
._has_attribute?(attr) ⇒ Boolean
935 936 937 |
# File 'lib/jsonapi/resource.rb', line 935 def _has_attribute?(attr) @_attributes.keys.include?(attr.to_sym) end |
._immutable ⇒ Object
1000 1001 1002 |
# File 'lib/jsonapi/resource.rb', line 1000 def _immutable @immutable end |
._lookup_association_chain(model_names) ⇒ Object
673 674 675 676 677 678 679 680 681 682 683 684 |
# File 'lib/jsonapi/resource.rb', line 673 def _lookup_association_chain(model_names) associations = [] model_names.inject do |prev, current| association = prev.classify.constantize.reflect_on_all_associations.detect do |assoc| assoc.name.to_s.downcase == current.downcase end associations << association association.class_name end associations end |
._model_class ⇒ Object
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 |
# File 'lib/jsonapi/resource.rb', line 1024 def _model_class return nil if _abstract return @model_class if @model_class model_name = _model_name return nil if model_name.to_s.blank? @model_class = model_name.to_s.safe_constantize if @model_class.nil? warn "[MODEL NOT FOUND] Model could not be found for #{self.name}. If this is a base Resource declare it as abstract." end @model_class end |
._model_name ⇒ Object
948 949 950 951 952 953 954 955 956 957 958 |
# File 'lib/jsonapi/resource.rb', line 948 def _model_name if _abstract return '' else return @_model_name.to_s if defined?(@_model_name) class_name = self.name return '' if class_name.nil? @_model_name = class_name.demodulize.sub(/Resource$/, '') return @_model_name.to_s end end |
._primary_key ⇒ Object
960 961 962 |
# File 'lib/jsonapi/resource.rb', line 960 def _primary_key @_primary_key ||= _model_class.respond_to?(:primary_key) ? _model_class.primary_key : :id end |
._relationship(type) ⇒ Object
943 944 945 946 |
# File 'lib/jsonapi/resource.rb', line 943 def _relationship(type) type = type.to_sym @_relationships[type] end |
._resource_name_from_type(type) ⇒ Object
470 471 472 |
# File 'lib/jsonapi/resource.rb', line 470 def _resource_name_from_type(type) "#{type.to_s.underscore.singularize}_resource".camelize end |
._table_name ⇒ Object
968 969 970 |
# File 'lib/jsonapi/resource.rb', line 968 def _table_name @_table_name ||= _model_class.respond_to?(:table_name) ? _model_class.table_name : _model_name.tableize end |
._updatable_relationships ⇒ Object
939 940 941 |
# File 'lib/jsonapi/resource.rb', line 939 def _updatable_relationships @_relationships.map { |key, _relationship| key } end |
.abstract(val = true) ⇒ Object
988 989 990 |
# File 'lib/jsonapi/resource.rb', line 988 def abstract(val = true) @abstract = val end |
.apply_filter(records, filter, value, options = {}) ⇒ Object
696 697 698 699 700 701 702 703 704 705 706 707 708 |
# File 'lib/jsonapi/resource.rb', line 696 def apply_filter(records, filter, value, = {}) strategy = _allowed_filters.fetch(filter.to_sym, Hash.new)[:apply] if strategy if strategy.is_a?(Symbol) || strategy.is_a?(String) send(strategy, records, value, ) else strategy.call(records, value, ) end else records.where(filter => value) end end |
.apply_filters(records, filters, options = {}) ⇒ Object
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 |
# File 'lib/jsonapi/resource.rb', line 710 def apply_filters(records, filters, = {}) required_includes = [] if filters filters.each do |filter, value| if _relationships.include?(filter) if _relationships[filter].belongs_to? records = apply_filter(records, _relationships[filter].foreign_key, value, ) else required_includes.push(filter.to_s) records = apply_filter(records, "#{_relationships[filter].table_name}.#{_relationships[filter].primary_key}", value, ) end else records = apply_filter(records, filter, value, ) end end end if required_includes.any? records = apply_includes(records, .merge(include_directives: IncludeDirectives.new(self, required_includes, force_eager_load: true))) end records end |
.apply_included_resources_filters(records, options = {}) ⇒ Object
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 |
# File 'lib/jsonapi/resource.rb', line 735 def apply_included_resources_filters(records, = {}) include_directives = [:include_directives] return records unless include_directives = include_directives.include_directives.fetch(:include_related) .reduce(records) do |memo, (relationship_name, config)| relationship = _relationship(relationship_name) next memo unless relationship && relationship.is_a?(JSONAPI::Relationship::ToMany) filtering_resource = relationship.resource_klass # Don't try to merge where clauses when relation isn't already being joined to query. next memo unless config[:include_in_join] filters = config[:include_filters] next memo unless filters rel_records = filtering_resource.apply_filters(filtering_resource.records(), filters, ).references(relationship_name) memo.merge(rel_records) end end |
.apply_includes(records, options = {}) ⇒ Object
637 638 639 640 641 642 643 644 645 |
# File 'lib/jsonapi/resource.rb', line 637 def apply_includes(records, = {}) include_directives = [:include_directives] if include_directives model_includes = resolve_relationship_names_to_relations(self, include_directives.model_includes, ) records = records.includes(model_includes) end records end |
.apply_pagination(records, paginator, order_options) ⇒ Object
647 648 649 650 |
# File 'lib/jsonapi/resource.rb', line 647 def apply_pagination(records, paginator, ) records = paginator.apply(records, ) if paginator records end |
.apply_sort(records, order_options, _context = {}) ⇒ Object
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 |
# File 'lib/jsonapi/resource.rb', line 652 def apply_sort(records, , _context = {}) if .any? .each_pair do |field, direction| if field.to_s.include?(".") *model_names, column_name = field.split(".") associations = _lookup_association_chain([records.model.to_s, *model_names]) joins_query = _build_joins([records.model, *associations]) # _sorting is appended to avoid name clashes with manual joins eg. overridden filters order_by_query = "#{associations.last.name}_sorting.#{column_name} #{direction}" records = records.joins(joins_query).order(order_by_query) else records = records.order(field => direction) end end end records end |
.attribute(attribute_name, options = {}) ⇒ Object
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 |
# File 'lib/jsonapi/resource.rb', line 510 def attribute(attribute_name, = {}) attr = attribute_name.to_sym check_reserved_attribute_name(attr) if (attr == :id) && ([:format].nil?) ActiveSupport::Deprecation.warn('Id without format is no longer supported. Please remove ids from attributes, or specify a format.') end check_duplicate_attribute_name(attr) if [:format].nil? @_attributes ||= {} @_attributes[attr] = define_method attr do @model.public_send([:delegate] ? [:delegate].to_sym : attr) end unless method_defined?(attr) define_method "#{attr}=" do |value| @model.public_send("#{[:delegate] ? [:delegate].to_sym : attr}=", value) end unless method_defined?("#{attr}=") end |
.attribute_caching_context(context) ⇒ Object
1020 1021 1022 |
# File 'lib/jsonapi/resource.rb', line 1020 def attribute_caching_context(context) nil end |
.attributes(*attrs) ⇒ Object
Methods used in defining a resource class
503 504 505 506 507 508 |
# File 'lib/jsonapi/resource.rb', line 503 def attributes(*attrs) = attrs..dup attrs.each do |attr| attribute(attr, ) end end |
.belongs_to(*attrs) ⇒ Object
555 556 557 558 559 560 561 562 |
# File 'lib/jsonapi/resource.rb', line 555 def belongs_to(*attrs) ActiveSupport::Deprecation.warn "In #{name} you exposed a `has_one` relationship "\ " using the `belongs_to` class method. We think `has_one`" \ " is more appropriate. If you know what you're doing," \ " and don't want to see this warning again, override the" \ " `belongs_to` class method on your resource." _add_relationship(Relationship::ToOne, *attrs) end |
.cache_field(field) ⇒ Object
594 595 596 |
# File 'lib/jsonapi/resource.rb', line 594 def cache_field(field) @_cache_field = field.to_sym end |
.caching(val = true) ⇒ Object
1008 1009 1010 |
# File 'lib/jsonapi/resource.rb', line 1008 def caching(val = true) @caching = val end |
.caching? ⇒ Boolean
1016 1017 1018 |
# File 'lib/jsonapi/resource.rb', line 1016 def caching? @caching && !JSONAPI.configuration.resource_cache.nil? end |
.construct_order_options(sort_params) ⇒ Object
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 |
# File 'lib/jsonapi/resource.rb', line 1056 def (sort_params) sort_params ||= default_sort return {} unless sort_params sort_params.each_with_object({}) do |sort, order_hash| field = sort[:field].to_s == 'id' ? _primary_key : sort[:field].to_s order_hash[field] = sort[:direction] end end |
.count_records(records) ⇒ Object
Assumes ActiveRecord’s counting. Override if you need a different counting method
766 767 768 |
# File 'lib/jsonapi/resource.rb', line 766 def count_records(records) records.count(:all) end |
.creatable_fields(_context = nil) ⇒ Object
Override in your resource to filter the creatable keys
604 605 606 |
# File 'lib/jsonapi/resource.rb', line 604 def creatable_fields(_context = nil) _updatable_relationships | _attributes.keys - [:id] end |
.create(context) ⇒ Object
486 487 488 |
# File 'lib/jsonapi/resource.rb', line 486 def create(context) new(create_model, context) end |
.create_model ⇒ Object
490 491 492 |
# File 'lib/jsonapi/resource.rb', line 490 def create_model _model_class.new end |
.default_attribute_options ⇒ Object
532 533 534 |
# File 'lib/jsonapi/resource.rb', line 532 def { format: :default } end |
.default_sort ⇒ Object
1052 1053 1054 |
# File 'lib/jsonapi/resource.rb', line 1052 def default_sort [{field: 'id', direction: :asc}] end |
.fields ⇒ Object
613 614 615 |
# File 'lib/jsonapi/resource.rb', line 613 def fields _relationships.keys | _attributes.keys end |
.filter(attr, *args) ⇒ Object
586 587 588 |
# File 'lib/jsonapi/resource.rb', line 586 def filter(attr, *args) @_allowed_filters[attr.to_sym] = args. end |
.filter_records(filters, options, records = records(options)) ⇒ Object
755 756 757 758 759 |
# File 'lib/jsonapi/resource.rb', line 755 def filter_records(filters, , records = records()) records = apply_filters(records, filters, ) records = apply_includes(records, ) apply_included_resources_filters(records, ) end |
.filters(*attrs) ⇒ Object
582 583 584 |
# File 'lib/jsonapi/resource.rb', line 582 def filters(*attrs) @_allowed_filters.merge!(attrs.inject({}) { |h, attr| h[attr] = {}; h }) end |
.find(filters, options = {}) ⇒ Object
774 775 776 |
# File 'lib/jsonapi/resource.rb', line 774 def find(filters, = {}) resources_for(find_records(filters, ), [:context]) end |
.find_by_key(key, options = {}) ⇒ Object
806 807 808 809 810 811 812 |
# File 'lib/jsonapi/resource.rb', line 806 def find_by_key(key, = {}) context = [:context] records = find_records({_primary_key => key}, .except(:paginator, :sort_criteria)) model = records.first fail JSONAPI::Exceptions::RecordNotFound.new(key) if model.nil? self.resource_for_model(model).new(model, context) end |
.find_by_key_serialized_with_caching(key, serializer, options = {}) ⇒ Object
814 815 816 817 818 819 820 821 822 823 824 |
# File 'lib/jsonapi/resource.rb', line 814 def find_by_key_serialized_with_caching(key, serializer, = {}) if _model_class.respond_to?(:all) && _model_class.respond_to?(:arel_table) results = find_serialized_with_caching({_primary_key => key}, serializer, ) result = results.first fail JSONAPI::Exceptions::RecordNotFound.new(key) if result.nil? return result else resource = find_by_key(key, ) return cached_resources_for([resource], serializer, ).first end end |
.find_by_keys(keys, options = {}) ⇒ Object
785 786 787 788 789 790 791 792 793 |
# File 'lib/jsonapi/resource.rb', line 785 def find_by_keys(keys, = {}) context = [:context] records = records() records = apply_includes(records, ) models = records.where({_primary_key => keys}) models.collect do |model| self.resource_for_model(model).new(model, context) end end |
.find_count(filters, options = {}) ⇒ Object
770 771 772 |
# File 'lib/jsonapi/resource.rb', line 770 def find_count(filters, = {}) count_records(filter_records(filters, )) end |
.find_serialized_with_caching(filters_or_source, serializer, options = {}) ⇒ Object
795 796 797 798 799 800 801 802 803 804 |
# File 'lib/jsonapi/resource.rb', line 795 def find_serialized_with_caching(filters_or_source, serializer, = {}) if filters_or_source.is_a?(ActiveRecord::Relation) records = filters_or_source elsif _model_class.respond_to?(:all) && _model_class.respond_to?(:arel_table) records = find_records(filters_or_source, .except(:include_directives)) else records = find(filters_or_source, ) end cached_resources_for(records, serializer, ) end |
.has_many(*attrs) ⇒ Object
564 565 566 |
# File 'lib/jsonapi/resource.rb', line 564 def has_many(*attrs) _add_relationship(Relationship::ToMany, *attrs) end |
.has_one(*attrs) ⇒ Object
551 552 553 |
# File 'lib/jsonapi/resource.rb', line 551 def has_one(*attrs) _add_relationship(Relationship::ToOne, *attrs) end |
.immutable(val = true) ⇒ Object
996 997 998 |
# File 'lib/jsonapi/resource.rb', line 996 def immutable(val = true) @immutable = val end |
.inherited(subclass) ⇒ Object
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 |
# File 'lib/jsonapi/resource.rb', line 414 def inherited(subclass) subclass.abstract(false) subclass.immutable(false) subclass.caching(false) subclass._attributes = (_attributes || {}).dup subclass._model_hints = (_model_hints || {}).dup unless _model_name.empty? subclass.model_name(_model_name, add_model_hint: (_model_hints && !_model_hints[_model_name].nil?) == true) end subclass.rebuild_relationships(_relationships || {}) subclass._allowed_filters = (_allowed_filters || Set.new).dup type = subclass.name.demodulize.sub(/Resource$/, '').underscore subclass._type = type.pluralize.to_sym unless subclass._attributes[:id] subclass.attribute :id, format: :id end check_reserved_resource_name(subclass._type, subclass.name) end |
.inject_method_definition(name, body) ⇒ Object
Allows JSONAPI::RelationshipBuilder to access metaprogramming hooks
1082 1083 1084 |
# File 'lib/jsonapi/resource.rb', line 1082 def inject_method_definition(name, body) define_method(name, body) end |
.is_filter_relationship?(filter) ⇒ Boolean
844 845 846 |
# File 'lib/jsonapi/resource.rb', line 844 def is_filter_relationship?(filter) filter == _type || _relationships.include?(filter) end |
.key_type(key_type) ⇒ Object
876 877 878 |
# File 'lib/jsonapi/resource.rb', line 876 def key_type(key_type) @_resource_key_type = key_type end |
.model_hint(model: _model_name, resource: _type) ⇒ Object
576 577 578 579 580 |
# File 'lib/jsonapi/resource.rb', line 576 def model_hint(model: _model_name, resource: _type) resource_type = ((resource.is_a?(Class)) && (resource < JSONAPI::Resource)) ? resource._type : resource.to_s _model_hints[model.to_s.gsub('::', '/').underscore] = resource_type.to_s end |
.model_name(model, options = {}) ⇒ Object
568 569 570 571 572 573 574 |
# File 'lib/jsonapi/resource.rb', line 568 def model_name(model, = {}) @_model_name = model.to_sym model_hint(model: @_model_name, resource: self) unless [:add_model_hint] == false rebuild_relationships(_relationships) end |
.module_path ⇒ Object
1044 1045 1046 1047 1048 1049 1050 |
# File 'lib/jsonapi/resource.rb', line 1044 def module_path if name == 'JSONAPI::Resource' '' else name =~ /::[^:]+\Z/ ? ($`.freeze.gsub('::', '/') + '/').underscore : '' end end |
.mutable? ⇒ Boolean
1004 1005 1006 |
# File 'lib/jsonapi/resource.rb', line 1004 def mutable? !@immutable end |
.paginator(paginator) ⇒ Object
984 985 986 |
# File 'lib/jsonapi/resource.rb', line 984 def paginator(paginator) @_paginator = paginator end |
.primary_key(key) ⇒ Object
590 591 592 |
# File 'lib/jsonapi/resource.rb', line 590 def primary_key(key) @_primary_key = key.to_sym end |
.rebuild_relationships(relationships) ⇒ Object
440 441 442 443 444 445 446 447 448 449 450 451 452 |
# File 'lib/jsonapi/resource.rb', line 440 def rebuild_relationships(relationships) original_relationships = relationships.deep_dup @_relationships = {} if original_relationships.is_a?(Hash) original_relationships.each_value do |relationship| = relationship..dup [:parent_resource] = self _add_relationship(relationship.class, relationship.name, ) end end end |
.records(_options = {}) ⇒ Object
Override this method if you want to customize the relation for finder methods (find, find_by_key, find_serialized_with_caching)
828 829 830 |
# File 'lib/jsonapi/resource.rb', line 828 def records( = {}) _model_class.all end |
.register_relationship(name, relationship_object) ⇒ Object
1086 1087 1088 |
# File 'lib/jsonapi/resource.rb', line 1086 def register_relationship(name, relationship_object) @_relationships[name] = relationship_object end |
.relationship(*attrs) ⇒ Object
536 537 538 539 540 541 542 543 544 545 546 547 548 549 |
# File 'lib/jsonapi/resource.rb', line 536 def relationship(*attrs) = attrs. klass = case [:to] when :one Relationship::ToOne when :many Relationship::ToMany else #:nocov:# fail ArgumentError.new('to: must be either :one or :many') #:nocov:# end _add_relationship(klass, *attrs, .except(:to)) end |
.resolve_relationship_names_to_relations(resource_klass, model_includes, options = {}) ⇒ Object
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'lib/jsonapi/resource.rb', line 617 def resolve_relationship_names_to_relations(resource_klass, model_includes, = {}) case model_includes when Array return model_includes.map do |value| resolve_relationship_names_to_relations(resource_klass, value, ) end when Hash model_includes.keys.each do |key| relationship = resource_klass._relationships[key] value = model_includes[key] model_includes.delete(key) model_includes[relationship.relation_name()] = resolve_relationship_names_to_relations(relationship.resource_klass, value, ) end return model_includes when Symbol relationship = resource_klass._relationships[model_includes] return relationship.relation_name() end end |
.resource_for(type) ⇒ Object
454 455 456 457 458 459 460 461 462 463 464 |
# File 'lib/jsonapi/resource.rb', line 454 def resource_for(type) type = type.underscore type_with_module = type.start_with?(module_path) ? type : module_path + type resource_name = _resource_name_from_type(type_with_module) resource = resource_name.safe_constantize if resource_name if resource.nil? fail NameError, "JSONAPI: Could not find resource '#{type}'. (Class #{resource_name} not found)" end resource end |
.resource_for_model(model) ⇒ Object
466 467 468 |
# File 'lib/jsonapi/resource.rb', line 466 def resource_for_model(model) resource_for(resource_type_for(model)) end |
.resource_key_type ⇒ Object
880 881 882 |
# File 'lib/jsonapi/resource.rb', line 880 def resource_key_type @_resource_key_type ||= JSONAPI.configuration.resource_key_type end |
.resource_type_for(model) ⇒ Object
474 475 476 477 478 479 480 481 |
# File 'lib/jsonapi/resource.rb', line 474 def resource_type_for(model) model_name = model.class.to_s.underscore if _model_hints[model_name] _model_hints[model_name] else model_name.rpartition('/').last end end |
.resources_for(records, context) ⇒ Object
778 779 780 781 782 783 |
# File 'lib/jsonapi/resource.rb', line 778 def resources_for(records, context) records.collect do |model| resource_class = self.resource_for_model(model) resource_class.new(model, context) end end |
.routing_options(options) ⇒ Object
494 495 496 |
# File 'lib/jsonapi/resource.rb', line 494 def () @_routing_resource_options = end |
.routing_resource_options ⇒ Object
498 499 500 |
# File 'lib/jsonapi/resource.rb', line 498 def @_routing_resource_options ||= {} end |
.sort_records(records, order_options, context = {}) ⇒ Object
761 762 763 |
# File 'lib/jsonapi/resource.rb', line 761 def sort_records(records, , context = {}) apply_sort(records, , context) end |
.sortable_fields(_context = nil) ⇒ Object
Override in your resource to filter the sortable keys
609 610 611 |
# File 'lib/jsonapi/resource.rb', line 609 def sortable_fields(_context = nil) _attributes.keys end |
.updatable_fields(_context = nil) ⇒ Object
Override in your resource to filter the updatable keys
599 600 601 |
# File 'lib/jsonapi/resource.rb', line 599 def updatable_fields(_context = nil) _updatable_relationships | _attributes.keys - [:id] end |
.verify_custom_filter(filter, value, _context = nil) ⇒ Object
Either add a custom :verify labmda or override verify_custom_filter to allow for custom filters
920 921 922 |
# File 'lib/jsonapi/resource.rb', line 920 def verify_custom_filter(filter, value, _context = nil) [filter, value] end |
.verify_filter(filter, raw, context = nil) ⇒ Object
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 |
# File 'lib/jsonapi/resource.rb', line 848 def verify_filter(filter, raw, context = nil) filter_values = [] if raw.present? begin filter_values += raw.is_a?(String) ? CSV.parse_line(raw) : [raw] rescue CSV::MalformedCSVError filter_values << raw end end strategy = _allowed_filters.fetch(filter, Hash.new)[:verify] if strategy if strategy.is_a?(Symbol) || strategy.is_a?(String) values = send(strategy, filter_values, context) else values = strategy.call(filter_values, context) end [filter, values] else if is_filter_relationship?(filter) verify_relationship_filter(filter, filter_values, context) else verify_custom_filter(filter, filter_values, context) end end end |
.verify_filters(filters, context = nil) ⇒ Object
832 833 834 835 836 837 838 839 840 841 842 |
# File 'lib/jsonapi/resource.rb', line 832 def verify_filters(filters, context = nil) verified_filters = {} return verified_filters if filters.nil? filters.each do |filter, raw_value| verified_filter = verify_filter(filter, raw_value, context) verified_filters[verified_filter[0]] = verified_filter[1] end verified_filters end |
.verify_key(key, context = nil) ⇒ Object
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 |
# File 'lib/jsonapi/resource.rb', line 884 def verify_key(key, context = nil) key_type = resource_key_type case key_type when :integer return if key.nil? Integer(key) when :string return if key.nil? if key.to_s.include?(',') raise JSONAPI::Exceptions::InvalidFieldValue.new(:id, key) else key end when :uuid return if key.nil? if key.to_s.match(/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/) key else raise JSONAPI::Exceptions::InvalidFieldValue.new(:id, key) end else key_type.call(key, context) end rescue raise JSONAPI::Exceptions::InvalidFieldValue.new(:id, key) end |
.verify_keys(keys, context = nil) ⇒ Object
override to allow for key processing and checking
913 914 915 916 917 |
# File 'lib/jsonapi/resource.rb', line 913 def verify_keys(keys, context = nil) return keys.collect do |key| verify_key(key, context) end end |
.verify_relationship_filter(filter, raw, _context = nil) ⇒ Object
Either add a custom :verify labmda or override verify_relationship_filter to allow for custom relationship logic, such as uuids, multiple keys or permission checks on keys
926 927 928 |
# File 'lib/jsonapi/resource.rb', line 926 def verify_relationship_filter(filter, raw, _context = nil) [filter, raw] end |
Instance Method Details
#_model ⇒ Object
31 32 33 |
# File 'lib/jsonapi/resource.rb', line 31 def _model @model end |
#cache_id ⇒ Object
39 40 41 |
# File 'lib/jsonapi/resource.rb', line 39 def cache_id [id, _model.public_send(self.class._cache_field)] end |
#change(callback) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/jsonapi/resource.rb', line 47 def change(callback) completed = false if @changing run_callbacks callback do completed = (yield == :completed) end else run_callbacks is_new? ? :create : :update do @changing = true run_callbacks callback do completed = (yield == :completed) end completed = (save == :completed) if @save_needed || is_new? end end return completed ? :completed : :accepted end |
#create_to_many_links(relationship_type, relationship_key_values, options = {}) ⇒ Object
74 75 76 77 78 |
# File 'lib/jsonapi/resource.rb', line 74 def create_to_many_links(relationship_type, relationship_key_values, = {}) change :create_to_many_link do _create_to_many_links(relationship_type, relationship_key_values, ) end end |
#custom_links(_options) ⇒ Object
Override this to return custom links must return a hash, which will be merged with the default { self: ‘self-url’ } links hash links keys will be not be formatted with the key formatter for the serializer by default. They can however use the serializer’s format_key and format_value methods if desired the _options hash will contain the serializer and the serialization_options
168 169 170 |
# File 'lib/jsonapi/resource.rb', line 168 def custom_links() {} end |
#fetchable_fields ⇒ Object
Override this on a resource instance to override the fetchable keys
117 118 119 |
# File 'lib/jsonapi/resource.rb', line 117 def fetchable_fields self.class.fields end |
#id ⇒ Object
35 36 37 |
# File 'lib/jsonapi/resource.rb', line 35 def id _model.public_send(self.class._primary_key) end |
#is_new? ⇒ Boolean
43 44 45 |
# File 'lib/jsonapi/resource.rb', line 43 def is_new? id.nil? end |
#meta(_options) ⇒ Object
Override this to return resource level meta data must return a hash, and if the hash is empty the meta section will not be serialized with the resource meta keys will be not be formatted with the key formatter for the serializer by default. They can however use the serializer’s format_key and format_value methods if desired the _options hash will contain the serializer and the serialization_options
159 160 161 |
# File 'lib/jsonapi/resource.rb', line 159 def () {} end |
#model_error_messages ⇒ Object
127 128 129 |
# File 'lib/jsonapi/resource.rb', line 127 def _model.errors. end |
#preloaded_fragments ⇒ Object
172 173 174 175 |
# File 'lib/jsonapi/resource.rb', line 172 def preloaded_fragments # A hash of hashes @preloaded_fragments ||= Hash.new end |
#records_for(relation_name) ⇒ Object
Override this on a resource to customize how the associated records are fetched for a model. Particularly helpful for authorization.
123 124 125 |
# File 'lib/jsonapi/resource.rb', line 123 def records_for(relation_name) _model.public_send relation_name end |
#remove ⇒ Object
68 69 70 71 72 |
# File 'lib/jsonapi/resource.rb', line 68 def remove run_callbacks :remove do _remove end end |
#remove_to_many_link(relationship_type, key, options = {}) ⇒ Object
98 99 100 101 102 |
# File 'lib/jsonapi/resource.rb', line 98 def remove_to_many_link(relationship_type, key, = {}) change :remove_to_many_link do _remove_to_many_link(relationship_type, key, ) end end |
#remove_to_one_link(relationship_type, options = {}) ⇒ Object
104 105 106 107 108 |
# File 'lib/jsonapi/resource.rb', line 104 def remove_to_one_link(relationship_type, = {}) change :remove_to_one_link do _remove_to_one_link(relationship_type, ) end end |
#replace_fields(field_data) ⇒ Object
110 111 112 113 114 |
# File 'lib/jsonapi/resource.rb', line 110 def replace_fields(field_data) change :replace_fields do _replace_fields(field_data) end end |
#replace_polymorphic_to_one_link(relationship_type, relationship_key_value, relationship_key_type, options = {}) ⇒ Object
92 93 94 95 96 |
# File 'lib/jsonapi/resource.rb', line 92 def replace_polymorphic_to_one_link(relationship_type, relationship_key_value, relationship_key_type, = {}) change :replace_polymorphic_to_one_link do _replace_polymorphic_to_one_link(relationship_type, relationship_key_value, relationship_key_type, ) end end |
#replace_to_many_links(relationship_type, relationship_key_values, options = {}) ⇒ Object
80 81 82 83 84 |
# File 'lib/jsonapi/resource.rb', line 80 def replace_to_many_links(relationship_type, relationship_key_values, = {}) change :replace_to_many_links do _replace_to_many_links(relationship_type, relationship_key_values, ) end end |
#replace_to_one_link(relationship_type, relationship_key_value, options = {}) ⇒ Object
86 87 88 89 90 |
# File 'lib/jsonapi/resource.rb', line 86 def replace_to_one_link(relationship_type, relationship_key_value, = {}) change :replace_to_one_link do _replace_to_one_link(relationship_type, relationship_key_value, ) end end |
#validation_error_metadata ⇒ Object
Add metadata to validation error objects.
Suppose ‘model_error_messages` returned the following error messages hash:
{password: ["too_short", "format"]}
Then to add data to the validation error ‘validation_error_metadata` could return:
{
password: {
"too_short": {"minimum_length" => 6},
"format": {"requirement" => "must contain letters and numbers"}
}
}
The specified metadata is then be merged into the validation error object.
150 151 152 |
# File 'lib/jsonapi/resource.rb', line 150 def {} end |