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
|
# encoding: utf-8
#--
# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#++
module MessagesHelper
def sender_and_recipient_display(message)
sender_and_recipient_for(message).collect(&:capitalize).join(",")
end
def sender_and_recipient_for(message)
if message.recipient == current_user
[link_to(h(message.sender_name), message.sender), "me"]
else
["me", link_to(h(message.recipient.title), message.recipient)]
end
end
def message_title(message)
sender, recipient = sender_and_recipient_for(message)
case message.notifiable
when MergeRequest
msg_link = link_to('merge request', [message.notifiable.target_repository.project,
message.notifiable.target_repository,
message.notifiable])
"From <strong>#{sender}</strong> to <strong>#{recipient}</strong>, about a #{msg_link}"
when Membership
%Q{<strong>#{sender}</strong> added <strong>#{recipient}</strong> to the } +
%Q{team #{link_to("#{message.notifiable.group.name}", message.notifiable.group)}}
when Committership
committership = message.notifiable
user_link = link_to(committership.committer.title, [committership.repository.project,
committership.repository,
:committerships])
%Q{<strong>#{sender}</strong> added #{user_link} as committer in } +
%Q{<strong>#{committership.repository.name}</strong>}
else
"#{link_to('message', message)} from <strong>#{sender}</strong> to <strong>#{recipient}</strong>"
end
end
def sender_avatar(message)
if message.replies_enabled?
avatar_from_email(message.sender.email, :size => 32)
else
image_tag("default_face.gif", :size => "32x32")
end
end
end
|