]> git.openstreetmap.org Git - rails.git/blob - app/controllers/notes_controller.rb
Add status filter to user's note page
[rails.git] / app / controllers / notes_controller.rb
1 class NotesController < ApplicationController
2   include UserMethods
3
4   layout :map_layout
5
6   before_action :check_api_readable
7   before_action :authorize_web
8   before_action :require_oauth
9
10   authorize_resource
11
12   before_action :lookup_user, :only => [:index]
13   before_action :set_locale
14   around_action :web_timeout
15
16   ##
17   # Display a list of notes by a specified user
18   def index
19     param! :page, Integer, :min => 1
20
21     @params = params.permit(:display_name, :status)
22     @title = t ".title", :user => @user.display_name
23     @page = (params[:page] || 1).to_i
24     @page_size = 10
25     @notes = @user.notes
26     @notes = @notes.visible unless current_user&.moderator?
27     @notes = @notes.where(:status => params[:status]) unless params[:status] == "all" || params[:status].blank?
28     @notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author)
29
30     render :layout => "site"
31   end
32
33   def show
34     @type = "note"
35
36     if current_user&.moderator?
37       @note = Note.find(params[:id])
38       @note_comments = @note.comments.unscope(:where => :visible)
39     else
40       @note = Note.visible.find(params[:id])
41       @note_comments = @note.comments
42     end
43   rescue ActiveRecord::RecordNotFound
44     render :template => "browse/not_found", :status => :not_found
45   end
46
47   def new; end
48 end