debian-mirror-gitlab/lib/banzai/filter/redactor_filter.rb
2018-05-09 12:01:36 +05:30

31 lines
620 B
Ruby

module Banzai
module Filter
# HTML filter that removes references to records that the current user does
# not have permission to view.
#
# Expected to be run in its own post-processing pipeline.
#
class RedactorFilter < HTML::Pipeline::Filter
def call
unless context[:skip_redaction]
context = RenderContext.new(project, current_user)
Redactor.new(context).redact([doc])
end
doc
end
private
def current_user
context[:current_user]
end
def project
context[:project]
end
end
end
end