Class: CommentsController
Instance Method Summary
collapse
#advertise, #cache_action?, #footer_content, #homepage_features, #plaxo, #rss_site_index, #site_index
Methods included from BaseHelper
#add_friend_link, #ajax_spinner_for, #avatar_for, #block_to_partial, #box, #city_cloud, #clippings_link, #commentable_url, #container_title, #excerpt_with_jump, #flash_class, #forum_page?, #is_current_user_and_featured?, #jumbotron, #last_active, #more_comments_links, #page_title, #paginating_links, #possesive, #profile_completeness, #render_jumbotron, #render_widgets, #rounded, #search_posts_title, #search_user_posts_path, #show_footer_content?, #tag_auto_complete_field, #time_ago_in_words, #time_ago_in_words_or_date, #tiny_mce_init_if_needed, #tiny_mce_js, #topnav_tab, #truncate_words, #truncate_words_with_highlight, #widget
#get_matching_ui_locale, #get_sorted_langs_from_accept_header, #get_valid_lang_from_accept_header, #set_locale
#login_by_token, #update_last_seen_at
Instance Method Details
#approve ⇒ Object
34
35
36
37
38
39
40
41
42
|
# File 'app/controllers/comments_controller.rb', line 34
def approve
= .find(params[:id])
.ham! if configatron.has_key?(:akismet_key)
.role = 'published'
.save!
respond_to do |format|
format.js
end
end
|
#create ⇒ Object
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# File 'app/controllers/comments_controller.rb', line 102
def create
= (params[:commentable_type])
= .singularize.constantize.find(params[:commentable_id])
= ..new()
.recipient = .owner
.user_id = current_user.id if current_user
.author_ip = request.remote_ip
respond_to do |format|
if (logged_in? || verify_recaptcha()) && .save
flash.now[:notice] = :comment_was_successfully_created.l
format.html { redirect_to () }
format.js
else
flash.now[:error] = :comment_save_error.l_with_args(:error => .errors.full_messages.to_sentence)
format.html { redirect_to (.tableize, ) }
format.js
end
end
end
|
#delete_selected ⇒ Object
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# File 'app/controllers/comments_controller.rb', line 144
def delete_selected
if request.delete?
if params[:delete]
params[:delete].each { |id|
= .find(id)
.spam! if params[:spam] && configatron.has_key?(:akismet_key)
.destroy if .can_be_deleted_by(current_user)
}
end
flash[:notice] = :comments_deleted.l
else
flash[:error] = :comments_not_deleted.l
end
redirect_to
end
|
#destroy ⇒ Object
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
# File 'app/controllers/comments_controller.rb', line 125
def destroy
= .find(params[:id])
if .can_be_deleted_by(current_user) && .destroy
if params[:spam] && configatron.has_key?(:akismet_key)
.spam!
end
flash.now[:notice] = :the_comment_was_deleted.l
else
flash.now[:error] = :comment_could_not_be_deleted.l
end
respond_to do |format|
format.html { redirect_to users_url }
format.js {
render :inline => flash[:error], :status => 500 if flash[:error]
render if flash[:notice]
}
end
end
|
#edit ⇒ Object
16
17
18
19
20
21
|
# File 'app/controllers/comments_controller.rb', line 16
def edit
= .find(params[:id])
respond_to do |format|
format.js
end
end
|
#index ⇒ Object
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
85
86
87
88
89
90
91
92
93
94
|
# File 'app/controllers/comments_controller.rb', line 44
def index
= (params[:commentable_type])
= .singularize.constantize
= .humanize
= .tableize
if = .find(params[:commentable_id])
unless logged_in? || (.owner && .owner.profile_public?)
flash.now[:error] = :private_user_profile_message.l
redirect_to login_path and return
end
= ..recent.page(params[:page])
@title =
= (, , :format => :rss)
if .any?
= .first
@user = .recipient
@title = .
@back_url = ()
respond_to do |format|
= "#{configatron.community_name}: #{commentable_type_humanized} Comments - #{@title}"
format.html
format. {
(, , ) and return
}
end
else
if .is_a?(User)
@user =
@title = @user.login
@back_url = user_path(@user)
elsif @user = .user
@title = .respond_to?(:title) ? .title : @title
@back_url = url_for([@user, ])
end
respond_to do |format|
format.html
format. {
= "#{configatron.community_name}: #{commentable_type_humanized} Comments - #{@title}"
([], , ) and return
}
end
end
else
flash[:notice] = :no_comments_found.l_with_args(:type => )
redirect_to home_path
end
end
|
#new ⇒ Object
96
97
98
99
|
# File 'app/controllers/comments_controller.rb', line 96
def new
= (params[:commentable_type]).constantize.find(params[:commentable_id])
redirect_to (.class.to_s.tableize, .id)
end
|
#unsubscribe ⇒ Object
161
162
163
164
165
166
167
168
|
# File 'app/controllers/comments_controller.rb', line 161
def unsubscribe
= .find(params[:id])
if .token_for(params[:email]).eql?(params[:token])
.unsubscribe_notifications(params[:email])
flash[:notice] = :comment_unsubscribe_succeeded.l
end
redirect_to ()
end
|
#update ⇒ Object
23
24
25
26
27
28
29
30
31
32
|
# File 'app/controllers/comments_controller.rb', line 23
def update
= .find(params[:id])
.update_attributes!()
rescue ActiveRecord::RecordInvalid
flash[:error] = :an_error_occurred.l
ensure
respond_to do |format|
format.js
end
end
|