about summary refs log tree commit diff
path: root/app/lib/language_detector.rb
blob: ca5cb2591c8e595aa45c95e43f2dd3d5d3ef66c9 (plain) (blame)
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
# frozen_string_literal: true

class LanguageDetector
  attr_reader :text, :account

  def initialize(text, account = nil)
    @text = text
    @account = account
  end

  def to_iso_s
    detected_language_code || default_locale.to_sym
  end

  private

  def detected_language_code
    detected_language[:code].to_sym if detected_language_reliable?
  end

  def detected_language
    @_detected_language ||= CLD.detect_language(text_without_urls)
  end

  def detected_language_reliable?
    detected_language[:reliable]
  end

  def text_without_urls
    text.dup.tap do |new_text|
      URI.extract(new_text).each do |url|
        new_text.gsub!(url, '')
      end
    end
  end

  def default_locale
    account&.user_locale || I18n.default_locale
  end
end