]> git.openstreetmap.org Git - rails.git/blob - app/controllers/notes_controller.rb
Move user lookup and error render to concerns
[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 :set_locale
13   around_action :web_timeout
14
15   ##
16   # Display a list of notes by a specified user
17   def index
18     if params[:display_name]
19       if @user = User.active.find_by(:display_name => params[:display_name])
20         @params = params.permit(:display_name)
21         @title = t ".title", :user => @user.display_name
22         @page = (params[:page] || 1).to_i
23         @page_size = 10
24         @notes = @user.notes
25         @notes = @notes.visible unless current_user&.moderator?
26         @notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author)
27
28         render :layout => "site"
29       else
30         @title = t "users.no_such_user.title"
31         @not_found_user = params[:display_name]
32
33         render :template => "users/no_such_user", :status => :not_found, :layout => "site"
34       end
35     end
36   end
37
38   def show
39     @type = "note"
40
41     if current_user&.moderator?
42       @note = Note.find(params[:id])
43       @note_comments = @note.comments.unscope(:where => :visible)
44     else
45       @note = Note.visible.find(params[:id])
46       @note_comments = @note.comments
47     end
48   rescue ActiveRecord::RecordNotFound
49     render :template => "browse/not_found", :status => :not_found
50   end
51
52   def new; end
53 end