linked_rails 0.0.4.pre.g661cde413 → 0.0.4.pre.g96885856b

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 845342061b2ae457765501710f98084b42c8b50e0dd31ae17deec9c7e4f58c4d
4
- data.tar.gz: 55a55eec5843bc2c45a16bb4a88406fdb6212efeb4265817b52d060f37fd6d1d
3
+ metadata.gz: 91c75addc6ea759a73ff4fdce94549494d623fe819ee7ed0d2ea1557e7c2ac91
4
+ data.tar.gz: 4fcd4f439831e7aa196fa2fe610263949dfc316bb4566c9cb94562eb67e1c304
5
5
  SHA512:
6
- metadata.gz: 4904d8468cadc1ee7915c8e9fb1a60ec5b161f72a1d37deb3966cb42d78c9b82039463e6f49c6aa3a189ba94dfb687ee5b3bcd252d97b8e2f654ca65263b286a
7
- data.tar.gz: d548834a87749f311233501bde28f60841735ddf326c6a20da8aa3274589c3bfdb5a45e811a5b0b5554211edeef913ed38d1b0049734fb7c1aeda300c0226c9b
6
+ metadata.gz: ffcb80ce21ecbb28c0d42c79115b998bd859e689acbc4fcbb61ae6a494e75c09f3b906a466141412331fb5cc7076527fcf92fa227a58d00040db732d6123d350
7
+ data.tar.gz: e72f2247fa7ff7ca882e0644c69ed072e5ab93af8f02842f3495c3522e1fa300ce915703fcd297c21d36b1b658ccb7d0b3194aa4836fb7cf76afecec2e2bfeb0
@@ -98,6 +98,8 @@ module LinkedRails
98
98
  params = param.permit(:include, :iri)
99
99
  params[:iri] = URI(params[:iri])
100
100
  params
101
+ rescue URI::InvalidURIError
102
+ params.except(:iri)
101
103
  end
102
104
 
103
105
  def resource_response_body(iri, rack_body, status)
@@ -161,13 +163,17 @@ module LinkedRails
161
163
 
162
164
  resource_response(
163
165
  iri,
164
- body: include && status == 200 ? resource_body(resource) : nil,
166
+ body: response_from_resource_body(include, iri, resource, status),
165
167
  cache: resource_cache_control(resource.try(:cacheable?), status, resource_policy),
166
168
  language: I18n.locale,
167
169
  status: status
168
170
  )
169
171
  end
170
172
 
173
+ def response_from_resource_body(include, _iri, resource, status)
174
+ include && status == 200 ? resource_body(resource) : nil
175
+ end
176
+
171
177
  def term_from_vocab(iri)
172
178
  vocab = Vocab.for(iri)
173
179
  tag = iri.to_s.split(vocab.to_s).last
@@ -245,7 +251,7 @@ module LinkedRails
245
251
 
246
252
  def sanitized_relative_path(iri) # rubocop:disable Metrics/AbcSize
247
253
  iri.path = "#{iri.path}/" unless iri.path&.ends_with?('/')
248
- uri = URI(LinkedRails.iri.path.present? ? iri.to_s.split("#{LinkedRails.iri.path}/").last : iri)
254
+ uri = URI(LinkedRails.iri.path.chomp('/').present? ? iri.to_s.split("#{LinkedRails.iri.path}/").last : iri)
249
255
 
250
256
  [uri.path, uri.query].compact.join('?')
251
257
  end
@@ -187,7 +187,7 @@ module LinkedRails
187
187
 
188
188
  def target_url_fallback # rubocop:disable Metrics/AbcSize
189
189
  base = (resource.try(:singular_resource?) ? resource.singular_iri : resource.iri).dup
190
- base.path = "#{base.path}/#{target_path}" if target_path.present?
190
+ base.path = "#{base.path.chomp('/')}/#{target_path}" if target_path.present?
191
191
  base.query = Rack::Utils.parse_nested_query(base.query).merge(target_query).to_param if target_query.present?
192
192
  base
193
193
  end
@@ -9,7 +9,7 @@ module LinkedRails
9
9
  Storage.hset(
10
10
  :persistent,
11
11
  :manifest,
12
- LinkedRails.iri.to_s => web_manifest.to_json
12
+ URL.as_href(LinkedRails.iri) => web_manifest.to_json
13
13
  )
14
14
  end
15
15
 
@@ -41,7 +41,7 @@ module LinkedRails
41
41
  def blob_preview_iri
42
42
  return unless ActiveStorage::Blob.service.present?
43
43
 
