From: Tom Hughes Date: Sat, 14 Nov 2009 15:57:08 +0000 (+0000) Subject: Add support for logical deletion of diary entries and comments. X-Git-Tag: live~6494 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/634565c5d399b71192484ac10fc2f8f1570e95f3?ds=sidebyside Add support for logical deletion of diary entries and comments. --- diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 690b4292b..c74c821c2 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -3,9 +3,10 @@ class DiaryEntryController < ApplicationController before_filter :authorize_web before_filter :set_locale - before_filter :require_user, :only => [:new, :edit] + before_filter :require_user, :only => [:new, :edit, :comment, :hide, :hidecomment] before_filter :check_database_readable before_filter :check_database_writable, :only => [:new, :edit] + before_filter :require_administrator, :only => [:hide, :hidecomment] def new @title = t 'diary_entry.new.title' @@ -66,12 +67,15 @@ class DiaryEntryController < ApplicationController def list if params[:display_name] - @this_user = User.find_by_display_name(params[:display_name], :conditions => {:visible => true}) + @this_user = User.find_by_display_name(params[:display_name], :conditions => { :visible => true }) if @this_user @title = t 'diary_entry.list.user_title', :user => @this_user.display_name @entry_pages, @entries = paginate(:diary_entries, - :conditions => ['user_id = ?', @this_user.id], + :conditions => { + :user_id => @this_user.id, + :visible => true + }, :order => 'created_at DESC', :per_page => 20) else @@ -83,13 +87,20 @@ class DiaryEntryController < ApplicationController elsif params[:language] @title = t 'diary_entry.list.in_language_title', :language => Language.find(params[:language]).english_name @entry_pages, @entries = paginate(:diary_entries, :include => :user, - :conditions => ["users.visible = ? AND diary_entries.language_code = ?", true, params[:language]], + :conditions => { + :users => { :visible => true }, + :visible => true, + :language_code => params[:language] + }, :order => 'created_at DESC', :per_page => 20) else @title = t 'diary_entry.list.title' @entry_pages, @entries = paginate(:diary_entries, :include => :user, - :conditions => ["users.visible = ?", true], + :conditions => { + :users => { :visible => true }, + :visible => true + }, :order => 'created_at DESC', :per_page => 20) end @@ -99,10 +110,16 @@ class DiaryEntryController < ApplicationController request.format = :rss if params[:display_name] - user = User.find_by_display_name(params[:display_name], :conditions => {:visible => true}) + user = User.find_by_display_name(params[:display_name], :conditions => { :visible => true }) if user - @entries = DiaryEntry.find(:all, :conditions => ['user_id = ?', user.id], :order => 'created_at DESC', :limit => 20) + @entries = DiaryEntry.find(:all, + :conditions => { + :user_id => user.id, + :visible => true + }, + :order => 'created_at DESC', + :limit => 20) @title = I18n.t('diary_entry.feed.user.title', :user => user.display_name) @description = I18n.t('diary_entry.feed.user.description', :user => user.display_name) @link = "http://#{SERVER_URL}/user/#{user.display_name}/diary" @@ -111,15 +128,24 @@ class DiaryEntryController < ApplicationController end elsif params[:language] @entries = DiaryEntry.find(:all, :include => :user, - :conditions => ["users.visible = ? AND diary_entries.language_code = ?", true, params[:language]], - :order => 'created_at DESC', :limit => 20) + :conditions => { + :users => { :visible => true }, + :visible => true, + :language_code => params[:language] + }, + :order => 'created_at DESC', + :limit => 20) @title = I18n.t('diary_entry.feed.language.title', :language_name => Language.find(params[:language]).english_name) @description = I18n.t('diary_entry.feed.language.description', :language_name => Language.find(params[:language]).english_name) @link = "http://#{SERVER_URL}/diary/#{params[:language]}" else @entries = DiaryEntry.find(:all, :include => :user, - :conditions => ["users.visible = ?", true], - :order => 'created_at DESC', :limit => 20) + :conditions => { + :users => { :visible => true }, + :visible => true + }, + :order => 'created_at DESC', + :limit => 20) @title = I18n.t('diary_entry.feed.all.title') @description = I18n.t('diary_entry.feed.all.description') @link = "http://#{SERVER_URL}/diary" @@ -127,10 +153,14 @@ class DiaryEntryController < ApplicationController end def view - user = User.find_by_display_name(params[:display_name], :conditions => {:visible => true}) + user = User.find_by_display_name(params[:display_name], :conditions => { :visible => true }) if user - @entry = DiaryEntry.find(:first, :conditions => ['user_id = ? AND id = ?', user.id, params[:id]]) + @entry = DiaryEntry.find(:first, :conditions => { + :id => params[:id], + :user_id => user.id, + :visible => true + }) if @entry @title = t 'diary_entry.view.title', :user => params[:display_name] else @@ -143,4 +173,26 @@ class DiaryEntryController < ApplicationController render :action => 'no_such_user', :status => :not_found end end + + def hide + entry = DiaryEntry.find(params[:id]) + entry.update_attributes(:visible => false) + redirect_to :action => "list", :display_name => entry.user.display_name + end + + def hidecomment + comment = DiaryComment.find(params[:comment]) + comment.update_attributes(:visible => false) + redirect_to :action => "view", :id => comment.diary_entry.id + end +private + ## + # require that the user is a administrator, or fill out a helpful error message + # and return them to the user page. + def require_administrator + unless @user.administrator? + flash[:error] = t('user.filter.not_an_administrator') + redirect_to :controller => 'diary_entry', :action => 'view', :display_name => params[:id] + end + end end diff --git a/app/models/diary_entry.rb b/app/models/diary_entry.rb index 705438213..c6f4eaa12 100644 --- a/app/models/diary_entry.rb +++ b/app/models/diary_entry.rb @@ -3,7 +3,10 @@ class DiaryEntry < ActiveRecord::Base belongs_to :language, :foreign_key => 'language_code' has_many :diary_comments, :include => :user, - :conditions => ["users.visible = ?", true], + :conditions => { + :users => { :visible => true }, + :visible => true + }, :order => "diary_comments.id" validates_presence_of :title, :body diff --git a/app/views/diary_entry/_diary_comment.html.erb b/app/views/diary_entry/_diary_comment.html.erb index d4f7af6fc..b2a444982 100644 --- a/app/views/diary_entry/_diary_comment.html.erb +++ b/app/views/diary_entry/_diary_comment.html.erb @@ -1,3 +1,6 @@

