summaryrefslogtreecommitdiff
path: root/app/services/akismet_service.rb
blob: 63be3c371ecea9adf363fc12b1d26f34efe2f61d (plain)
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
# frozen_string_literal: true

class AkismetService
  attr_accessor :owner, :text, :options

  def initialize(owner, text, options = {})
    @owner = owner
    @text = text
    @options = options
  end

  def spam?
    return false unless akismet_enabled?

    params = {
      type: 'comment',
      text: text,
      created_at: DateTime.now,
      author: owner.name,
      author_email: owner.email,
      referrer: options[:referrer]
    }

    begin
      is_spam, is_blatant = akismet_client.check(options[:ip_address], options[:user_agent], params)
      is_spam || is_blatant
    rescue => e
      Rails.logger.error("Unable to connect to Akismet: #{e}, skipping check") # rubocop:disable Gitlab/RailsLogger
      false
    end
  end

  def submit_ham
    submit(:ham)
  end

  def submit_spam
    submit(:spam)
  end

  private

  def akismet_client
    @akismet_client ||= ::Akismet::Client.new(Gitlab::CurrentSettings.akismet_api_key,
                                              Gitlab.config.gitlab.url)
  end

  def akismet_enabled?
    Gitlab::CurrentSettings.akismet_enabled
  end

  def submit(type)
    return false unless akismet_enabled?

    params = {
      type: 'comment',
      text: text,
      author: owner.name,
      author_email: owner.email
    }

    begin
      akismet_client.public_send(type, options[:ip_address], options[:user_agent], params) # rubocop:disable GitlabSecurity/PublicSend
      true
    rescue => e
      Rails.logger.error("Unable to connect to Akismet: #{e}, skipping!") # rubocop:disable Gitlab/RailsLogger
      false
    end
  end
end