44
- LinkedRails.iri(path: 'rails/active_storage/blobs/redirect/{signed_id}/preview')
44
+ "#{LinkedRails.iri(path: 'rails/active_storage/blobs/redirect')}/{signed_id}/preview')"
45
45
  end
46
46
 
47
47
  def blob_upload_iri
@@ -138,7 +138,7 @@ module LinkedRails
138
138
 
139
139
  def web_manifest_sw_section
140
140
  {
141
- src: "#{scope}/sw.js",
141
+ src: "#{scope.chomp('/')}/sw.js",
142
142
  scope: scope
143
143
  }
144
144
  end
@@ -161,19 +161,19 @@ module LinkedRails
161
161
 
162
162
  class << self
163
163
  def destroy(iri)
164
- Storage.hdel(:persistent, :manifest, iri)
164
+ Storage.hdel(:persistent, :manifest, URL.as_href(iri))
165
165
  end
166
166
 
167
167
  def move(from, to)
168
168
  Storage.hset(
169
169
  :persistent,
170
- :redirect,
171
- "#{from}*" => to
170
+ :redirect_prefix,
171
+ URL.as_href(from) => URL.as_href(to)
172
172
  )
173
173
 
174
- data = Storage.hget(:persistent, :manifest, from)
174
+ data = Storage.hget(:persistent, :manifest, URL.as_href(from))
175
175
 
176
- Storage.hset(:persistent, :manifest, to, data) if data
176
+ Storage.hset(:persistent, :manifest, URL.as_href(to), data) if data
177
177
 
178
178
  destroy(from)
179
179
  end
@@ -38,7 +38,7 @@ module LinkedRails
38
38
  params = Rails.application.routes.recognize_path(iri.to_s, method: method)
39
39
 
40
40
  route_params_to_opts(params.merge(query), iri.to_s)
41
- rescue ActionController::RoutingError
41
+ rescue ActionController::RoutingError, SystemStackError
42
42
  EMPTY_IRI_OPTS.dup
43
43
  end
44
44
 
@@ -62,6 +62,7 @@ module LinkedRails
62
62
  iri = root_relative_iri.dup
63
63
  iri.scheme = LinkedRails.scheme
64
64
  iri.host = LinkedRails.host
65
+ iri.path = iri.path.presence || '/'
65
66
  iri
66
67
  end
67
68
 
@@ -11,7 +11,8 @@ module LinkedRails
11
11
  }.freeze
12
12
  KEYS = {
13
13
  manifest: 'cache:Manifest',
14
- redirect: 'cache:Redirect'
14
+ redirect_exact: 'cache:Redirect:Exact',
15
+ redirect_prefix: 'cache:Redirect:Prefix'
15
16
  }.freeze
16
17
 
17
18
  class << self
@@ -0,0 +1,11 @@
1
+ module LinkedRails
2
+ class URL
3
+ class << self
4
+ def as_href(url)
5
+ uri = URI(url)
6
+ uri.path = uri.path.presence || '/'
7
+ uri.to_s
8
+ end
9
+ end
10
+ end
11
+ end
data/lib/linked_rails.rb CHANGED
@@ -54,8 +54,10 @@ module LinkedRails
54
54
  @@scheme ||= Rails.application.routes.default_url_options[:protocol] || :http # rubocop:disable Style/ClassVars
55
55
  end
56
56
 
57
- def iri(**opts)
58
- RDF::URI.new(**{scheme: LinkedRails.scheme, host: LinkedRails.host}.merge(opts))
57
+ def iri(**args)
58
+ opts = {scheme: LinkedRails.scheme, host: LinkedRails.host}.merge(args)
59
+ opts[:path] = opts[:path].presence || '/'
60
+ RDF::URI.new(**opts)
59
61
  end
60
62
  end
61
63
 
@@ -106,4 +108,5 @@ require 'linked_rails/routes'
106
108
  require 'linked_rails/serializer'
107
109
  require 'linked_rails/translate'
108
110
  require 'linked_rails/railtie'
111
+ require 'linked_rails/url'
109
112
  require 'linked_rails/storage'
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.g661cde413
4
+ version: 0.0.4.pre.g96885856b
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-08-10 00:00:00.000000000 Z
11
+ date: 2022-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_response
@@ -429,6 +429,7 @@ files:
429
429
  - lib/linked_rails/translate.rb
430
430
  - lib/linked_rails/types/iri_type.rb
431
431
  - lib/linked_rails/uri_template.rb
432
+ - lib/linked_rails/url.rb
432
433
  - lib/linked_rails/version.rb
433
434
  - lib/linked_rails/vocab.rb
434
435
  - lib/nill_class_renderer.rb