2014-04-11 07:47:33 +00:00
|
|
|
class AdBannersController < ApplicationController
|
2021-08-01 08:18:25 +00:00
|
|
|
def self.custom_widget_data
|
|
|
|
ac = ActionController::Base.new
|
|
|
|
ac.render_to_string("ad_banners/custom_widget_data",:locals=>{:@custom_data_field=>@custom_data_field,:@field_name=>@field_name})
|
|
|
|
end
|
2014-04-11 07:47:33 +00:00
|
|
|
def widget
|
2014-05-23 05:51:04 +00:00
|
|
|
adbanner = Banner.find(OrbitHelper.widget_custom_value)
|
2021-04-10 09:12:40 +00:00
|
|
|
widget = OrbitHelper.get_current_widget
|
2021-08-01 08:18:25 +00:00
|
|
|
if widget.widget_type.include?("_video")
|
2021-04-10 09:12:40 +00:00
|
|
|
return video_widget(adbanner)
|
|
|
|
else
|
|
|
|
return image_widget(adbanner)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def image_widget(adbanner)
|
2016-05-18 08:29:39 +00:00
|
|
|
images = []
|
|
|
|
adbanner.ad_images.can_display.asc(:sort_number,:created_at).each.with_index do |b,i|
|
|
|
|
if b.language_enabled.include?(I18n.locale.to_s)
|
|
|
|
image_link = OrbitHelper.is_mobile_view ? b.file.mobile.url : b.file.url
|
|
|
|
klass = i == 0 ? "active" : ""
|
|
|
|
caption = i == 0 ? '<div class="cycle-overlay"></div><div class="cycle-pager"></div>' : ""
|
|
|
|
alt_title = (b.title.nil? || b.title == "" ? "ad-banner image" : b.title)
|
2015-05-11 10:19:57 +00:00
|
|
|
|
2016-05-18 08:29:39 +00:00
|
|
|
if b.link_open == "new_window"
|
|
|
|
target = "_blank"
|
|
|
|
else
|
|
|
|
target = ""
|
|
|
|
end
|
2020-04-16 11:06:14 +00:00
|
|
|
if !b.out_link.blank?
|
2020-08-11 10:38:51 +00:00
|
|
|
image_link += "\" style=\"cursor:pointer;\" onload=\"var el=this;(function(){if(el.parentElement==undefined||el.parentElement.tagName!='A'){el.outerHTML=('<a href=#{b.out_link} target=#{target}>'+el.outerHTML+'</a>');}})()\""
|
2020-04-16 11:06:14 +00:00
|
|
|
end
|
2016-05-18 08:29:39 +00:00
|
|
|
images << {
|
2021-06-18 02:03:21 +00:00
|
|
|
"slide_number" => (i+1),
|
2016-05-18 08:29:39 +00:00
|
|
|
"image_link" => image_link,
|
|
|
|
"image_alt" => "ad banner image",
|
|
|
|
"title" => b.title,
|
|
|
|
"alt_title" => alt_title,
|
|
|
|
"class" => klass,
|
|
|
|
"height" => adbanner.height,
|
|
|
|
"width" => adbanner.width,
|
|
|
|
"caption" => caption,
|
|
|
|
"context" => (b.context.tr('"',"'") rescue ""),
|
|
|
|
"link" => b.out_link || "#",
|
|
|
|
"target" => target
|
|
|
|
}
|
|
|
|
end
|
2014-05-23 05:51:04 +00:00
|
|
|
end
|
2015-11-25 13:28:27 +00:00
|
|
|
base_image = adbanner.base_image.nil? ? 1 : adbanner.base_image
|
2014-05-23 05:51:04 +00:00
|
|
|
{
|
|
|
|
"extras" => {
|
2014-04-15 07:51:02 +00:00
|
|
|
"ad_fx" => adbanner.ad_fx,
|
|
|
|
"speed" => adbanner.speed,
|
|
|
|
"title" => adbanner.title,
|
2015-10-12 07:33:45 +00:00
|
|
|
"banner-height" => adbanner.height,
|
|
|
|
"banner-width" => adbanner.width,
|
2015-11-25 13:28:27 +00:00
|
|
|
"base_image" => (base_image - 1),
|
2015-10-06 07:30:59 +00:00
|
|
|
"timeout" => (adbanner.timeout * 1000),
|
2014-04-11 07:47:33 +00:00
|
|
|
"more" => "More"
|
2014-05-23 05:51:04 +00:00
|
|
|
},
|
|
|
|
"images" => images
|
2014-04-11 07:47:33 +00:00
|
|
|
}
|
|
|
|
end
|
2021-04-10 09:12:40 +00:00
|
|
|
|
|
|
|
def video_widget(adbanner)
|
2021-08-01 08:18:25 +00:00
|
|
|
subpart = OrbitHelper.get_current_widget
|
|
|
|
custom_data_field = subpart.custom_data_field || {}
|
|
|
|
@autoplay_video = custom_data_field[:autoplay_video] == "1" rescue false
|
|
|
|
@hide_video_tools = custom_data_field[:hide_video_tools] == "1" rescue false
|
2021-04-10 09:12:40 +00:00
|
|
|
images = []
|
2021-08-01 08:18:25 +00:00
|
|
|
has_jplayer = false
|
2021-04-10 09:12:40 +00:00
|
|
|
adbanner.ad_images.can_display.asc(:sort_number).each_with_index do |ad_b,i|
|
|
|
|
if ad_b.language_enabled.include?(I18n.locale.to_s)
|
|
|
|
image_link = OrbitHelper.is_mobile_view ? ad_b.file.mobile.url : ad_b.file.url
|
|
|
|
alt_text = (ad_b.title.nil? || ad_b.title == "" ? "ad-banner image" : ad_b.title)
|
|
|
|
caption = i == 0 ? '<div class="cycle-overlay"></div><div class="cycle-pager"></div>' : ""
|
|
|
|
klass = i == 0 ? "active" : ""
|
2021-04-10 15:16:17 +00:00
|
|
|
if ad_b.link_open == "new_window"
|
|
|
|
target = "_blank"
|
|
|
|
else
|
|
|
|
target = ""
|
|
|
|
end
|
|
|
|
context = ad_b.context.tr('"',"'") rescue ""
|
|
|
|
alt_title = (ad_b.title.blank? ? "ad-banner image" : ad_b.title)
|
2021-04-10 09:12:40 +00:00
|
|
|
if ad_b.exchange_item == "1"
|
2021-08-25 08:54:12 +00:00
|
|
|
image_html = "<div class=\"w-ad-banner__slide w-ba-banner__slide #{klass}\"
|
2021-04-10 15:16:17 +00:00
|
|
|
data-link=\"#{ad_b.out_link || "#"}'\"
|
|
|
|
data-cycle-title=\"#{ad_b.title}\"
|
|
|
|
data-cycle-desc=\"#{context}\"
|
|
|
|
data-overlay-template=\"<h3>#{ad_b.title}</h3><p>#{context}</p>\"
|
|
|
|
data-target=\"#{target}\"
|
|
|
|
>
|
|
|
|
<a href=\"#{ad_b.out_link}\" target=\"#{target}\" title=\"#{alt_title}\">
|
|
|
|
<img class='w-ad-banner__image' src='#{image_link}'>
|
|
|
|
</a>
|
|
|
|
<div class='w-ad-banner__caption_text'>#{ad_b.title}</div>
|
|
|
|
</div>"
|
2021-08-01 08:18:25 +00:00
|
|
|
elsif ad_b.exchange_item == "3"
|
|
|
|
klass = (i == 0 ? "active" : "")
|
|
|
|
video_url = ad_b.video_file.url
|
|
|
|
title = (ad_b.title.blank? ? File.basename(video_file) : ad_b.title)
|
2021-09-02 02:40:58 +00:00
|
|
|
image_html = "<div class=\"w-ad-banner__slide w-ba-banner__slide #{klass} jplayer_slide\"
|
2021-08-01 08:18:25 +00:00
|
|
|
data-link=\"#{ad_b.out_link || "#"}'\"
|
|
|
|
data-cycle-title=\"#{ad_b.title}\"
|
|
|
|
data-cycle-desc=\"#{context}\"
|
|
|
|
data-overlay-template=\"<h3>#{ad_b.title}</h3><p>#{context}</p>\"
|
|
|
|
data-target=\"#{target}\"
|
|
|
|
style=\"height: 100%;\"
|
|
|
|
>
|
|
|
|
#{ render_to_string(partial: "admin/ad_images/jplayer",locals:{i: i,file_name: title,file_url: video_url,:@autoplay_video=>(@autoplay_video && i == 0),:@apply_autoplay_script=>@autoplay_video,:@hide_video_tools=>@hide_video_tools}, layout: false).to_str }
|
|
|
|
</div>"
|
|
|
|
has_jplayer = true
|
|
|
|
elsif ad_b.exchange_item == "2"
|
2021-04-10 09:12:40 +00:00
|
|
|
youtube_url = format_url(ad_b.youtube,i)
|
2021-09-02 02:40:58 +00:00
|
|
|
image_html = "<div class=\"w-ad-banner__slide w-ba-banner__slide #{klass} youtube youtube_slide\"
|
2021-04-10 15:16:17 +00:00
|
|
|
data-yt-binded=\"0\"
|
|
|
|
data-youtube-id=\"ytplayer#{i}\"
|
|
|
|
data-link=\"#{ad_b.out_link || "#"}'\"
|
|
|
|
data-cycle-title=\"#{ad_b.title}\"
|
|
|
|
data-cycle-desc=\"#{context}\"
|
|
|
|
data-overlay-template=\"<h3>#{ad_b.title}</h3><p>#{context}</p>\"
|
|
|
|
data-target=\"#{target}\"
|
|
|
|
>
|
|
|
|
<div style=\"padding-bottom: 56.25%;position: relative;height: 0;\">
|
|
|
|
<iframe height=\"100%\" width=\"100%\"
|
2021-04-10 16:34:57 +00:00
|
|
|
src=\"#{youtube_url}?enablejsapi=1\" title=\"youtube\"
|
|
|
|
style=\"position: absolute;\"
|
|
|
|
data-yt-api-binded=\"0\" allowfullscreen>
|
2021-04-10 15:16:17 +00:00
|
|
|
</iframe>
|
|
|
|
</div>
|
|
|
|
<div class='w-ad-banner__caption_text'>#{ad_b.title}</div>
|
|
|
|
</div>"
|
2021-04-10 09:12:40 +00:00
|
|
|
end
|
|
|
|
images << {
|
2021-06-18 02:03:21 +00:00
|
|
|
"slide_number" => (i+1),
|
2021-04-10 09:12:40 +00:00
|
|
|
"html" => image_html
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2021-08-01 08:18:25 +00:00
|
|
|
extra_before_html = ""
|
|
|
|
extra_after_html = ""
|
|
|
|
if has_jplayer
|
2021-09-15 14:42:05 +00:00
|
|
|
extra_before_html = ActionController::Base.helpers.stylesheet_link_tag("ad_banner/jplayer.blue.monday.min")
|
|
|
|
extra_after_html = ActionController::Base.helpers.javascript_include_tag("ad_banner/jquery.jplayer")
|
2021-08-01 08:18:25 +00:00
|
|
|
end
|
2021-04-10 09:12:40 +00:00
|
|
|
{
|
|
|
|
"extras" => {
|
|
|
|
"ad_fx" => adbanner.ad_fx,
|
|
|
|
"speed" => adbanner.speed,
|
|
|
|
"title" => adbanner.title,
|
2021-04-10 15:16:17 +00:00
|
|
|
"timeout" => (adbanner.timeout * 1000),
|
|
|
|
"more" => "More",
|
2021-08-01 08:18:25 +00:00
|
|
|
"desc" => adbanner.title,
|
|
|
|
"extra_brefore_html" => extra_before_html,
|
|
|
|
"extra_after_html" => extra_after_html,
|
|
|
|
"extra_ready_script" => (@autoplay_video ? "if(i == 0) event.target.mute().playVideo();" : ""),
|
|
|
|
"extra_state_chnage_script" => (@autoplay_video ? "if(event.data == YT.PlayerState.ENDED){ var current_cycle; cyclediv.cycle(\"pause\") && cyclediv.cycle(\"next\") && (current_cycle=cyclediv.find(\".cycle-slide-active\"), (current_cycle.hasClass(\"jplayer_slide\") ? current_cycle.find('.jp-jplayer').jPlayer(\"mute\", true).jPlayer(\"play\",0) : current_cycle.find('iframe').data(\"yt_player\").mute().playVideo()));}" : ""),
|
|
|
|
"extra_document_ready_script" => (@autoplay_video ? "opts.API.pause() && opts.API.jump(0);" : "")
|
2021-04-10 09:12:40 +00:00
|
|
|
},
|
|
|
|
"images" => images
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_url(url,index)
|
|
|
|
uri = URI.parse(url)
|
|
|
|
ps = uri.query.to_s.split("&")
|
|
|
|
url_params = {}
|
|
|
|
ps.each do |p|
|
|
|
|
x = p.split("=")
|
|
|
|
url_params[x.first] = x.last
|
|
|
|
end
|
|
|
|
# url = "http://www.youtube.com/v/#{url_params["v"]}/?version=3&playerapiid=ytplayer#{index}"
|
|
|
|
url = "https://www.youtube.com/embed/#{url_params["v"]}"
|
|
|
|
end
|
2014-04-11 07:47:33 +00:00
|
|
|
end
|