2019-11-30 13:39:55 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: channel_web_widgets
|
|
|
|
#
|
2020-06-07 15:01:48 +00:00
|
|
|
# id :integer not null, primary key
|
2020-08-05 12:16:17 +00:00
|
|
|
# feature_flags :integer default(3), not null
|
2020-10-18 18:02:22 +00:00
|
|
|
# reply_time :integer default(0)
|
2020-06-07 15:01:48 +00:00
|
|
|
# website_token :string
|
|
|
|
# website_url :string
|
|
|
|
# welcome_tagline :string
|
|
|
|
# welcome_title :string
|
|
|
|
# widget_color :string default("#1f93ff")
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# account_id :integer
|
2019-11-30 13:39:55 +00:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_channel_web_widgets_on_website_token (website_token) UNIQUE
|
|
|
|
#
|
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
class Channel::WebWidget < ApplicationRecord
|
2020-08-05 12:16:17 +00:00
|
|
|
include FlagShihTzu
|
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
self.table_name = 'channel_web_widgets'
|
2019-10-20 10:49:12 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
validates :website_url, presence: true
|
|
|
|
validates :widget_color, presence: true
|
2019-10-29 07:20:54 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
belongs_to :account
|
|
|
|
has_one :inbox, as: :channel, dependent: :destroy
|
|
|
|
has_secure_token :website_token
|
2020-08-05 12:16:17 +00:00
|
|
|
has_flags 1 => :attachments,
|
|
|
|
2 => :emoji_picker,
|
|
|
|
:column => 'feature_flags'
|
2020-10-18 18:02:22 +00:00
|
|
|
enum reply_time: { in_a_few_minutes: 0, in_a_few_hours: 1, in_a_day: 2 }
|
2019-10-29 07:20:54 +00:00
|
|
|
|
2020-09-04 13:43:47 +00:00
|
|
|
def name
|
|
|
|
'Website'
|
|
|
|
end
|
|
|
|
|
2020-07-25 17:24:45 +00:00
|
|
|
def has_24_hour_messaging_window?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2020-03-16 07:02:34 +00:00
|
|
|
def web_widget_script
|
|
|
|
"<script>
|
|
|
|
(function(d,t) {
|
|
|
|
var BASE_URL = \"#{ENV.fetch('FRONTEND_URL', '')}\";
|
|
|
|
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
|
|
g.src= BASE_URL + \"/packs/js/sdk.js\";
|
|
|
|
s.parentNode.insertBefore(g,s);
|
|
|
|
g.onload=function(){
|
|
|
|
window.chatwootSDK.run({
|
|
|
|
websiteToken: '#{website_token}',
|
|
|
|
baseUrl: BASE_URL
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})(document,\"script\");
|
|
|
|
</script>"
|
|
|
|
end
|
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def create_contact_inbox
|
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
contact = inbox.account.contacts.create!(name: ::Haikunator.haikunate(1000))
|
2020-04-10 11:12:37 +00:00
|
|
|
contact_inbox = ::ContactInbox.create!(
|
2020-01-09 07:36:40 +00:00
|
|
|
contact_id: contact.id,
|
|
|
|
inbox_id: inbox.id,
|
|
|
|
source_id: SecureRandom.uuid
|
|
|
|
)
|
2020-04-10 11:12:37 +00:00
|
|
|
contact_inbox
|
2020-01-09 07:36:40 +00:00
|
|
|
rescue StandardError => e
|
2020-05-14 17:21:07 +00:00
|
|
|
Rails.logger.info e
|
2019-10-29 07:20:54 +00:00
|
|
|
end
|
2019-10-20 10:49:12 +00:00
|
|
|
end
|
|
|
|
end
|