Class: CommentsController

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

Overview

Copyright © 2008-2013 Michael Dvorkin and contributors.

Fat Free CRM is freely distributable under the terms of MIT license. See MIT-LICENSE file or www.opensource.org/licenses/mit-license.php


Instance Method Summary collapse

Methods inherited from ApplicationController

#auto_complete

Instance Method Details

#createObject

POST /comments POST /comments.json POST /comments.xml AJAX




49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'app/controllers/comments_controller.rb', line 49

def create
  @comment = Comment.new(
    comment_params.merge(user_id: current_user.id)
  )
  # Make sure commentable object exists and is accessible to the current user.
  model = find_class(@comment.commentable_type)
  id = @comment.commentable_id
  if model.my(current_user).find_by_id(id)
    @comment.save
    respond_with(@comment)
  else
    respond_to_related_not_found(model.name.downcase)
  end
end

#destroyObject

DELETE /comments/1 DELETE /comments/1.json DELETE /comments/1.xml not implemented




78
79
80
81
82
# File 'app/controllers/comments_controller.rb', line 78

def destroy
  @comment = Comment.find(params[:id])
  @comment.destroy
  respond_with(@comment)
end

#editObject

GET /comments/1/edit AJAX




35
36
37
38
39
40
41
42
43
# File 'app/controllers/comments_controller.rb', line 35

def edit
  @comment = Comment.find(params[:id])

  model = find_class(@comment.commentable_type)
  id = @comment.commentable_id
  unless model.my(current_user).find_by_id(id)
    respond_to_related_not_found(model.downcase)
  end
end

#indexObject

GET /comments GET /comments.json GET /comments.xml




15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'app/controllers/comments_controller.rb', line 15

def index
  @commentable = extract_commentable_name(params)
  if @commentable
    @asset = find_class(@commentable).my(current_user).find(params[:"#{@commentable}_id"])
    @comments = @asset.comments.order("created_at DESC")
  end
  respond_with(@comments) do |format|
    format.html { redirect_to @asset }
  end
rescue ActiveRecord::RecordNotFound # Kicks in if @asset was not found.
  flash[:warning] = t(:msg_assets_not_available, "notes")
  respond_to do |format|
    format.html { redirect_to root_url }
    format.json { render plain: flash[:warning], status: :not_found }
    format.xml  { render plain: flash[:warning], status: :not_found }
  end
end

#updateObject

PUT /comments/1 PUT /comments/1.json PUT /comments/1.xml not implemened




68
69
70
71
72
# File 'app/controllers/comments_controller.rb', line 68

def update
  @comment = Comment.find(params[:id])
  @comment.update_attributes(comment_params)
  respond_with(@comment)
end