1 class NotesController < ApplicationController
6 before_action :check_api_readable
7 before_action :authorize_web
8 before_action :set_locale
9 before_action :require_oauth
13 before_action :lookup_user, :only => [:index]
14 around_action :web_timeout
19 # Display a list of notes by a specified user
21 param! :page, Integer, :min => 1
23 @params = params.permit(:display_name, :status)
24 @title = t ".title", :user => @user.display_name
25 @page = (params[:page] || 1).to_i
27 @notes = @notes.visible unless current_user&.moderator?
28 @notes = @notes.where(:status => params[:status]) unless params[:status] == "all" || params[:status].blank?
29 @notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * PAGE_SIZE).limit(PAGE_SIZE + 1).preload(:comments => :author)
31 if @notes.size > PAGE_SIZE
36 render :layout => "site"
42 if current_user&.moderator?
43 @note = Note.find(params[:id])
44 @note_comments = @note.comments.unscope(:where => :visible)
46 @note = Note.visible.find(params[:id])
47 @note_comments = @note.comments
50 @note_includes_anonymous = @note.author.nil? || @note_comments.find { |comment| comment.author.nil? }
52 @note_comments = @note_comments.drop(1) if @note_comments.first&.event == "opened"
53 rescue ActiveRecord::RecordNotFound
54 render :template => "browse/not_found", :status => :not_found
58 @anonymous_notes_count = request.cookies["_osm_anonymous_notes_count"].to_i
59 render :action => :new_readonly if api_status != "online"