summaryrefslogtreecommitdiff
path: root/app/models/users/in_product_marketing_email.rb
blob: f2f1d18339e886923a24177f5abe2370d407c8ee (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
# frozen_string_literal: true

module Users
  class InProductMarketingEmail < ApplicationRecord
    include BulkInsertSafe

    belongs_to :user

    validates :user, presence: true
    validates :track, presence: true
    validates :series, presence: true
    validates :user_id, uniqueness: {
      scope: [:track, :series],
      message: 'has already been sent'
    }

    enum track: {
      create: 0,
      verify: 1,
      trial: 2,
      team: 3,
      experience: 4,
      team_short: 5,
      trial_short: 6,
      admin_verify: 7,
      invite_team: 8
    }, _suffix: true

    # Tracks we don't send emails for (e.g. unsuccessful experiment). These
    # are kept since we already have DB records that use the enum value.
    INACTIVE_TRACK_NAMES = %w(invite_team).freeze
    ACTIVE_TRACKS = tracks.except(*INACTIVE_TRACK_NAMES)

    scope :without_track_and_series, -> (track, series) do
      users = User.arel_table
      product_emails = arel_table

      join_condition = users[:id].eq(product_emails[:user_id])
        .and(product_emails[:track]).eq(ACTIVE_TRACKS[track])
        .and(product_emails[:series]).eq(series)

      arel_join = users.join(product_emails, Arel::Nodes::OuterJoin).on(join_condition)

      joins(arel_join.join_sources)
        .where(in_product_marketing_emails: { id: nil })
        .select(Arel.sql("DISTINCT ON(#{users.table_name}.id) #{users.table_name}.*"))
    end

    scope :for_user_with_track_and_series, -> (user, track, series) do
      where(user: user, track: track, series: series)
    end

    def self.save_cta_click(user, track, series)
      email = for_user_with_track_and_series(user, track, series).take

      email.update(cta_clicked_at: Time.zone.now) if email && email.cta_clicked_at.blank?
    end
  end
end