media_types-serialization 1.3.8 → 1.3.9

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: 8954f231059a19dd11bf92dc2db6ce7528eb476507d4929fc0c06a32e9b94722
4
- data.tar.gz: c7864c12936076ab41f207472de9c59343ba71abb1a4e49b8febfbd10ec06dc2
3
+ metadata.gz: 64e776b0385e75bc7accfd536320105d6f54724f5b85f10ce8396c412e3d42f4
4
+ data.tar.gz: fcac17f274d2f295d4ca57f20375caa7c54baf5cad1c8300a65416e5172bf2ae
5
5
  SHA512:
6
- metadata.gz: eb9d67937ca3d0fbb5fa6c12958c655fbedb7a8304f82ea9fa107aa12e5b1f8980f3293c664f2f0776e04064e43f30a05217dd270b7de64ba0d6a135a5f3239a
7
- data.tar.gz: 0d590e5fd4a2bf520d842b90a271aedb6db508043c8efeb4645869952bc36c15acdc10310405d72055e59dda092fa55d9dbdaed2bed92d8764a8b5c466b0bafc
6
+ metadata.gz: 60a7cfd98fd87f4b5ca3facb3338518015abb4567b5ff35741a16e7b36bd4bb58a2262dd74c34c884d119d5844c2cf1034e2f4ac566dfee6205e2797ad730c4a
7
+ data.tar.gz: 1911cb60916f41d1ce594d7b98ed072cce91092bf6c00f60ae985fe50cc5380ef7367b0bff5a9d0f72f0f83a5b7a9072708ebccd81096c539a04c88603f0fc37
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.3.9
4
+
5
+ - ✨ Make serializer look slightly better on mobile by zooming in initially
6
+
7
+ ## 1.3.8
8
+
3
9
  ## 1.3.7
4
10
 
5
11
  - 🐛 Fix execution context for `output_error`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- media_types-serialization (1.3.8)
4
+ media_types-serialization (1.3.9)
5
5
  actionpack (>= 4.0.0)
6
6
  activesupport (>= 4.0.0)
7
7
  media_types (>= 2.1.1, < 3.0.0)
@@ -4,7 +4,6 @@ require 'erb'
4
4
 
5
5
  module MediaTypes
6
6
  class Problem
7
-
8
7
  def initialize(error)
9
8
  self.error = error
10
9
  self.translations = {}
@@ -17,7 +16,7 @@ module MediaTypes
17
16
  def type
18
17
  return custom_type unless custom_type.nil?
19
18
 
20
- "https://docs.delftsolutions.nl/wiki/Error/#{ERB::Util::url_encode(error.class.name)}"
19
+ "https://docs.delftsolutions.nl/wiki/Error/#{ERB::Util.url_encode(error.class.name)}"
21
20
  end
22
21
 
23
22
  def url(href)
@@ -31,13 +30,17 @@ module MediaTypes
31
30
 
32
31
  def override_detail(detail, lang:)
33
32
  raise 'Unable to override detail message without having a title in the same language.' unless translations[lang]
33
+
34
34
  translations[lang][:detail] = detail
35
35
  end
36
36
 
37
37
  def attribute(name, value)
38
38
  str_name = name.to_s
39
39
 
40
- raise "Unable to add an attribute with name '#{str_name}'. Name should start with a letter, consist of the letters A-Z, a-z, 0-9 or _ and be at least 3 characters long." unless str_name =~ /^[a-zA-Z][a-zA-Z0-9_]{2,}$/
40
+ unless str_name =~ /^[a-zA-Z][a-zA-Z0-9_]{2,}$/
41
+ raise "Unable to add an attribute with name '#{str_name}'. Name should start with a letter, consist of the " \
42
+ 'letters A-Z, a-z, 0-9 or _ and be at least 3 characters long.'
43
+ end
41
44
 
42
45
  custom_attributes[str_name] = value
43
46
  end
@@ -54,7 +57,7 @@ module MediaTypes
54
57
  inner = error.cause
55
58
  return nil if inner.nil?
56
59
 
57
- "https://docs.delftsolutions.nl/wiki/Error/#{ERB::Util::url_encode(inner.class.name)}"
60
+ "https://docs.delftsolutions.nl/wiki/Error/#{ERB::Util.url_encode(inner.class.name)}"
58
61
  end
59
62
 
60
63
  def languages
@@ -16,7 +16,7 @@ module MediaTypes
16
16
  return uri unless viewer.host == current_host
17
17
 
18
18
  query_parts = viewer.query&.split('&') || []
