summaryrefslogtreecommitdiffstats
path: root/lib/redmine/quote_reply.rb
blob: f6d7821cd08c2f9992372255c838d6fd7d69661b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# frozen_string_literal: true

# Redmine - project management software
# Copyright (C) 2006-  Jean-Philippe Lang
#
# 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.

module Redmine
  module QuoteReply
    module Helper
      def quote_reply_button(url:, icon_only: false)
        button_params = {
          data: {
            action: 'quote-reply#quote',
            quote_reply_url_param: url,
            quote_reply_text_formatting_param: Setting.text_formatting
          },
          class: "#{icon_only ? "icon-only" : "icon"} icon-quote"
        }
        button_params[:title] = l(:button_quote) if icon_only

        link_to sprite_icon('quote-filled', l(:button_quote), icon_only: icon_only, style: :filled), '#', button_params
      end
    end

    module Builder
      def quote_issue(issue, partial_quote: nil)
        user = issue.author

        build_quote(
          "#{ll(Setting.default_language, :text_user_wrote, user)}\n> ",
          issue.description,
          partial_quote
        )
      end

      def quote_issue_journal(journal, indice:, partial_quote: nil)
        user = journal.user

        build_quote(
          "#{ll(Setting.default_language, :text_user_wrote_in, {value: journal.user, link: "#note-#{indice}"})}\n> ",
          journal.notes,
          partial_quote
        )
      end

      def quote_root_message(message, partial_quote: nil)
        build_quote(
          "#{ll(Setting.default_language, :text_user_wrote, message.author)}\n> ",
          message.content,
          partial_quote
        )
      end

      def quote_message(message, partial_quote: nil)
        build_quote(
          "#{ll(Setting.default_language, :text_user_wrote_in, {value: message.author, link: "message##{message.id}"})}\n> ",
          message.content,
          partial_quote
        )
      end

      private

      def build_quote(quote_header, text, partial_quote = nil)
        quote_text = partial_quote.presence || text.to_s.strip.gsub(%r{<pre>(.*?)</pre>}m, '[...]')

        "#{quote_header}#{quote_text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"}"
      end
    end
  end
end