mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 17:45:03 +08:00
20 lines
385 B
Ruby
20 lines
385 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class SummarizationValidator
|
||
|
def initialize(opts = {})
|
||
|
@opts = opts
|
||
|
end
|
||
|
|
||
|
def valid_value?(val)
|
||
|
strategy = Summarization::Base.find_strategy(val)
|
||
|
|
||
|
return true unless strategy
|
||
|
|
||
|
strategy.correctly_configured?.tap { |is_valid| @strategy = strategy unless is_valid }
|
||
|
end
|
||
|
|
||
|
def error_message
|
||
|
@strategy.configuration_hint
|
||
|
end
|
||
|
end
|