1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
# frozen_string_literal: true
require 'captcha_verifier'
require 'booru/config'
require 'booru/version'
class ApplicationController < ActionController::Base
include UserFilter
include UserAttribution
include JsDatastore
include CaptchaVerifier
before_action :start_timer
before_action :set_paper_trail_whodunnit
protect_from_forgery with: :exception, prepend: true
around_action :set_locale
rescue_from Can4::AccessDenied do |_exception|
user = current_user ? current_user.name : 'Dave'
redirect_to root_url, flash: { error: t('booru.errors.access_denied', user: user) }
end
rescue_from ActiveRecord::RecordNotFound do |_exception|
redirect_to root_url, flash: { error: t('booru.errors.record_not_found') }
end
rescue_from ActionController::UnknownFormat do |_exception|
if Rails.env.development?
raise
else
redirect_to errors_not_found_path
end
end
rescue_from ActionController::InvalidAuthenticityToken do |_exception|
respond_to do |format|
format.json { render json: { error: 'Invalid CSRF token' }, status: :forbidden }
format.any { redirect_back flash: { error: 'Invalid CSRF token.' } }
end
end
check_authorization unless: :devise_controller?
before_action :configure_permitted_parameters_for_devise, if: :devise_controller?
before_action :login_with_token_if_provided
before_action :current_ban
before_action :load_filter
before_action :load_unread_pms
skip_before_action :verify_authenticity_token, if: proc { |c| c.login_with_token_if_provided; c.using_apikey? }
before_action :anger_old_api_clients
def anger_old_api_clients
if request.format.json? && (rand(2) == 0)
render json: { error: 'This API will stop working soon! Please use the new API: https://twibooru.org/pages/api' }, status: :bad_request
end
end
def login_with_token_if_provided
return if @using_apikey
params[:auth_token] = nil
if params[:key].present? && using_api?
user = params[:key] && User.find_by(authentication_token: params[:key])
if user
@using_apikey = true
sign_in user, store: false
else
render json: { error: 'Invalid API key.' }, status: :forbidden
end
end
end
def using_apikey?
@using_apikey || false
end
def using_api?
request.format.json? || request.format.rss?
end
def start_timer
@start_time = Time.zone.now
end
private
def inc_user_stat(stat_name)
current_user.inc_stat(stat_name) if current_user
end
def load_unread_pms
@unread = Conversation.where("((to_id = ? AND to_read = 'f') OR (from_id = ? AND from_read = 'f')) AND (NOT ((to_id = ? AND to_hidden = 't') OR (from_id = ? AND from_hidden = 't')))", current_user.id, current_user.id, current_user.id, current_user.id) if current_user
true
end
def load_filter
@current_filter ||= Filter.for(current_user, session[:filter_id] || params[:filter_id])
@show_hidden = params[:hidden] == '1'
end
def setup_pagination_and_tags
@per_page = (current_user ? current_user.images_per_page : 15)
per_page = (params[:per_page] || params[:perpage])
if per_page
per_page = per_page.to_i
@per_page = per_page if per_page.between? 1, Booru::CONFIG.settings[:max_images_per_page]
end
@page_num = params[:page].to_i
@hidden_tags = @current_filter.hidden_tag_ids
@hidden_filter = @current_filter.hidden_complex(is_mod: can?(:manage, Post), user: current_user)
@spoilered_tags = @current_filter.spoilered_tag_ids
if current_user && !@show_hidden
if @current_filter.hidden_complex_str.present?
query_str = Filter.normalize_user_query_program(@current_filter.hidden_complex_str)
@hidden_filter = Filter.parse_user_query_program("(#{query_str}) || my:hidden", Post, is_mod: can?(:manage, Post), user: current_user)
else
@hidden_filter = Filter.parse_user_query_program('my:hidden', Post, is_mod: can?(:manage, Post), user: current_user)
end
end
end
def current_ability
@current_ability ||= ::Ability.new(current_user, request.remote_ip)
end
def set_image_filter
set_content_hiding_filter Post, req_permission: :undelete
end
def set_content_hiding_filter(model, req_permission: :manage)
# Sets @include_deleted instance variable indicating included deleted
# content (true), omitted deleted content (false), or only deleted
# content (:only). Note it is left nil if the user lacks the specified
# permission. This is predominantly used to interface with FancySearchable.
if can? req_permission, model
@include_deleted = if params[:del] == 'only'
:only
else
params[:del].present?
end
end
end
# Default options Hash for image searching.
def default_image_filter_options
{
hidden: @hidden_filter,
include_deleted: @include_deleted,
hidden_tags: @hidden_tags,
per_page: @per_page,
page: @page_num,
title: @title,
access_options: { is_mod: can?(:manage, Post), user: current_user }
}
end
def frontpage_images
# Lag the index page by three minutes to allow people time to tag after uploading - also only show optimized images.
PostLoader.new(default_image_filter_options).search('created_at.lte: 3 minutes ago, processed:true')
end
def scope_key
@scope_key ||= params.permit(:q, :sf, :sd).to_h
end
helper_method :scope_key
def captcha_verified?(check_account = true)
(check_account && current_user) || verify_captcha
end
protected
def configure_permitted_parameters_for_devise
devise_parameter_sanitizer.permit(:sign_up, keys: [:name])
devise_parameter_sanitizer.permit(:sign_in, keys: [:otp_attempt])
if current_ban.blank?
devise_parameter_sanitizer.permit(:account_update, keys: User::ALLOWED_PARAMETERS)
else
devise_parameter_sanitizer.permit(:account_update, keys: User::ALLOWED_PARAMETERS_BANNED)
end
end
def get_recent_comments(limit = nil, user_id = nil, viewing_user = nil)
Comment.fancy_search(
per_page: (limit || @per_page),
page: @page_num,
include_deleted: can?(:manage, Comment)
) do |s|
s.add_filter(term: { user_id: user_id.to_s }) if user_id
s.add_filter(bool: { must_not: { terms: { post_tag_ids: @hidden_tags } } })
s.add_filter(term: { anonymous: false }) unless !user_id || (viewing_user && viewing_user.id == user_id) || can?(:manage, Comment)
s.add_filter(range: { posted_at: { gt: 'now-1w' } }) unless user_id
end
end
def get_top_scoring(limit, all_time: false, randomize: false)
options = default_image_filter_options
options.delete(:per_page)
options[:last_first_seen] = (@time_period unless all_time)
options[:size] = limit
# This is the source of disappearing trending images - it takes a random offset into the results, but
# if there are less than 26+4 results it returns nothing.
options[:from] = rand(26) if randomize
Post.fancy_search(options) do |search|
search.add_sort score: :desc
search.add_sort first_seen_at: :desc
end
end
def redirect_back(**options)
fallback = options[:fallback_location] || root_path
super(fallback_location: fallback, **options)
end
def maybe_redirect_back(fallback)
if request.headers['Referer'].present? && Addressable::URI.parse(request.headers['Referer']).path == '/'
redirect_to fallback
else
redirect_back(fallback_location: fallback)
end
end
def is_probably_bot?
request.user_agent && request.user_agent =~ /bot/i
end
private
def after_sign_in_path_for(_resource)
root_path
end
def after_sign_out_path_for(_resource)
root_path
end
helper_method :force_anonymous? # Make it available in all views as well
def force_anonymous?
Booru::CONFIG.settings[:force_anonymous]
end
helper_method :show_comments? # Make it available in all views as well.
def show_comments?
global_disable_comments = Booru::CONFIG.settings[:disable_comments]
user_show_comments = current_user.present? && !current_user.hide_comments
cookie_show_comments = cookies['show_comments'] == 'true'
# if disabled globally, stop there - otherwise, show comments if they're enabled either at the user or browser level.
!global_disable_comments && (user_show_comments || cookie_show_comments)
end
def set_locale(&action)
locale = cookies['locale']
locale = I18n.available_locales.map(&:to_s).include?(locale) ? locale : I18n.default_locale
I18n.with_locale(locale, &action)
end
end
|