<%= t('diary_entry.diary_comment.comment_from', :link_user => (link_to h(diary_comment.user.display_name), :controller => 'user', :action => 'view', :display_name => diary_comment.user.display_name), :comment_created_at => l(diary_comment.created_at)) %>

<%= htmlize(diary_comment.body) %> +<% if @user && @user.administrator? %> +<%= link_to t('diary_entry.diary_comment.hide_link'), {:action => 'hidecomment', :display_name => @user.display_name, :id => diary_comment.diary_entry.id, :comment => diary_comment.id}, {:confirm => t('diary_entry.diary_comment.confirm')} %> +<% end %>
diff --git a/app/views/diary_entry/_diary_entry.html.erb b/app/views/diary_entry/_diary_entry.html.erb index 082231b19..3e6ee02aa 100644 --- a/app/views/diary_entry/_diary_entry.html.erb +++ b/app/views/diary_entry/_diary_entry.html.erb @@ -15,5 +15,8 @@ <% if @user == diary_entry.user %> | <%= link_to t('diary_entry.diary_entry.edit_link'), :action => 'edit', :display_name => @user.display_name, :id => diary_entry.id %> <% end %> +<% if @user && @user.administrator? %> +| <%= link_to t('diary_entry.diary_entry.hide_link'), {:action => 'hide', :display_name => @user.display_name, :id => diary_entry.id}, {:confirm => t('diary_entry.diary_entry.confirm')} %> +<% end %>

diff --git a/config/locales/en.yml b/config/locales/en.yml index 22db70b10..159920ac1 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -320,8 +320,12 @@ en: one: 1 comment other: "{{count}} comments" edit_link: Edit this entry + hide_link: Hide this entry + confirm: Confirm diary_comment: comment_from: "Comment from {{link_user}} at {{comment_created_at}}" + hide_link: Hide this comment + confirm: Confirm feed: user: title: "OpenStreetMap diary entries for {{user}}" diff --git a/config/routes.rb b/config/routes.rb index 5c8547430..9d1da0c97 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -156,6 +156,8 @@ ActionController::Routing::Routes.draw do |map| map.connect '/user/:display_name/diary/rss', :controller => 'diary_entry', :action => 'rss' map.connect '/user/:display_name/diary/new', :controller => 'diary_entry', :action => 'new' map.connect '/user/:display_name/diary/:id/edit', :controller => 'diary_entry', :action => 'edit', :id => /\d+/ + map.connect '/user/:display_name/diary/:id/hide', :controller => 'diary_entry', :action => 'hide', :id => /\d+/ + map.connect '/user/:display_name/diary/:id/hidecomment/:comment', :controller => 'diary_entry', :action => 'hidecomment', :id => /\d+/, :comment => /\d+/ map.connect '/user/:display_name/account', :controller => 'user', :action => 'account' map.connect '/user/:display_name/set_home', :controller => 'user', :action => 'set_home' map.connect '/user/:display_name/activate', :controller => 'user', :action => 'activate' diff --git a/db/migrate/047_add_visible_to_diaries.rb b/db/migrate/047_add_visible_to_diaries.rb new file mode 100644 index 000000000..994bebd17 --- /dev/null +++ b/db/migrate/047_add_visible_to_diaries.rb @@ -0,0 +1,11 @@ +class AddVisibleToDiaries < ActiveRecord::Migration + def self.up + add_column :diary_entries, :visible, :boolean, :null => false, :default => true + add_column :diary_comments, :visible, :boolean, :null => false, :default => true + end + + def self.down + remove_column :diary_comments, :visible + remove_column :diary_entries, :visible + end +end