module ApplicationHelper include ActionView::Helpers::AssetTagHelper include ActionView::Helpers::UrlHelper include InputSanitizeHelper def module_page? controller_name == 'my_modules' end def experiment_page? controller_name == 'experiments' end def project_page? controller_name == 'projects' && action_name.in?(%w(show experiment_archive)) end def all_projects_page? controller_name == 'projects' && action_name.in?(%w(index archive)) end def display_tooltip(message, len = Constants::NAME_TRUNCATION_LENGTH) return '' unless message if message.strip.length > len sanitize_input("") else truncate(message.strip, length: len) end end def sample_types_page_project? controller_name == 'sample_types' && @my_module.nil? && @experiment.nil? end def sample_groups_page_project? controller_name == 'sample_groups' && @my_module.nil? && @experiment.nil? end def sample_types_page_my_module? controller_name == 'sample_types' && !@my_module.nil? end def sample_groups_page_my_module? controller_name == 'sample_groups' && !@my_module.nil? end def sample_groups_page_experiment? controller_name == 'sample_groups' && @my_module.nil? && !@experiment.nil? end def sample_types_page_expermient? controller_name == 'sample_types' && @my_module.nil? && !@experiment.nil? end def module_repository_page? controller_name == 'my_modules' && !@repository.nil? end def smart_annotation_notification(options = {}) title = options.fetch(:title) { :title_must_be_present } message = options.fetch(:message) { :message_must_be_present } new_text = options.fetch(:new_text) { :new_text_must_be_present } old_text = options[:old_text] || '' sa_user = /\[\@(.*?)~([0-9a-zA-Z]+)\]/ # fetch user ids from the previous text old_user_ids = [] old_text.gsub(sa_user) do |el| match = el.match(sa_user) old_user_ids << match[2].base62_decode end # fetch user ids from the new text new_user_ids = [] new_text.gsub(sa_user) do |el| match = el.match(sa_user) new_user_ids << match[2].base62_decode end # check if the user has been already mentioned annotated_users = [] new_user_ids.each do |el| annotated_users << el unless old_user_ids.include?(el) end # restrict the list of ids and generate notification annotated_users.uniq.each do |user_id| target_user = User.find_by_id(user_id) next unless target_user generate_annotation_notification(target_user, title, message) end end def generate_annotation_notification(target_user, title, message) notification = Notification.create( type_of: :assignment, title: sanitize_input(title), message: sanitize_input(message) ) if target_user.assignments_notification UserNotification.create(notification: notification, user: target_user) end end def smart_annotation_parser(text, team = nil) # sometimes happens that the "team" param gets wrong data: "{nil, []}" # so we have to check if the "team" param is kind of Team object team = nil unless team.is_a? Team new_text = smart_annotation_filter_resources(text) new_text = smart_annotation_filter_users(new_text, team) new_text end # Check if text have smart annotations of resources # and outputs a link to resource def smart_annotation_filter_resources(text) SmartAnnotations::TagToHtml.new(current_user, text).html end # Check if text have smart annotations of users # and outputs a popover with user information def smart_annotation_filter_users(text, team) sa_user = /\[\@(.*?)~([0-9a-zA-Z]+)\]/ new_text = text.gsub(sa_user) do |el| match = el.match(sa_user) user = User.find_by_id(match[2].base62_decode) next unless user team ||= current_team popover_for_user_name(user, team) end new_text end # Generate smart annotation link for one user object def popover_for_user_name(user, team = nil, skip_user_status = false) user_still_in_team = user.teams.include?(team) user_description = %(
thumb
#{user.full_name}

#{user.email}

) if user_still_in_team user_t = user.user_teams .where('user_teams.team_id = ?', team) .first user_description += %(

#{I18n.t('atwho.users.popover_html', role: user_t.role.capitalize, team: user_t.team.name, time: user_t.created_at.strftime('%B %Y'))}

) else user_description += %(

) end user_name = user.full_name unless skip_user_status || user_still_in_team user_name << " #{I18n.t('atwho.res.removed')}" end raw("") + raw('') + user_name + raw('') end # Dirty, dirty hack for displaying images in reports def user_avatar_absolute_url(user, style) prefix = '' if ENV['PAPERCLIP_STORAGE'].present? && ENV['MAIL_SERVER_URL'].present? && ENV['PAPERCLIP_STORAGE'] != 'filesystem' prefix = ENV['MAIL_SERVER_URL'] end # for development prefix = 'localhost:3000' if ENV['MAIL_SERVER_URL'] == 'localhost' if !prefix.empty? && !prefix.include?('http://') && !prefix.include?('https://') prefix = if respond_to?(:request) && request.ssl? "https://#{prefix}" else "http://#{prefix}" end end unless missing_avatar(user, style) return user.avatar(style, timeout: Constants::URL_LONG_EXPIRE_TIME) end url_for(prefix + "/images/#{style}/missing.png") end def missing_avatar(user, style) user.avatar(style) == '/images/icon_small/missing.png' || user.avatar(style) == '/images/thumb/missing.png' end end