relaton-bib 2.1.2 → 2.1.3
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/lib/relaton/bib/model/localized_string.rb +7 -0
- data/lib/relaton/bib/sanitizer.rb +47 -0
- data/lib/relaton/bib/version.rb +1 -1
- data/lib/relaton/bib.rb +1 -0
- 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: ddc9644848b2d2d3215b088b0490e2769f541d3415806d6cee1a7d5f5f459ea3
|
|
4
|
+
data.tar.gz: 1ed5a54ad4dc216b17c0c29bbec68248e36e243f918f4edf753b3827cf163e3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67bf2aa865f1b688e72c02e8b5c724a3db3a038ce4db56b9a20ed343ee5e39546c71d1fcf0b5390b2031c018290cbf99f8529f94cfb8dd41f63b06267f5800af
|
|
7
|
+
data.tar.gz: 7176d810c8e1290fe038b6bfc390ddfd5e1676fe9cafcb799deeb2a279c2f54369c9aa0a578ae2344052a0fa42a8932cbd716144478e0af82b0ea2d3ba531b6b
|
|
@@ -26,7 +26,14 @@ module Relaton
|
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
class LocalizedMarkedUpString < LocalizedStringAttrs
|
|
29
|
+
module ContentSanitization
|
|
30
|
+
def content=(value)
|
|
31
|
+
super(Relaton::Bib::Sanitizer.sanitize(value))
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
29
35
|
attribute :content, :string, raw: true
|
|
36
|
+
prepend ContentSanitization
|
|
30
37
|
|
|
31
38
|
xml do
|
|
32
39
|
map_all to: :content
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require "nokogiri"
|
|
2
|
+
|
|
3
|
+
module Relaton
|
|
4
|
+
module Bib
|
|
5
|
+
# Strips inline markup not in the basicdoc PureTextElement set
|
|
6
|
+
# (plus <p>, <eref>, <xref>) from raw marked-up content strings.
|
|
7
|
+
# Disallowed elements are unwrapped: tags removed, inner text kept.
|
|
8
|
+
module Sanitizer
|
|
9
|
+
ALLOWED = %w[
|
|
10
|
+
em strong sub sup tt underline strike smallcap br stem
|
|
11
|
+
p eref xref
|
|
12
|
+
].freeze
|
|
13
|
+
|
|
14
|
+
RENAME = {
|
|
15
|
+
"italic" => "em",
|
|
16
|
+
}.freeze
|
|
17
|
+
|
|
18
|
+
TAG_RX = %r{<[a-zA-Z/!?]}
|
|
19
|
+
|
|
20
|
+
def self.sanitize(content)
|
|
21
|
+
return content unless sanitizable?(content)
|
|
22
|
+
|
|
23
|
+
fragment = Nokogiri::XML::DocumentFragment.parse(content)
|
|
24
|
+
return content if fragment.errors.any?
|
|
25
|
+
|
|
26
|
+
sanitize_children(fragment)
|
|
27
|
+
fragment.children.map { |c| c.to_xml(encoding: "UTF-8") }.join
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def self.sanitizable?(content)
|
|
31
|
+
content.is_a?(::String) && !content.empty? && content.match?(TAG_RX)
|
|
32
|
+
end
|
|
33
|
+
private_class_method :sanitizable?
|
|
34
|
+
|
|
35
|
+
def self.sanitize_children(node)
|
|
36
|
+
node.children.to_a.each do |child|
|
|
37
|
+
next unless child.element?
|
|
38
|
+
|
|
39
|
+
child.name = RENAME[child.name] if RENAME.key?(child.name)
|
|
40
|
+
sanitize_children(child)
|
|
41
|
+
child.replace(child.children) unless ALLOWED.include?(child.name)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
private_class_method :sanitize_children
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
data/lib/relaton/bib/version.rb
CHANGED
data/lib/relaton/bib.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: relaton-bib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bibtex-ruby
|
|
@@ -232,6 +232,7 @@ files:
|
|
|
232
232
|
- lib/relaton/bib/model/validity.rb
|
|
233
233
|
- lib/relaton/bib/model/version.rb
|
|
234
234
|
- lib/relaton/bib/namespace_helper.rb
|
|
235
|
+
- lib/relaton/bib/sanitizer.rb
|
|
235
236
|
- lib/relaton/bib/util.rb
|
|
236
237
|
- lib/relaton/bib/version.rb
|
|
237
238
|
- relaton-bib.gemspec
|