19
- query_parts = query_parts.select { |p| !p.starts_with? 'api_viewer=' }
19
+ query_parts = query_parts.reject { |p| p.starts_with?('api_viewer=') }
20
20
  query_parts.append("api_viewer=#{type}")
21
21
  viewer.query = query_parts.join('&')
22
22
  viewer.to_s
@@ -45,42 +45,45 @@ module MediaTypes
45
45
  result = {
46
46
  identifier: identifier,
47
47
  href: viewerify(context.request.original_url, context.request.host, type: identifier),
48
- selected: identifier == original_identifier,
48
+ selected: identifier == original_identifier
49
49
  }
50
50
  result[:href] = '#output' if identifier == original_identifier
51
51
 
52
52
  result
53
53
  end
54
54
 
55
-
56
- escaped_output = original_output&.split("\n").
57
- map { |l| CGI::escapeHTML(l).gsub(/ (?= )/, '&nbsp;') }.
58
- map { |l| (l.gsub(/\bhttps?:\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;{}]*[-A-Z0-9+@#\/%=}~_|](?![a-z]*;)/i) do |m|
59
- converted = m
60
- invalid = false
61
- begin
62
- converted = viewerify(m, context.request.host)
63
- rescue URI::InvalidURIError
64
- invalid = true
55
+ escaped_output = original_output
56
+ &.split("\n")
57
+ &.map { |l| CGI.escapeHTML(l).gsub(/ (?= )/, '&nbsp;') }
58
+ &.map do |l|
59
+ l.gsub(/\bhttps?:\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;{}]*[-A-Z0-9+@#\/%=}~_|](?![a-z]*;)/i) do |m|
60
+ converted = m
61
+ invalid = false
62
+ begin
63
+ converted = viewerify(m, context.request.host)
64
+ rescue URI::InvalidURIError
65
+ invalid = true
66
+ end
67
+ style = ''
68
+ style = ' style="color: red"' if invalid
69
+ "<a#{style} href=\"#{converted}\">#{m}</a>"
65
70
  end
66
- style = ''
67
- style = ' style="color: red"' if invalid
68
- "<a#{style} href=\"#{converted}\">#{m}</a>"
69
- end) }.
70
- join("<br>\n")
71
-
71
+ end
72
+ &.join("<br>\n")
72
73
 
73
74
  input = OpenStruct.new(
74
75
  original_identifier: original_identifier,
75
76
  escaped_output: escaped_output,
76
77
  api_fied_links: api_fied_links,
77
78
  media_types: media_types,
78
- css: CommonCSS.css,
79
+ css: CommonCSS.css
79
80
  )
80
81
 
81
82
  template = ERB.new <<-TEMPLATE
82
83
  <html lang="en">
83
84
  <head>
85
+ <meta content="width=device-width, initial-scale=1" name="viewport">
86
+
84
87
  <title>API Viewer [<%= CGI::escapeHTML(original_identifier) %>]</title>
85
88
  <style>
86
89
  <%= css.split("\n").join("\n ") %>
@@ -15,28 +15,28 @@ module MediaTypes
15
15
  self.logo_media_type = 'image/svg+xml'
16
16
  self.logo_width = 8
17
17
  self.logo_data = <<-HERE
18
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 114 93">
19
- <title>Delft Solutions</title>
20
-
21
- <filter id="dropshadow">
22
- <feGaussianBlur in="SourceAlpha" stdDeviation="1"></feGaussianBlur> <!-- stdDeviation is how much to blur -->
23
- <feOffset dx="2" dy="1" result="offsetblur"></feOffset> <!-- how much to offset -->
24
- <feComponentTransfer>
25
- <feFuncA type="linear" slope="0.5"></feFuncA> <!-- slope is the opacity of the shadow -->
26
- </feComponentTransfer>
27
- <feMerge>
28
- <feMergeNode></feMergeNode> <!-- this contains the offset blurred image -->
29
- <feMergeNode in="SourceGraphic"></feMergeNode> <!-- this contains the element that the filter is applied to -->
30
- </feMerge>
31
- </filter>
32
-
33
- <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
34
- <g fill="#FFFFFF" fill-rule="nonzero">
35
-
36
- <path d="M81.5784638,1.07718279e-13 C82.7664738,1.07718279e-13 83.8032488,0.734079641 84.4157016,1.75205281 L109.531129,43.5095713 C110.813908,45.6417099 110.657922,48.2974919 109.15835,50.2831454 L80.6973102,87.9923196 C80.0557678,88.7870619 79.0855103,89.3973447 78.0602378,89.3973447 L42.8594985,89.3973447 L14.6289023,43.5796094 L38.1043811,13.5281311 L47.8307983,13.5281311 L25.7347121,43.6175319 L48.0361926,79.9158441 L75.0253918,79.9158441 L101.326814,46.2820182 L73.5454136,1.07718279e-13 L81.5784638,1.07718279e-13 Z M68.8174965,0.000338312914 L96.4191607,45.9808751 L73.2382461,75.6684695 L61.4283598,75.6684695 L84.975762,45.385564 L63.4142078,9.46643441 L36.1380842,9.46643441 L9.60299852,43.3032035 L35.9112712,85.3931029 L38.1241857,89.3191214 L29.1498474,89.3973434 C27.9592604,89.4075947 26.8506993,88.7919375 26.2302294,87.7757572 L0.893096605,46.2796422 C-0.418595034,44.1314075 -0.274907213,41.3978442 1.25477457,39.3989643 L30.388821,1.32865425 L30.4563519,1.24328222 C31.0981823,0.458113729 32.0600455,0.000338312914 33.0779839,0.000338312914 L68.8174965,0.000338312914 Z" id="logo-mark-colour"></path>
37
- </g>
38
- </g>
39
- </svg>
18
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 114 93">
19
+ <title>Delft Solutions</title>
20
+
21
+ <filter id="dropshadow">
22
+ <feGaussianBlur in="SourceAlpha" stdDeviation="1"></feGaussianBlur> <!-- stdDeviation is how much to blur -->
23
+ <feOffset dx="2" dy="1" result="offsetblur"></feOffset> <!-- how much to offset -->
24
+ <feComponentTransfer>
25
+ <feFuncA type="linear" slope="0.5"></feFuncA> <!-- slope is the opacity of the shadow -->
26
+ </feComponentTransfer>
27
+ <feMerge>
28
+ <feMergeNode></feMergeNode> <!-- this contains the offset blurred image -->
29
+ <feMergeNode in="SourceGraphic"></feMergeNode> <!-- this contains the element that the filter is applied to -->
30
+ </feMerge>
31
+ </filter>
32
+
33
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
34
+ <g fill="#FFFFFF" fill-rule="nonzero">
35
+
36
+ <path d="M81.5784638,1.07718279e-13 C82.7664738,1.07718279e-13 83.8032488,0.734079641 84.4157016,1.75205281 L109.531129,43.5095713 C110.813908,45.6417099 110.657922,48.2974919 109.15835,50.2831454 L80.6973102,87.9923196 C80.0557678,88.7870619 79.0855103,89.3973447 78.0602378,89.3973447 L42.8594985,89.3973447 L14.6289023,43.5796094 L38.1043811,13.5281311 L47.8307983,13.5281311 L25.7347121,43.6175319 L48.0361926,79.9158441 L75.0253918,79.9158441 L101.326814,46.2820182 L73.5454136,1.07718279e-13 L81.5784638,1.07718279e-13 Z M68.8174965,0.000338312914 L96.4191607,45.9808751 L73.2382461,75.6684695 L61.4283598,75.6684695 L84.975762,45.385564 L63.4142078,9.46643441 L36.1380842,9.46643441 L9.60299852,43.3032035 L35.9112712,85.3931029 L38.1241857,89.3191214 L29.1498474,89.3973434 C27.9592604,89.4075947 26.8506993,88.7919375 26.2302294,87.7757572 L0.893096605,46.2796422 C-0.418595034,44.1314075 -0.274907213,41.3978442 1.25477457,39.3989643 L30.388821,1.32865425 L30.4563519,1.24328222 C31.0981823,0.458113729 32.0600455,0.000338312914 33.0779839,0.000338312914 L68.8174965,0.000338312914 Z" id="logo-mark-colour"></path>
37
+ </g>
38
+ </g>
39
+ </svg>
40
40
  HERE
41
41
 
42
42
  def self.logo_url
@@ -78,7 +78,7 @@ module MediaTypes
78
78
  a:hover {
79
79
  color: #5E7EFF;
80
80
  }
81
-
81
+
82
82
  #logo {
83
83
  width: <%= logo_width %>em;
84
84
  height: 6em;
@@ -160,7 +160,7 @@ module MediaTypes
160
160
  TEMPLATE
161
161
  template = ERB.new custom_css unless custom_css.nil?
162
162
 
163
- template.result(binding())
163
+ template.result(binding)
164
164
  end
165
165
  end
166
166
  end
@@ -11,21 +11,24 @@ module MediaTypes
11
11
  unvalidated 'text/html'
12
12
 
13
13
  def self.escape_text(text)
14
- text.split("\n").
15
- map { |l| CGI::escapeHTML(l).gsub(/ (?= )/, '&nbsp;') }.
16
- map { |l| (l.gsub(/\bhttps?:\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;{}]*[-A-Z0-9+@#\/%=}~_|](?![a-z]*;)/i) do |m|
17
- converted = m
18
- invalid = false
19
- begin
20
- converted = viewerify(m, context.request.host)
21
- rescue URI::InvalidURIError
22
- invalid = true
14
+ text
15
+ .split("\n")
16
+ .map { |l| CGI.escapeHTML(l).gsub(/ (?= )/, '&nbsp;') }
17
+ .map do |l|
18
+ l.gsub(/\bhttps?:\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;{}]*[-A-Z0-9+@#\/%=}~_|](?![a-z]*;)/i) do |m|
19
+ converted = m
20
+ invalid = false
21
+ begin
22
+ converted = viewerify(m, context.request.host)
23
+ rescue URI::InvalidURIError
24
+ invalid = true
25
+ end
26
+ style = ''
27
+ style = ' style="color: red"' if invalid
28
+ "<a#{style} href=\"#{converted}\">#{m}</a>"
23
29
  end
24
- style = ''
25
- style = ' style="color: red"' if invalid
26
- "<a#{style} href=\"#{converted}\">#{m}</a>"
27
- end) }.
28
- join("<br>\n")
30
+ end
31
+ .join("<br>\n")
29
32
  end
30
33
 
31
34
  output_raw do |obj, version, context|
@@ -46,6 +49,7 @@ module MediaTypes
46
49
  template = ERB.new <<-TEMPLATE
47
50
  <html lang="en">
48
51
  <head>
52
+ <meta content="width=device-width, initial-scale=1" name="viewport">
49
53
  <title>Invalid input detected</title>
50
54
  <style>
51
55
  <%= css.split("\n").join("\n ") %>
@@ -15,7 +15,9 @@ module MediaTypes
15
15
  output do |problem, _, context|
16
16
  raise 'No translations defined, add at least one title' unless problem.translations.keys.any?
17
17
 
18
- accept_language_header = Utils::AcceptLanguageHeader.new(context.request.get_header(HEADER_ACCEPT_LANGUAGE) || '')
18
+ accept_language_header = Utils::AcceptLanguageHeader.new(
19
+ context.request.get_header(HEADER_ACCEPT_LANGUAGE) || ''
20
+ )
19
21
  translation_entry = accept_language_header.map do |locale|
20
22
  problem.translations.keys.find do |l|
21
23
  l.start_with? locale.locale
@@ -40,7 +42,9 @@ module MediaTypes
40
42
  output_alias 'application/problem+json'
41
43
 
42
44
  output_raw view: :html do |problem, _, context|
43
- accept_language_header = Utils::AcceptLanguageHeader.new(context.request.get_header(HEADER_ACCEPT_LANGUAGE) || '')
45
+ accept_language_header = Utils::AcceptLanguageHeader.new(
46
+ context.request.get_header(HEADER_ACCEPT_LANGUAGE) || ''
47
+ )
44
48
  translation_entry = accept_language_header.map do |locale|
45
49
  problem.translations.keys.find do |l|
46
50
  l.starts_with? locale.locale
@@ -57,12 +61,13 @@ module MediaTypes
57
61
  title: title,
58
62
  detail: detail,
59
63
  help_url: problem.type,
60
- css: CommonCSS.css,
64
+ css: CommonCSS.css
61
65
  )
62
66
 
63
67
  template = ERB.new <<-TEMPLATE
64
68
  <html lang="en">
65
69
  <head>
70
+ <meta content="width=device-width, initial-scale=1" name="viewport">
66
71
  <title>Error - <%= CGI::escapeHTML(title) %></title>
67
72
  <style>
68
73
  <%= css.split("\n").join("\n ") %>
@@ -93,7 +98,6 @@ module MediaTypes
93
98
  enable_wildcards
94
99
 
95
100
  output_alias_optional 'text/html', view: :html
96
-
97
101
  end
98
102
  end
99
103
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module MediaTypes
3
4
  module Serialization
4
- VERSION = '1.3.8'
5
+ VERSION = '1.3.9'
5
6
  end
6
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: media_types-serialization
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.8
4
+ version: 1.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derk-Jan Karrenbeld