Class: Commontator::CommentsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/commontator/comments_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

POST /1/comments

Raises:

  • (SecurityTransgression)


22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'app/controllers/commontator/comments_controller.rb', line 22

def create
  @comment = Comment.new(params[:comment])
  @comment.thread = @thread
  @comment.commontator = @commontator
  
  raise SecurityTransgression unless @comment.can_be_created_by?(@commontator)
  
  if @comment.save
    @thread.subscribe(@commontator) if @thread.config.auto_subscribe_on_comment
    @thread.mark_as_unread_except_for(@commontator)
    SubscriptionsMailer.comment_created_email(@comment, @commontable_url)
    @thread.comment_created_callback(@commontator, @comment)
  else
    @errors = @comment.errors
  end

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js
  end
end

#deleteObject

PUT /comments/1/delete

Raises:

  • (SecurityTransgression)


68
69
70
71
72
73
74
75
76
77
78
# File 'app/controllers/commontator/comments_controller.rb', line 68

def delete
  raise SecurityTransgression unless @comment.can_be_deleted_by?(@commontator)

  @comment.delete(@commontator)
  @thread.comment_deleted_callback(@commontator, @comment)

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js { render :delete }
  end
end

#downvoteObject

PUT /comments/1/downvote

Raises:

  • (SecurityTransgression)


105
106
107
108
109
110
111
112
113
114
# File 'app/controllers/commontator/comments_controller.rb', line 105

def downvote
  raise SecurityTransgression unless @comment.can_be_voted_on_by?(@commontator)
  
  @comment.downvote_from @commontator

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js { render :vote }
  end
end

#editObject

GET /comments/1/edit

Raises:

  • (SecurityTransgression)


45
46
47
48
49
50
51
52
# File 'app/controllers/commontator/comments_controller.rb', line 45

def edit
  raise SecurityTransgression unless @comment.can_be_edited_by?(@commontator)

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js
  end
end

#newObject

GET /1/comments/new

Raises:

  • (SecurityTransgression)


7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'app/controllers/commontator/comments_controller.rb', line 7

def new
  @comment = Comment.new
  @comment.thread = @thread
  @comment.commontator = @commontator

  raise SecurityTransgression unless @comment.can_be_created_by?(@commontator)

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js
  end
 
end

#undeleteObject

PUT /comments/1/undelete

Raises:

  • (SecurityTransgression)


81
82
83
84
85
86
87
88
89
90
# File 'app/controllers/commontator/comments_controller.rb', line 81

def undelete
  raise SecurityTransgression unless @comment.can_be_deleted_by?(@commontator)

  @comment.undelete

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js { render :delete }
  end
end

#unvoteObject

PUT /comments/1/unvote

Raises:

  • (SecurityTransgression)


117
118
119
120
121
122
123
124
125
126
# File 'app/controllers/commontator/comments_controller.rb', line 117

def unvote
  raise SecurityTransgression unless @comment.can_be_voted_on_by?(@commontator)
  
  @comment.unvote :voter => @commontator

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js { render :vote }
  end
end

#updateObject

PUT /comments/1

Raises:

  • (SecurityTransgression)


55
56
57
58
59
60
61
62
63
64
65
# File 'app/controllers/commontator/comments_controller.rb', line 55

def update
  raise SecurityTransgression unless @comment.can_be_edited_by?(@commontator)
  
  @thread.comment_edited_callback(@commontator, @comment) \
    if @comment.update_attributes(params[:comment])

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js
  end
end

#upvoteObject

PUT /comments/1/upvote

Raises:

  • (SecurityTransgression)


93
94
95
96
97
98
99
100
101
102
# File 'app/controllers/commontator/comments_controller.rb', line 93

def upvote
  raise SecurityTransgression unless @comment.can_be_voted_on_by?(@commontator)
  
  @comment.upvote_from @commontator

  respond_to do |format|
    format.html { redirect_to @commontable_url }
    format.js { render :vote }
  end
end