linked_rails 0.0.4.pre.gb0b6aea40 → 0.0.4.pre.gb254a2893
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/linked_rails/actions/item.rb +3 -11
- data/app/models/linked_rails/actions/object.rb +3 -6
- data/app/models/linked_rails/collection/view.rb +5 -5
- data/app/models/linked_rails/form.rb +1 -1
- data/app/serializers/linked_rails/actions/object_serializer.rb +9 -0
- data/app/serializers/linked_rails/collection_serializer.rb +0 -1
- data/lib/linked_rails/helpers/delta_helper.rb +1 -3
- data/lib/linked_rails/model/collections.rb +1 -5
- data/lib/linked_rails/model/iri.rb +2 -7
- data/lib/linked_rails/serializer/actionable.rb +3 -3
- data/lib/linked_rails/serializer.rb +1 -7
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a9f365ba2a3373bce2eaeaa94f02a9c00f7210c5daa4d1793be61bb235c15a6
|
4
|
+
data.tar.gz: a95518605eccf13bf50eb4eaa86ff37b8d397c0c6d074f064b1835054cac9298
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0629170f7ef4b431900c358f7aa5e3ce78c2345ada4a472f3385884973051cc81aa73fe3211b19e4c9d1be03fc2e42555426fa0d31d5b9e9d53c748a98527615'
|
7
|
+
data.tar.gz: 29cc55d690cd807975a4b04e2e1b6e8b2f6de81a957382a1bcc49feca9b42f17a25655c7a9552c52584257a4dc1412587838a8fe272866c7cd10b902fe8e0de2
|
@@ -61,17 +61,15 @@ module LinkedRails
|
|
61
61
|
end
|
62
62
|
|
63
63
|
def object
|
64
|
-
|
64
|
+
@object = list.instance_exec(&@object) if @object.respond_to?(:call)
|
65
|
+
|
66
|
+
@object || resource
|
65
67
|
end
|
66
68
|
|
67
69
|
def object_iri
|
68
70
|
object&.iri&.anonymous? ? anonymous_object_iri : object&.iri
|
69
71
|
end
|
70
72
|
|
71
|
-
def object_root_relative_iri
|
72
|
-
RDF::URI(object_iri.to_s.split(LinkedRails.iri.to_s).second)
|
73
|
-
end
|
74
|
-
|
75
73
|
def parent
|
76
74
|
return @parent if instance_variable_defined?(:@parent)
|
77
75
|
|
@@ -154,12 +152,6 @@ module LinkedRails
|
|
154
152
|
LinkedRails.translate(:action, :label, self)
|
155
153
|
end
|
156
154
|
|
157
|
-
def object_from_var
|
158
|
-
return @object unless @object.respond_to?(:call)
|
159
|
-
|
160
|
-
@object = list.instance_exec(&@object)
|
161
|
-
end
|
162
|
-
|
163
155
|
def policy_expired?
|
164
156
|
@policy_expired ||= policy && resource_policy.try(:expired?)
|
165
157
|
end
|
@@ -12,8 +12,8 @@ module LinkedRails
|
|
12
12
|
alias parent action
|
13
13
|
delegate :object, to: :action
|
14
14
|
|
15
|
-
def
|
16
|
-
action.
|
15
|
+
def iri
|
16
|
+
action.object_iri
|
17
17
|
end
|
18
18
|
|
19
19
|
class << self
|
@@ -30,10 +30,7 @@ module LinkedRails
|
|
30
30
|
|
31
31
|
parent = parent_from_params!(params, user_context)
|
32
32
|
|
33
|
-
|
34
|
-
object.instance_variable_set(:@iri, parent.object_iri)
|
35
|
-
object.instance_variable_set(:@root_relative_iri, parent.object_root_relative_iri)
|
36
|
-
object
|
33
|
+
new(action: parent) if parent.object.anonymous_iri?
|
37
34
|
end
|
38
35
|
end
|
39
36
|
end
|
@@ -76,19 +76,19 @@ module LinkedRails
|
|
76
76
|
end
|
77
77
|
|
78
78
|
def iris_from_scope?
|
79
|
-
members_query.is_a?(ActiveRecord::Relation) && !polymorphic_collection?
|
79
|
+
members_query.is_a?(ActiveRecord::Relation) && !polymorphic_collection?
|
80
80
|
end
|
81
81
|
|
82
82
|
def members_array
|
83
83
|
members_query.to_a
|
84
84
|
end
|
85
85
|
|
86
|
-
def polymorphic_collection?
|
87
|
-
column =
|
88
|
-
polymorphic =
|
86
|
+
def polymorphic_collection?
|
87
|
+
column = association_class.inheritance_column
|
88
|
+
polymorphic = association_class.columns_hash.include?(column)
|
89
89
|
return false unless polymorphic
|
90
90
|
|
91
|
-
return true if
|
91
|
+
return true if association_class.descends_from_active_record?
|
92
92
|
|
93
93
|
members_query.where_values_hash.include?(column) &&
|
94
94
|
members_query.where_values_hash[column] != association_class.to_s
|
@@ -13,7 +13,6 @@ module LinkedRails
|
|
13
13
|
end
|
14
14
|
attribute :serialized_iri_template, predicate: Vocab.ontola[:iriTemplate]
|
15
15
|
attribute :iri_template_opts, predicate: Vocab.ontola[:iriTemplateOpts]
|
16
|
-
attribute :download_urls, predicate: Vocab.schema.downloadUrl
|
17
16
|
attribute :default_type, predicate: Vocab.ontola[:defaultType], &:type
|
18
17
|
attribute :display, predicate: Vocab.ontola[:collectionDisplay] do |object|
|
19
18
|
Vocab.ontola["collectionDisplay/#{object.display || :default}"]
|
@@ -8,9 +8,7 @@ module LinkedRails
|
|
8
8
|
end
|
9
9
|
|
10
10
|
def invalidate_collection_delta(collection)
|
11
|
-
|
12
|
-
|
13
|
-
[Vocab.sp[:Variable], Vocab.ontola[:baseCollection], iri, delta_iri(:invalidate)]
|
11
|
+
[Vocab.sp[:Variable], Vocab.ontola[:baseCollection], collection.iri, delta_iri(:invalidate)]
|
14
12
|
end
|
15
13
|
|
16
14
|
def invalidate_parent_collections_delta(resource)
|
@@ -46,8 +46,6 @@ module LinkedRails
|
|
46
46
|
default_filters: {},
|
47
47
|
# collection_class [Array<Hash>] The default sortings applied to the collection.
|
48
48
|
default_sortings: [{key: Vocab.schema.dateCreated, direction: :desc}],
|
49
|
-
# download_urls [Array<URI>] URLs for downloading the content of this collection
|
50
|
-
download_urls: [],
|
51
49
|
# include_members [Boolean] Whether to include the members of this collection.
|
52
50
|
include_members: false,
|
53
51
|
# iri_template_keys [Array<Sym>] Custom query keys for the iri template
|
@@ -72,9 +70,7 @@ module LinkedRails
|
|
72
70
|
|
73
71
|
module ClassMethods
|
74
72
|
def collection_iri(**opts)
|
75
|
-
|
76
|
-
|
77
|
-
LinkedRails.iri(path: collection_root_relative_iri(**opts), fragment: fragment)
|
73
|
+
LinkedRails.iri(path: collection_root_relative_iri(**opts))
|
78
74
|
end
|
79
75
|
|
80
76
|
# Sets the defaults for all collections for this class.
|
@@ -10,7 +10,7 @@ module LinkedRails
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def anonymous_iri?
|
13
|
-
self.class < ActiveRecord::Base && new_record?
|
13
|
+
self.class < ActiveRecord::Base && new_record?
|
14
14
|
end
|
15
15
|
|
16
16
|
# @return [RDF::URI].
|
@@ -44,12 +44,7 @@ module LinkedRails
|
|
44
44
|
|
45
45
|
# @return [RDF::URI]
|
46
46
|
def root_relative_iri(**opts)
|
47
|
-
|
48
|
-
|
49
|
-
root_relative_iri = RDF::URI(expand_iri_template(**iri_opts.merge(opts)))
|
50
|
-
@root_relative_iri = root_relative_iri if opts.blank?
|
51
|
-
|
52
|
-
root_relative_iri
|
47
|
+
RDF::URI(expand_iri_template(**iri_opts.merge(opts)))
|
53
48
|
end
|
54
49
|
|
55
50
|
# @return [String, Symbol]
|
@@ -15,10 +15,10 @@ module LinkedRails
|
|
15
15
|
|
16
16
|
module ClassMethods
|
17
17
|
def action_triples(object, _params)
|
18
|
-
if
|
19
|
-
object.try(:action_triples) || []
|
20
|
-
else
|
18
|
+
if object.iri.anonymous? && !object.try(:singular_resource?)
|
21
19
|
[]
|
20
|
+
else
|
21
|
+
object.try(:action_triples) || []
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
@@ -115,13 +115,7 @@ module LinkedRails
|
|
115
115
|
collection_name = "#{name.to_s.singularize}_collection"
|
116
116
|
opts[:association] ||= name
|
117
117
|
opts[:polymorphic] ||= true
|
118
|
-
|
119
|
-
action_object = opts.delete(:action_object)
|
120
|
-
opts[:if] ||= -> (object) {
|
121
|
-
return action_object if object.iri.try(:path)&.end_with?('/action_object')
|
122
|
-
|
123
|
-
named_object?(object)
|
124
|
-
}
|
118
|
+
opts[:if] ||= method(:named_object?)
|
125
119
|
|
126
120
|
collection_opts = {}
|
127
121
|
collection_opts[:page_size] = opts.delete(:page_size) if opts.key?(:page_size)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linked_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.4.pre.
|
4
|
+
version: 0.0.4.pre.gb254a2893
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arthur Dingemans
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_response
|
@@ -305,6 +305,7 @@ files:
|
|
305
305
|
- app/policies/linked_rails/ontology_policy.rb
|
306
306
|
- app/policies/linked_rails/sequence_policy.rb
|
307
307
|
- app/serializers/linked_rails/actions/item_serializer.rb
|
308
|
+
- app/serializers/linked_rails/actions/object_serializer.rb
|
308
309
|
- app/serializers/linked_rails/collection/filter_field_serializer.rb
|
309
310
|
- app/serializers/linked_rails/collection/filter_option_serializer.rb
|
310
311
|
- app/serializers/linked_rails/collection/filter_serializer.rb
|