Skip to content
Extraits de code Groupes Projets
application_helper.rb 6,48 ko
Newer Older
  • Learn to ignore specific revisions
  • Raphael's avatar
    Raphael a validé
    #   Copyright (c) 2010, Diaspora Inc.  This file is
    
    Raphael's avatar
    Raphael a validé
    #   licensed under the Affero General Public License version 3 or later.  See
    
    Raphael's avatar
    Raphael a validé
    #   the COPYRIGHT file.
    
    Raphael Sofaer's avatar
    Raphael Sofaer a validé
    module ApplicationHelper
    
      @@youtube_title_cache = Hash.new("no-title")
    
    
      def modern_browser?
        false
      end
    
    
    danielvincent's avatar
    danielvincent a validé
      def page_title text=nil
        title = ""
        if text.blank?
          title = "#{current_user.name} | " if current_user
        else
          title = "#{text} | "
        end
        title += "DIASPORA*"
      end
    
    
      def aspects_with_post aspects, post
        aspects.select do |a|
          post.aspect_ids.include?(a.id)
        end
      end
      def aspects_without_post aspects, post
        aspects.reject do |a|
          post.aspect_ids.include?(a.id)
        end
      end
    
      def aspect_badge aspects
        str = ''
        if aspects.count > 1
          str = "<span class='aspect_badge all'>All aspects</span>"
        elsif aspects.count == 1
          aspect = aspects.first
          str = "<span class='aspect_badge single'><a href=#{aspect_path(aspect)}>#{aspect.name}</a></span>"
        end
        str.html_safe
      end
    
      def aspect_links aspects, opts={}
        str = ""
        aspects.each do |a|
          str << aspect_li(a, opts)
        end
        str.html_safe
      end
      def aspect_li aspect, opts= {}
        param_string = ""
        if opts.size > 0
          param_string << '?'
          opts.each_pair do |k,v|
            param_string << "#{k}=#{v}"
          end
        end
    "<li>
      <a href='/aspects/#{aspect.id}#{param_string}'>
        #{aspect.name}
      </a>
    </li>".html_safe
      end
    
    
    Raphael's avatar
    Raphael a validé
      def current_aspect?(aspect)
    
        !@aspect.nil? && !@aspect.is_a?(Symbol) && @aspect.id == aspect.id
    
    Raphael's avatar
    Raphael a validé
      def aspect_or_all_path aspect
        if @aspect.is_a? Aspect
          aspect_path @aspect
        else
          aspects_path
        end
      end
    
        object = object.person if object.is_a? User
    
        eval("#{object.class.name.underscore}_path(object, opts)")
    
        object.attributes.keys
    
      def type_partial(post)
        class_name = post.class.name.to_s.underscore
        "#{class_name.pluralize}/#{class_name}"
      end
    
    maxwell's avatar
    maxwell a validé
      def how_long_ago(obj)
    
        "#{time_ago_in_words(obj.created_at, true)} #{t('ago')}"
    
    maxwell's avatar
    maxwell a validé
      end
    
    
      def person_url(person)
        case person.class.to_s
        when "User"
          user_path(person)
    
          I18n.t('application.helper.unknown_person')
    
      def profile_photo(person)
        person_image_link(person, :size => :thumb_large, :to => :photos)
      end
    
      def owner_image_tag(size=nil)
        person_image_tag(current_user.person, size)
    
      end
    
      def owner_image_link
    
      def person_image_tag(person, size=:thumb_small)
        "<img alt='#{person.name}' class='avatar' data-person_id='#{person.id}' src='#{image_or_default(person, size)}' title='#{person.name}'>".html_safe
    
      end
    
      def person_link(person)
    "<a href='/people/#{person.id}'>
    
    </a>".html_safe
    
      def image_or_default(person, size=:thumb_large)
        image_location = person.profile.image_url(size) if person.profile
        image_location ||= person.profile.image_url(:thumb_large) if person.profile  #backwards compatability for old profile pictures
    
    maxwell's avatar
    maxwell a validé
      def hard_link(string, path)
        link_to string, path, :rel => 'external' 
      end
    
    maxwell's avatar
    maxwell a validé
      def person_image_link(person, opts = {})
    
    maxwell's avatar
    maxwell a validé
        if opts[:to] == :photos
    
          link_to person_image_tag(person,opts[:size]), person_photos_path(person)
    
    maxwell's avatar
    maxwell a validé
        else
    
    "<a href='/people/#{person.id}'>
      #{person_image_tag(person)}
    </a>".html_safe
    
    maxwell's avatar
    maxwell a validé
        end
    
      def post_yield_tag(post)
        (':' + post.id.to_s).to_sym
      end
    
    
      def person_photos_path person
        person_id = person.id if person.respond_to?(:id)
        person_id ||= person
          
        "#{photos_path}?person_id=#{person_id}"
      end
    
    
      def markdownify(message, options = {})
        message = h(message).html_safe
    
    
        [:autolinks, :youtube, :emphasis, :links, :newlines].each do |k|
    
          if !options.has_key?(k)
            options[k] = true
          end
        end
    
        if options[:links]
          message.gsub!(/\[([^\[]+)\]\(([^ ]+) \&quot;(([^&]|(&[^q])|(&q[^u])|(&qu[^o])|(&quo[^t])|(&quot[^;]))+)\&quot;\)/) do |m|
            escape = (options[:emphasis]) ? "\\" : ""
            res = "<a target=\"#{escape}_blank\" href=\"#{$2}\" title=\"#{$3}\">#{$1}</a>"
            res
          end
          message.gsub!(/\[([^\[]+)\]\(([^ ]+)\)/) do |m|
            escape = (options[:emphasis]) ? "\\" : ""
            res = "<a target=\"#{escape}_blank\" href=\"#{$2}\">#{$1}</a>"
            res
          end
        end
    
        if options[:youtube]
          message.gsub!(/( |^)(http:\/\/)?www\.youtube\.com\/watch[^ ]*v=([A-Za-z0-9_]+)(&[^ ]*|)/) do |m|
            res = "#{$1}youtube.com::#{$3}"
            res.gsub!(/(\*|_)/) { |m| "\\#{$1}" } if options[:emphasis]
            res
          end
        end
    
        if options[:autolinks]
          message.gsub!(/( |^)(www\.[^ ]+\.[^ ])/, '\1http://\2')
          message.gsub!(/(<a target="\\?_blank" href=")?(https|http|ftp):\/\/([^ ]+)/) do |m|
            if !$1.nil?
              m
            else
              res = %{<a target="_blank" href="#{$2}://#{$3}">#{$3}</a>}
              res.gsub!(/(\*|_)/) { |m| "\\#{$1}" } if options[:emphasis]
              res
            end
          end
        end
    
        if options[:emphasis]
    
          message.gsub!("\\**", "-^doublestar^-")
          message.gsub!("\\__", "-^doublescore^-")
          message.gsub!("\\*", "-^star^-")
          message.gsub!("\\_", "-^score^-")
          message.gsub!(/(\*\*\*|___)(.+?)\1/m, '<em><strong>\2</strong></em>')
          message.gsub!(/(\*\*|__)(.+?)\1/m, '<strong>\2</strong>')
          message.gsub!(/(\*|_)(.+?)\1/m, '<em>\2</em>')
          message.gsub!("-^doublestar^-", "**")
          message.gsub!("-^doublescore^-", "__")
          message.gsub!("-^star^-", "*")
          message.gsub!("-^score^-", "_")
    
          while youtube = message.match(/youtube\.com::([A-Za-z0-9_\\\-]+)/)
    
            video_id = youtube[1]
            if options[:youtube_maps] && options[:youtube_maps][video_id]
              title = options[:youtube_maps][video_id]
            else
              title = I18n.t 'application.helper.youtube_title.unknown'
            end
            message.gsub!('youtube.com::'+video_id, '<a class="video-link" data-host="youtube.com" data-video-id="' + video_id + '" href="#video">Youtube: ' + title + '</a>')
    
        if options[:newlines]
          message.gsub!(/\n+/, '<br />')
        end
    
    
        image_tag 'icons/monotone_question.png', :class => 'what_is_this', :title => text
    
    Raphael Sofaer's avatar
    Raphael Sofaer a validé
    end