# encoding: utf-8 # # (The MIT License) # # Copyright (c) 2016 Yegor Bugayenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. require 'digest/md5' require 'liquid' require 'uri' require 'fastimage' # Jekyll module module Jekyll # All our custom filters module JbFilters def jb_picture_head(page) uri = uri(page) return '' if uri.empty? html = "" html += "" path = uri path = File.join(Dir.pwd, path) unless \ %w(http https).include?(URI.parse(uri).scheme) width, height = FastImage.size(path) if width html += " " end if height html += " " end if width && width >= 640 && height && height >= 480 html += "" else html += "" end html += "" html end def jb_picture_body(page) uri = uri(page) return '' if uri.empty? yaml = page['jb_picture'] html = "#{CGI.escapeHTML(alt(page))}" end html + '' end private @@home = nil def uri(page) uri = '' uri = page['image'] if page['image'] yaml = page['jb_picture'] if yaml if yaml.is_a?(Hash) uri = yaml['src'] if yaml['src'] else uri = yaml end end unless uri.empty? uri = URI.parse(uri) uri = home + uri.to_s unless %w(http https).include?(uri.scheme) end uri.to_s end def home if @@home.nil? @@home = Jekyll.configuration({})['url'] if @@home.nil? @@home = '' else @@home.gsub!(%r{/$}, '') end end @@home end def alt(page) alt = '' yaml = page['jb_picture'] if yaml && yaml.is_a?(Hash) if yaml['alt'] alt = yaml['alt'] elsif yaml['caption'] alt = yaml['caption'] end end alt = 'Main picture' if alt.empty? alt end end # Box for testing and calling static methods. class JbBox include JbFilters end # Jekyll block class JbPictureBlock < Liquid::Tag def render(context) JbBox.new.jb_picture_body(context.registers[:page]) end end end Liquid::Template.register_filter(Jekyll::JbFilters) Liquid::Template.register_tag('jb_picture_body', Jekyll::JbPictureBlock)