47 lines
1.2 KiB
Ruby
47 lines
1.2 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: channel_facebook_pages
|
|
#
|
|
# id :integer not null, primary key
|
|
# name :string not null
|
|
# page_access_token :string not null
|
|
# user_access_token :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer not null
|
|
# page_id :string not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_channel_facebook_pages_on_page_id (page_id)
|
|
# index_channel_facebook_pages_on_page_id_and_account_id (page_id,account_id) UNIQUE
|
|
#
|
|
|
|
module Channel
|
|
class FacebookPage < ApplicationRecord
|
|
include Avatarable
|
|
|
|
self.table_name = 'channel_facebook_pages'
|
|
|
|
validates :account_id, presence: true
|
|
validates :page_id, uniqueness: { scope: :account_id }
|
|
has_one_attached :avatar
|
|
belongs_to :account
|
|
|
|
has_one :inbox, as: :channel, dependent: :destroy
|
|
|
|
before_destroy :unsubscribe
|
|
|
|
def name
|
|
'Facebook'
|
|
end
|
|
|
|
private
|
|
|
|
def unsubscribe
|
|
Facebook::Messenger::Subscriptions.unsubscribe(access_token: page_access_token)
|
|
rescue => e
|
|
true
|
|
end
|
|
end
|
|
end
|