Sha256: d9537af6f4b3a7c9354d545f69758b3d81329eeb4a211bbb4b53e35cb64f94c2

Contents?: true

Size: 1.55 KB

Versions: 3

Compression:

Stored size: 1.55 KB

Contents

class Wco::Lead
  include Mongoid::Document
  include Mongoid::Timestamps
  include Mongoid::Paranoia
  store_in collection: 'wco_leads'

  field :email
  validates :email, presence: true, uniqueness: true
  index({ email: -1 }, { unique: true })

  field :name
  field :phone
  field :address

  belongs_to :leadset, class_name: 'Wco::Leadset'
  has_one :photo,      class_name: 'Wco::Photo'

  has_and_belongs_to_many :conversations,           class_name: '::WcoEmail::Conversation'
  def convs; conversations; end
  has_many                :email_contexts,          class_name: '::WcoEmail::Context'
  def ctxs; email_contexts; end
  has_many                :email_actions,           class_name: '::WcoEmail::EmailAction'
  # has_and_belongs_to_many :scheduled_email_actions, class_name: '::WcoEmail::ScheduledEmailAction'
  def schs; email_actions; end
  has_and_belongs_to_many :email_campaigns,         class_name: '::WcoEmail::Campaign'
  has_and_belongs_to_many :tags,                    class_name: '::Wco::Tag'

  # has_many :galleries, class_name: 'Wco::Gallery'
  # has_many :videos, class_name: 'Wco::Video'

  def self.list
    [[nil,nil]] + all.map { |p| [ p.email, p.id ] }
  end

  OP_DELETE = 'delete'
  OP_ADD_TO_CAMPAIGN = 'add_to_campaign'
  OPS = [ OP_DELETE, OP_ADD_TO_CAMPAIGN ]

  has_many :unsubscribes, class_name: '::WcoEmail::Unsubscribe'
  field :unsubscribe_token
  def unsubscribe_token
    if !self[:unsubscribe_token]
      update_attributes({ unsubscribe_token: (0...8).map { (65 + rand(26)).chr }.join })
    end
    self[:unsubscribe_token]
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wco_models-3.1.0.49 app/models/wco/lead.rb
wco_models-3.1.0.48 app/models/wco/lead.rb
wco_models-3.1.0.47 app/models/wco/lead.rb