X-Git-Url: https://git.draconx.ca/gitweb/homepage.git/blobdiff_plain/ec1703ff7346b6d3edeee73f1c6dfa750b7aeed4..556a5888d1091c5fb1d202d911941941d0bba9c8:/lib/helpers.rb diff --git a/lib/helpers.rb b/lib/helpers.rb index df48f4c..77916dd 100644 --- a/lib/helpers.rb +++ b/lib/helpers.rb @@ -1,6 +1,6 @@ # Nick's web site: Ruby helpers for processing # -# Copyright © 2018-2019 Nick Bowler +# Copyright © 2018-2021 Nick Bowler # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,9 +16,11 @@ # along with this program. If not, see . require 'nokogiri' +require 'fastimage' -use_helper Nanoc::Helpers::Breadcrumbs use_helper Nanoc::Helpers::Blogging +use_helper Nanoc::Helpers::Breadcrumbs +use_helper Nanoc::Helpers::Rendering Xmlns = { 'xhtml' => 'http://www.w3.org/1999/xhtml' @@ -44,7 +46,11 @@ def item_source(item = @item) end def item_uri(item = @item, rep: :default) - return item.path(rep: rep).gsub(/\/index.[^.]*$/, "/") + return item.path(rep: rep).sub(%r{/index[.][^.]*$}, "/") +end + +def rep_uri(rep = @rep) + return rep.path.sub(%r{/index[.][^.]*$}, "/") end def find_license(license) @@ -71,8 +77,80 @@ def counter(name = :default, item = @item) name.to_s.capitalize + " " + ($counters[item][name] += 1).to_s end +def img_rep_fallback(item, rep) + return rep unless item.reps[rep].raw_path.nil? + return :large +end + +def gallery_img(item, rep: :large, alt: nil, caption: nil) + return "[image not found]" unless item + + alt ||= item[:title] + caption ||= alt + caption = caption.strip + caption.gsub!(/\s+/, " ") + + rep = img_rep_fallback(item, rep) + attrs = { :src => item_uri(item, rep: rep), :alt => item[:title] } + attrs[:width], attrs[:height] = FastImage.size(item.reps[rep].raw_path) + + b = Nokogiri::XML::Builder.new do |xml| + xml.a(:href => item_uri(item, rep: :info)) { + xml.img(attrs, "generate-gallery" => "generate-gallery") + unless caption.empty? + xml << " ⁠" + xml.small { xml << caption } + end + } + end + b.to_xml(:save_with => Nokogiri::XML::Node::SaveOptions::NO_DECLARATION) +end + +def expand_copyright(copyright) + result = { :years => {} } + + /^([-–[:digit:][:space:],]*)(.*)$/.match(copyright) do |m| + m[1].split(/\s*,\s*/).each do |range| + lo, hi = range.split(/[^[:digit:]]+/) + for y in (lo..hi||lo) + result[:years][y] = 1 + end + end + + result[:years] = result[:years].keys.sort + result[:name] = m[2] + return result + end + + return nil +end + +def path_to_rep(path) + @items.find_all(File::dirname(path) + "/*").each do |item| + item.reps.each do |rep| + return rep if rep.path == path + end + end + return nil +end + +def find_images(item = @item) + return [] if item.binary? + + result = {} + doc = Nokogiri::HTML(item.compiled_content(snapshot: :pre)) + doc.xpath("//img/@src").each do |imgsrc| + rep = path_to_rep(imgsrc.value) + if rep + result[rep.item.identifier] ||= rep.item + end + end + return result.values +end + def human_filesize(size) units = ["B", "KiB", "MiB", "GiB"] + prec = 0 for unit in units if (size < 1024) @@ -80,7 +158,12 @@ def human_filesize(size) end size /= 1024.0 + prec = 1 end - sprintf("%.1f %s", size + 0.05, unit) + sprintf("%.*f %s", prec, size + 0.05, unit) +end + +def license_shortname(item) + item.fetch(:shortname, File::basename(item.identifier.without_ext).upcase) end