# -*- encoding: utf-8 -*- # frozen_string_literal: true module Writexlsx class Worksheet class Hyperlink # :nodoc: include Writexlsx::Utility attr_reader :str, :tip MAXIMUM_URLS_SIZE = 2079 def self.factory(url, str = nil, tip = nil, max_url_length = MAXIMUM_URLS_SIZE) if url =~ /^internal:(.+)/ InternalHyperlink.new($~[1], str, tip, max_url_length) elsif url =~ /^external:(.+)/ ExternalHyperlink.new($~[1], str, tip, max_url_length) else new(url, str, tip, max_url_length) end end def initialize(url, str, tip, max_url_length) # The displayed string defaults to the url string. str ||= url.dup # Strip the mailto header. normalized_str = str.sub(/^mailto:/, '') # Split url into the link and optional anchor/location. url, @url_str = url.split("#", 2) # Escape URL unless it looks already escaped. url = escape_url(url) # Excel limits the escaped URL and location/anchor to 255 characters. raise "Ignoring URL '#{url}' where link or anchor > #{max_url_length} characters since it exceeds Excel's limit for URLS. See LIMITATIONS section of the Excel::Writer::XLSX documentation." if url.bytesize > max_url_length || (!@url_str.nil? && @url_str.bytesize > max_url_length) @url = url @str = normalized_str @tip = tip end def attributes(row, col, id) ref = xl_rowcol_to_cell(row, col) attr = [['ref', ref]] attr << r_id_attributes(id) attr << ['location', @url_str] if @url_str attr << ['display', @display] if @display attr << ['tooltip', @tip] if @tip attr end def external_hyper_link ['/hyperlink', @url, 'External'] end def display_on # @display = @url_str @display = @str end end class InternalHyperlink < Hyperlink undef external_hyper_link def initialize(url, str, tip, max_url_length) @url = url # The displayed string defaults to the url string. str ||= @url.dup # Strip the mailto header. @str = str.sub(/^mailto:/, '') # Copy string for use in hyperlink elements. @url_str = @str.dup # Excel limits escaped URL to #{max_url_length} characters. raise "URL '#{@url}' > #{max_url_length} characters, it exceeds Excel's limit for URLS." if @url.bytesize > max_url_length @tip = tip end def attributes(row, col, _dummy = nil) attr = [ ['ref', xl_rowcol_to_cell(row, col)], ['location', @url] ] attr << ['tooltip', @tip] if @tip attr << ['display', @str] end end class ExternalHyperlink < Hyperlink def initialize(url, str, tip, max_url_length) # The displayed string defaults to the url string. str ||= url.dup # For external links change the directory separator from Unix to Dos. url = url.gsub(%r{/}, '\\') str = str.gsub(%r{/}, '\\') # Strip the mailto header. str = str.sub(/^mailto:/, '') # Split url into the link and optional anchor/location. url, url_str = url.split("#", 2) # Escape URL unless it looks already escaped. url = escape_url(url) # Add the file:/// URI to the url if non-local. if url =~ /:/ || # Windows style "C:/" link. url =~ /^\\\\/ # Network share. url = "file:///#{url}" end # Convert a ./dir/file.xlsx link to dir/file.xlsx. url = url.sub(/^.\\/, '') @url_str = url_str # Excel limits the escaped URL and location/anchor to max_url_length characters. raise "Ignoring URL '#{url}' where link or anchor > #{max_url_length} characters since it exceeds Excel's limit for URLS. See LIMITATIONS section of the Excel::Writer::XLSX documentation." if url.bytesize > max_url_length || (!@url_str.nil? && @url_str.bytesize > max_url_length) @url = url @str = str @tip = tip end end end end