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
|
class DiscussionsController < ApplicationController
# load_and_authorize_resource
# before_filter :load_and_check_discussion_recipient, :only => [:create, :new]
def index
# показываем дискуссии юзера, и те куда его присоеденили
# так как имеем массив дискуссий, его пагинация будет через хак
@discussions = current_user.discussions
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @discussions }
end
end
# GET /discussions/1
# GET /discussions/1.json
def show
@discussion = Discussion.includes(:messages, :speakers).find(params[:id])
# @discussion.mark_as_read_for(current_user) # сделаем прочтенной для пользователя
# члены дискуссии - приглашенные в нее + ее создатель
@message = Message.new
respond_to do |format|
format.html # show.html.erb
format.json { render :json => @discussion }
end
end
# GET /discussions/new
# GET /discussions/new.json
def new
@discussion = Discussion.new
@discussion.messages.build
end
# POST /discussions
# POST /discussions.json
def create
@discussion = Discussion.new(params[:discussion])
@discussion.messages.each do |m|
m.discussion = @discussion
m.user = current_user
end
@discussion.add_recipient_token current_user.id
respond_to do |format|
if @discussion.save
format.html { redirect_to @discussion, :notice => 'Дискуссия начата.' }
# format.json { render :json => @discussion, :status => :created, :location => @discussion }
else
format.html { render :action => "new" }
# format.json { render :json => @discussion.errors, :status => :unprocessable_entity }
end
end
end
def leave
@discussion.remove_speaker(current_user)
redirect_to discussions_url, :notice => "Вы успешно покинули дискуссию."
end
private
def load_and_check_discussion_recipient
@discussion.recipient_tokens = params[:recipients] if params[:recipients]
# проверка, существует ли уже дискуссия с этим человеком
if @discussion.recipient_ids && @discussion.recipient_ids.size == 1
user = User.find(@discussion.recipient_ids.first)
discussion = Discussion.find_between_users(current_user, user)
if discussion
# дискуссия уже существует, добавим в нее написанное сообщение
@discussion.messages.each do |m|
Message.create!(:discussion => discussion, :user => current_user, :body => m.body) if m.body
end
# перекидываем на нее
redirect_to discussion_url(discussion), :notice => "Переписка между вами уже существует."
end
end
end
end
|