-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(to unstable branch) Adjust opengraph tag to show scrapped image (#8291)
* paginate tag page listings (#8243) * Update _graph.html.erb * Update show.html.erb * topic card count fixes for #7965 (#8249) * fixes for #7965 * count fixes * Update _topicCard.html.erb * Delete _related_tags.html.erb (#8247) * Fixes to tag counting logic (#8245) * Update tag_test.rb * Update tag_test.rb * Update tag_test.rb * Update tag.rb * Spam2: Moderator's Queue feature (#8196) * queue feature spam2 * indentation issue * bulk moderation for comments and tag count in queue * indentation * moderator queue * batch controller * first-timmer issue * tag filter * queue indentation * all tags filter queue * Don't let newcomers edit wiki pages (controller-level) (#8250) * Don't let newcomers edit wiki pages (controller-level) * Update wiki_controller.rb * Update wiki_controller_test.rb * Update wiki_controller_test.rb * Update wiki_controller_test.rb * Update wiki_controller_test.rb * Update wiki_controller.rb * Update wiki_controller.rb * Update wiki_controller_test.rb * Update wiki_controller_test.rb * Bump rubocop from 0.88.0 to 0.89.0 Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.88.0 to 0.89.0. - [Release notes](https://github.com/rubocop-hq/rubocop/releases) - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v0.88.0...v0.89.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Bump codecov from 0.2.3 to 0.2.5 Bumps [codecov](https://github.com/codecov/codecov-ruby) from 0.2.3 to 0.2.5. - [Release notes](https://github.com/codecov/codecov-ruby/releases) - [Changelog](https://github.com/codecov/codecov-ruby/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-ruby@v0.2.3...v0.2.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Bump rdiscount from 2.2.0.1 to 2.2.0.2 Bumps [rdiscount](https://github.com/davidfstr/rdiscount) from 2.2.0.1 to 2.2.0.2. - [Release notes](https://github.com/davidfstr/rdiscount/releases) - [Changelog](https://github.com/davidfstr/rdiscount/blob/master/CHANGELOG.md) - [Commits](davidfstr/rdiscount@2.2.0.1...2.2.0.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Adding tags to Modals of Nodes (#8238) * adding tags in modals of Nodes #8230 * refactored #8230 * fixed tag path in the modal #8230 also fixed extra spacing when no tags on the modal * update _flags.html.erb (#8237) Changed "btn btn-xs" to "btn btn-sm" * adjust opengraph tag Co-authored-by: Jeffrey Warren <jeff@unterbahn.com> Co-authored-by: Keshav Sethi <36025262+keshavsethi@users.noreply.github.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: renugasaraswathy <renugasaraswathy@gmail.com> Co-authored-by: siddhama <54734665+siddhama@users.noreply.github.com>
- Loading branch information
1 parent
243e405
commit 073d3f1
Showing
25 changed files
with
648 additions
and
408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
class BatchController < ApplicationController | ||
before_action :require_user | ||
|
||
def batch_spam | ||
if logged_in_as(%w(moderator admin)) | ||
user_spamed = [] | ||
node_spamed = 0 | ||
params[:ids].split(',').uniq.each do |nid| | ||
node = Node.find nid | ||
node_spamed += 1 | ||
node.spam | ||
user = node.author | ||
user_spamed << user.id | ||
user.ban | ||
end | ||
flash[:notice] = node_spamed.to_s + ' nodes spammed and ' + user_spamed.length.to_s + ' users banned.' | ||
redirect_to '/spam2' | ||
else | ||
flash[:error] = 'Only admins and moderators can mark a batch spam.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_publish | ||
if logged_in_as(%w(moderator admin)) | ||
node_published = 0 | ||
user_published = [] | ||
params[:ids].split(',').uniq.each do |nid| | ||
node = Node.find nid | ||
node_published += 1 | ||
node.publish | ||
user = node.author | ||
user.unban | ||
user_published << user.id | ||
end | ||
flash[:notice] = node_published.to_s + ' nodes published and ' + user_published.length.to_s + ' users unbanned.' | ||
redirect_to '/spam2' | ||
else | ||
flash[:error] = 'Only admins and moderators can batch publish.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_delete | ||
if logged_in_as(%w(moderator admin)) | ||
node_delete = 0 | ||
params[:ids].split(',').uniq.each do |nid| | ||
node = Node.find nid | ||
node_delete += 1 | ||
node.delete | ||
end | ||
flash[:notice] = node_delete.to_s + ' nodes deleted' | ||
redirect_back fallback_location: root_path | ||
else | ||
flash[:error] = 'Only admins and moderators can batch delete.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_ban | ||
if logged_in_as(%w(admin moderator)) | ||
user_ban = [] | ||
params[:ids].split(',').uniq.each do |nid| | ||
node = Node.find nid | ||
user = node.author | ||
user_ban << user.id | ||
user.ban | ||
end | ||
flash[:notice] = user_ban.length.to_s + ' users banned.' | ||
redirect_back fallback_location: root_path | ||
else | ||
flash[:error] = 'Only admins and moderators can ban users.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_unban | ||
unbanned_users = [] | ||
if logged_in_as(%w(moderator admin)) | ||
params[:ids].split(',').uniq.each do |node_id| | ||
node = Node.find node_id | ||
user_unban = node.author | ||
unbanned_users << user_unban.id | ||
user_unban.unban | ||
end | ||
flash[:notice] = unbanned_users.length.to_s + ' users unbanned.' | ||
redirect_back fallback_location: root_path | ||
else | ||
flash[:error] = 'Only admins and moderators can unban users.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_ban_user | ||
users = [] | ||
if logged_in_as(%w(admin moderator)) | ||
params[:ids].split(',').uniq.each do |user_id| | ||
user_ban = User.find user_id | ||
users << user_ban.id | ||
user_ban.ban | ||
end | ||
flash[:notice] = users.length.to_s + ' users banned.' | ||
redirect_back fallback_location: root_path | ||
else | ||
flash[:error] = 'Only moderators can moderate users.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_unban_user | ||
if logged_in_as(%w(moderator admin)) | ||
params[:ids].split(',').uniq.each do |id| | ||
unban_user = User.find id | ||
unban_user.unban | ||
end | ||
flash[:notice] = 'Success! users unbanned.' | ||
redirect_back fallback_location: root_path | ||
else | ||
flash[:error] = 'Only admins and moderators can moderate users.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
|
||
def batch_comment | ||
if logged_in_as(%w(moderator admin)) | ||
comment_total = 0 | ||
params[:ids].split(',').uniq.each do |cid| | ||
comment = Comment.find cid | ||
comment_total += 1 | ||
case params[:type] | ||
when 'publish' | ||
comment.publish | ||
when 'spam' | ||
comment.spam | ||
user.ban | ||
when 'delete' | ||
comment.delete | ||
else | ||
flash[:notice] = 'Invalid Url' | ||
end | ||
end | ||
flash[:notice] = comment_total.to_s + ' comment moderated' | ||
redirect_back fallback_location: root_path | ||
else | ||
flash[:error] = 'Only admins and moderators can moderate comments.' | ||
redirect_to '/dashboard' | ||
end | ||
end | ||
end |
Oops, something went wrong.