2019-10-20 10:49:12 +00:00
|
|
|
module Channel
|
|
|
|
class FacebookPage < ApplicationRecord
|
|
|
|
self.table_name = 'channel_facebook_pages'
|
|
|
|
|
|
|
|
validates :account_id, presence: true
|
|
|
|
validates_uniqueness_of :page_id, scope: :account_id
|
|
|
|
mount_uploader :avatar, AvatarUploader
|
|
|
|
belongs_to :account
|
|
|
|
|
|
|
|
has_one :inbox, as: :channel, dependent: :destroy
|
|
|
|
|
|
|
|
before_destroy :unsubscribe
|
|
|
|
|
|
|
|
def name
|
2019-10-20 19:10:18 +00:00
|
|
|
'Facebook'
|
2019-10-20 10:49:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def unsubscribe
|
|
|
|
Facebook::Messenger::Subscriptions.unsubscribe(access_token: page_access_token)
|
|
|
|
rescue => e
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|