mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-16 19:08:50 +08:00
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
22 lines
502 B
Ruby
Vendored
22 lines
502 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
require_dependency 'current_user'
|
|
|
|
class StaffConstraint
|
|
|
|
def matches?(request)
|
|
provider = Discourse.current_user_provider.new(request.env)
|
|
provider.current_user &&
|
|
provider.current_user.staff? &&
|
|
custom_staff_check(request)
|
|
rescue Discourse::InvalidAccess, Discourse::ReadOnly
|
|
false
|
|
end
|
|
|
|
# Extensibility point: plugins can overwrite this to add additional checks
|
|
# if they require.
|
|
def custom_staff_check(request)
|
|
true
|
|
end
|
|
|
|
end
|