Class: CSLAdaptor

Inherits:
Object
  • Object
show all
Defined in:
lib/texstylist/csl_adaptor.rb

Constant Summary collapse

STYLES =

Borrowing from github.com/inukshuk/jekyll-scholar/blob/master/lib/jekyll/scholar/utilities.rb#L5 until CSL features stabilize

Load styles into static memory. They should be thread safe as long as they are treated as being read-only.

Hash.new do |h, k|
  style = CSL::Style.load k
  style = style.independent_parent unless style.independent?
  h[k.to_s] = style
end

Class Method Summary collapse

Class Method Details

.citation_style_namesObject



58
59
60
# File 'lib/texstylist/csl_adaptor.rb', line 58

def self.citation_style_names
  CSLConstants.citation_style_names
end

.citation_style_symbolsObject



61
62
63
# File 'lib/texstylist/csl_adaptor.rb', line 61

def self.citation_style_symbols
  HashWithIndifferentAccess.new(self.citation_style_names.invert)
end

.listObject



22
23
24
# File 'lib/texstylist/csl_adaptor.rb', line 22

def self.list
  Dir.glob(File.join(CSL::Style.root,'**','*.csl')).map{|p| File.basename(p,".*").to_sym}
end

.load(style) ⇒ Object



49
50
51
52
53
54
55
56
# File 'lib/texstylist/csl_adaptor.rb', line 49

def self.load(style)
  style = safe_style(style)
  begin
    style.present? && CSL::Style.load(style)
  rescue
    nil
  end
end

.replace_citations_with_csl(text, citation_style, bibtex, options = {}) ⇒ Object



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/texstylist/csl_adaptor.rb', line 65

def self.replace_citations_with_csl(text, citation_style, bibtex, options={})
  options = {decorate: true}.merge(options)
  citation_style = CSLAdaptor.safe_style(citation_style)
  renderer = CiteProc::Ruby::Renderer.new(format: 'text', style: citation_style)
  # Dependent styles still experience issues, use the default chicago processor as a fallback
  default_renderer = CiteProc::Ruby::Renderer.new(format: 'text', style: :'chicago-author-date')

  csl_unique_count = 0
  csl_map = {}
  latex_util = LatexUtil.new
  references_section = "\\section*{References}\n"
  text = latex_util.preprocess_verb(text)
  text = text.gsub(LatexUtil.citation_regex) do |match|
    cite_type = $~[:type]
    star   = $~[:star]
    optional_arg1 = $~[:opt1]
    optional_arg2 = $~[:opt2]
    braces = $~[:braces]

    citations = braces.split(',').flatten
    citations = citations.map {|c| c.strip}
    length = citations.length
    csl_text = citations.map do |c|
      new_unique = !csl_map[c]
      if new_unique
        csl_unique_count += 1
        csl_map[c] = csl_unique_count
      end
      csl_index = csl_map[c]

      bib_data = !c.empty? && bibtex && bibtex[c.to_sym]
      if bib_data.nil? # fallback - no such bib entry
        '(missing citation)'
      else
        item = CiteProc::CitationItem.new id: c do |ci|
          ci.data = CiteProc::Item.new bib_data.to_citeproc
          # numeric styles not yet implemented in citeproc-ruby, so we need to manually set the number, see:
          # https://github.com/inukshuk/citeproc-ruby/issues/40
          ci.data[:'citation-number'] = csl_index
        end
        # I. If just added citation, add it to final Bibliography
        if new_unique
          begin # sometimes the CSL style has no bibliography definition, and the references render raises exceptions
            rendered_reference = renderer.render item, STYLES[citation_style].bibliography
            if options[:decorate]
              references_section << "\\phantomsection\n\\label{csl:#{csl_unique_count}}"
            end
            references_section << rendered_reference
            references_section << "\n\n"
          rescue => e
            puts "CSL bibliography render failed with: ", e
          end
        end

        # II. Always add the inline rendered citation
        begin
          inline_render = renderer.render [item], STYLES[citation_style].citation
          if inline_render.blank?
            inline_render = begin
              default_renderer.render [item], STYLES[citation_style].citation
            end
            if inline_render.blank?
              inline_render = '(missing citation)'
            end
          end
          if options[:decorate]
            "\\hyperref[csl:#{csl_index}]{#{inline_render}}"
          else
            inline_render
          end
        rescue => e
          puts "CSL citation render failed with: ", e
          ""
        end
      end
    end
    csl_text.join(" ")
  end
  return latex_util.postprocess_verb(text) + "\n\n" + references_section
end

.safe_style(style) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/texstylist/csl_adaptor.rb', line 26

def self.safe_style(style)
  if style.is_a? Symbol
    style = style.to_s
  end
  style_path = File.basename(style,".*") + '.csl'
  expected_path = File.join(CSL::Style.root,style_path)
  dependent_path = File.join(CSL::Style.root,'dependent',style_path)
  if File.exist?(expected_path)
    style
  elsif File.exist?(dependent_path)
    # While waiting for the main CSL library to implement dependent support, we'll pass the parent here
    begin
      dom = Nokogiri::XML(File.open(dependent_path))
      parent_link = dom.search('link[@rel="independent-parent"]').first.attr('href')
      parent_style = parent_link.sub('http://www.zotero.org/styles/','')
    rescue
      :'chicago-author-date'
    end
  else
    :'chicago-author-date'
  end
end