#-- encoding: UTF-8 #-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2017 the OpenProject Foundation (OPF) # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2017 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # 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 the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # See doc/COPYRIGHT.rdoc for more details. #++ require 'gravatar_image_tag' module AvatarHelper include GravatarImageTag GravatarImageTag.configure do |c| c.include_size_attributes = false end # Returns the avatar image tag for the given +user+ if avatars are enabled # +user+ can be a User or a string that will be scanned for an email address (eg. 'joe ') def avatar(user, options = {}) avatar = with_default_avatar_options(user, options) { |email, opts| tag_options = merge_image_options(user, opts) gravatar_image_tag(email, tag_options) } ensure # return is actually needed here return (avatar || ''.html_safe) end def avatar_url(user, options = {}) url = with_default_avatar_options(user, options) { |email, opts| # gravatar_image_url expects grvatar options as second arg if opts[:gravatar] opts.merge!(opts.delete(:gravatar)) end gravatar_image_url(email, opts) } ensure # return is actually needed here return (url || ''.html_safe) end def default_gravatar_options { secure: Setting.protocol == 'https', default_image: Setting.gravatar_default.presence } end private def merge_image_options(user, options) default_options = { class: 'avatar' } default_options[:title] = h(user.name) if user.respond_to?(:name) options.reverse_merge(default_options) end def with_default_avatar_options(user, options, &block) if options.delete(:size) warn <<-DOC [DEPRECATION] The :size option is no longer supported for #avatar. Use css styling (:class attribute). The classes '.avatar', '.gravatar', and '.avatar-mini' are provided for this Called from #{caller[1]} DOC end if Setting.gravatar_enabled? && (email = extract_email_address(user)).present? block.call email.to_s.downcase, options.merge(gravatar: default_gravatar_options) end end def extract_email_address(object) if object.respond_to?(:mail) object.mail elsif object.to_s =~ %r{<(.+?)>} $1 end end end