2011-12-23 10:34:21 +00:00
|
|
|
module ParserFrontEnd
|
|
|
|
require 'radius'
|
|
|
|
include ParserCommon
|
|
|
|
|
2012-01-24 10:16:58 +00:00
|
|
|
def parser_context(page, attributes = {}, id = nil)
|
2011-12-23 10:34:21 +00:00
|
|
|
Radius::Context.new do |c|
|
2012-02-16 04:16:27 +00:00
|
|
|
c.define_tag 'ad_banner' do |tag|
|
2012-02-02 01:55:09 +00:00
|
|
|
res = ''
|
2012-02-16 04:16:27 +00:00
|
|
|
ad_banner = AdBanner.find(tag.attr["id"]) rescue nil
|
|
|
|
if ad_banner && ad_banner.display?
|
2012-02-10 02:50:03 +00:00
|
|
|
res << "<script type='text/javascript'>
|
2012-02-27 09:48:30 +00:00
|
|
|
$(document).ready(function(){ $('#slideshow-#{ad_banner.title.dehumanize}').cycle({delay: -1000, fx: '#{ad_banner.ad_fx.nil?? 'fade': ad_banner.ad_fx}', timeoutFn: getTimeout }); });
|
2012-02-10 02:50:03 +00:00
|
|
|
</script>"
|
2012-02-16 04:16:27 +00:00
|
|
|
res << "<div id='slideshow-#{ad_banner.title.dehumanize}'>"
|
2012-02-03 07:14:42 +00:00
|
|
|
ad_banner.ad_images.each do |ad_image|
|
|
|
|
res << "<img src='#{ad_image.file}' "
|
|
|
|
res << "alt='#{ad_image.picture_intro || ' '}' "
|
|
|
|
res << "time_to_next='#{ad_image.get_delay_time}' "
|
|
|
|
res << "link_open='#{ad_image.link_open}' "
|
|
|
|
res << "link_url='#{(ad_banner.direct_to_after_click?? ad_image.out_link : ad_banner.context) || ' '}' "
|
|
|
|
res << "/>"
|
|
|
|
end
|
|
|
|
res << "</div>"
|
|
|
|
end
|
|
|
|
res
|
2012-02-02 01:55:09 +00:00
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
c.define_tag 'content' do |tag|
|
|
|
|
ret = ''
|
|
|
|
if (tag.attributes["main"] == "true" && !page.module_app.nil?)
|
2012-02-06 08:58:19 +00:00
|
|
|
ret << "<div id='appfrontend' class='dymanic_load' path='/panel/#{page.module_app.key}/front_end/#{page.app_frontend_url}"
|
2012-01-24 10:16:58 +00:00
|
|
|
ret << "/#{id}" if id
|
2012-02-23 07:48:23 +00:00
|
|
|
ret << "?inner=true&page_id=#{page.id}"
|
2012-03-01 02:58:31 +00:00
|
|
|
ret << "&category_id=#{page.category}" if page[:category]
|
2012-02-23 07:48:23 +00:00
|
|
|
ret << "'></div>"
|
2011-12-23 10:34:21 +00:00
|
|
|
else
|
|
|
|
part = page.page_parts.detect{ |p| p.name.to_s == tag.attr['name'].to_s } rescue nil
|
2012-02-16 04:16:27 +00:00
|
|
|
case part.kind
|
|
|
|
when 'text'
|
|
|
|
ret << part.i18n_variable[I18n.locale] rescue ''
|
|
|
|
when 'module_widget'
|
2012-02-28 06:08:57 +00:00
|
|
|
if part[:category]
|
|
|
|
ret << "<div class='dymanic_load' path='/panel/#{part.module_app.key}/widget/#{part.widget_path}?inner=true&category_id=#{part[:category]}'></div>"
|
|
|
|
else
|
|
|
|
ret << "<div class='dymanic_load' path='/panel/#{part.module_app.key}/widget/#{part.widget_path}?inner=true'></div>"
|
|
|
|
end
|
2012-02-16 04:16:27 +00:00
|
|
|
when 'public_r_tag'
|
|
|
|
ret << "<r:#{part.public_r_tag} id='#{part.public_r_tag_object_id}'/>"
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
end
|
|
|
|
ret
|
|
|
|
end
|
2012-03-21 10:30:12 +00:00
|
|
|
c.define_tag 'image' do |tag|
|
|
|
|
# image = page.custom_images.detect{|image| image.name.eql?(tag.attr['name']) }
|
|
|
|
# image = page.design.custom_images.detect{|image| image.name.eql?(tag.attr['name']) } unless image
|
|
|
|
image = page.design.images.detect{|image| image.name.eql?(tag.attr['name']) } unless image
|
|
|
|
if image
|
|
|
|
res = "<img src=#{image.file.url} "
|
|
|
|
tag.attr.each do |l|
|
|
|
|
res << "#{l[0]}='#{l[1]}' "
|
|
|
|
end
|
|
|
|
res << '>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
c.define_tag 'language_bar' do
|
|
|
|
@site.in_use_locales.map{ |locale|
|
|
|
|
lang = I18nVariable.first(:conditions => {:key => locale})[locale]
|
|
|
|
if I18n.locale.to_s.eql?(locale)
|
|
|
|
lang
|
|
|
|
else
|
|
|
|
"<a href='?locale=#{locale}'>#{lang}</a>"
|
|
|
|
end
|
|
|
|
}.join(' | ')
|
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
c.define_tag 'link' do |tag|
|
|
|
|
item = Item.first(:conditions => { :full_name => tag.attr['name'] })
|
|
|
|
ret = ''
|
|
|
|
ret << "<a href='#{tag.attr['name']}'>"
|
|
|
|
ret << item.i18n_variable[I18n.locale]
|
|
|
|
ret << '</a>'
|
|
|
|
end
|
|
|
|
c.define_tag 'menu' do |tag|
|
|
|
|
home = get_homepage
|
|
|
|
menu = page.design.layout.menu
|
2012-01-24 03:38:53 +00:00
|
|
|
menu_level(home, 0, menu)
|
2011-12-23 10:34:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-24 10:16:58 +00:00
|
|
|
def parse_page(page, id = nil)
|
2011-12-23 10:34:21 +00:00
|
|
|
if page._type == 'Page'
|
2012-01-24 10:16:58 +00:00
|
|
|
context = parser_context(page, {}, id)
|
2011-12-23 10:34:21 +00:00
|
|
|
parser = Radius::Parser.new(context, :tag_prefix => 'r')
|
2012-03-21 17:51:16 +00:00
|
|
|
parser.parse(parser.parse(page.design.layout.body))
|
2011-12-23 10:34:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.included(base)
|
|
|
|
base.send :helper_method, :parse_page if base.respond_to? :helper_method
|
|
|
|
end
|
2012-03-21 17:51:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require 'nokogiri'
|
|
|
|
|
|
|
|
def parse_page_noko(page, id = nil)
|
2012-03-22 02:11:02 +00:00
|
|
|
body = Nokogiri::HTML(page.design.layout.body)
|
2012-03-21 17:51:16 +00:00
|
|
|
|
|
|
|
# page_contents
|
|
|
|
body.css('.page_content').each do |content|
|
|
|
|
ret = ''
|
|
|
|
if (content["main"] == "true" && !page.module_app.nil?)
|
|
|
|
ret << "<div id='appfrontend' class='dymanic_load' path='/panel/#{page.module_app.key}/front_end/#{page.app_frontend_url}"
|
|
|
|
ret << "/#{id}" if id
|
|
|
|
ret << "?inner=true&page_id=#{page.id}"
|
|
|
|
ret << "&category_id=#{page.category}" if page[:category]
|
|
|
|
ret << "'></div>"
|
|
|
|
else
|
|
|
|
part = page.page_parts.detect{ |p| p.name.to_s == content['name'].to_s } rescue nil
|
|
|
|
case part.kind
|
|
|
|
when 'text'
|
|
|
|
ret << part.i18n_variable[I18n.locale] rescue ''
|
|
|
|
when 'module_widget'
|
|
|
|
if part[:category]
|
|
|
|
ret << "<div class='dymanic_load' path='/panel/#{part.module_app.key}/widget/#{part.widget_path}?inner=true&category_id=#{part[:category]}'></div>"
|
|
|
|
else
|
|
|
|
ret << "<div class='dymanic_load' path='/panel/#{part.module_app.key}/widget/#{part.widget_path}?inner=true'></div>"
|
|
|
|
end
|
|
|
|
when 'public_r_tag'
|
|
|
|
ret << "<r:#{part.public_r_tag} id='#{part.public_r_tag_object_id}'/>"
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
scope = "<#{content.name}"
|
|
|
|
content.attributes.each_pair do |key, value|
|
|
|
|
scope << " #{key}='#{value}'"
|
|
|
|
end
|
|
|
|
scope << ">#{ret}</#{content.name}>"
|
|
|
|
fragment = Nokogiri::HTML::DocumentFragment.new(body, scope)
|
|
|
|
content.swap(fragment)
|
|
|
|
end
|
|
|
|
|
|
|
|
# page_menu
|
|
|
|
page_menu = body.css('.page_menu').first
|
|
|
|
home = get_homepage
|
|
|
|
menu = page.design.layout.menu
|
|
|
|
fragment = Nokogiri::HTML::DocumentFragment.new(body, menu_level(home, 0, menu))
|
|
|
|
page_menu.swap(fragment)
|
|
|
|
|
|
|
|
# page_image
|
|
|
|
body.css('.page_image').each do |page_image|
|
|
|
|
# image = page.custom_images.detect{|image| image.name.eql?(tag.attr['name']) }
|
|
|
|
# image = page.design.custom_images.detect{|image| image.name.eql?(tag.attr['name']) } unless image
|
|
|
|
image = page.design.images.detect{|image| image.name.eql?(page_image['name']) } unless image
|
|
|
|
if image
|
|
|
|
res = "<img src=#{image.file.url} "
|
|
|
|
page_image.attributes.each do |l|
|
|
|
|
res << "#{l[0]}='#{l[1]}' "
|
|
|
|
end
|
|
|
|
res << '>'
|
|
|
|
end
|
|
|
|
fragment = Nokogiri::HTML::DocumentFragment.new(body, res)
|
|
|
|
page_image.swap(fragment)
|
|
|
|
end
|
|
|
|
|
2012-03-22 02:11:02 +00:00
|
|
|
# ad_banner
|
|
|
|
body.css('ad_banner').each do |banner|
|
|
|
|
res = ''
|
|
|
|
ad_banner = AdBanner.find(banner["id"]) rescue nil
|
|
|
|
if ad_banner && ad_banner.display?
|
|
|
|
res << "<script type='text/javascript'>
|
|
|
|
$(document).ready(function(){ $('#slideshow-#{ad_banner.title.dehumanize}').cycle({delay: -1000, fx: '#{ad_banner.ad_fx.nil?? 'fade': ad_banner.ad_fx}', timeoutFn: getTimeout }); });
|
|
|
|
</script>"
|
|
|
|
res << "<div id='slideshow-#{ad_banner.title.dehumanize}'>"
|
|
|
|
ad_banner.ad_images.each do |ad_image|
|
|
|
|
res << "<img src='#{ad_image.file}' "
|
|
|
|
res << "alt='#{ad_image.picture_intro || ' '}' "
|
|
|
|
res << "time_to_next='#{ad_image.get_delay_time}' "
|
|
|
|
res << "link_open='#{ad_image.link_open}' "
|
|
|
|
res << "link_url='#{(ad_banner.direct_to_after_click?? ad_image.out_link : ad_banner.context) || ' '}' "
|
|
|
|
res << "/>"
|
|
|
|
end
|
|
|
|
res << "</div>"
|
|
|
|
end
|
|
|
|
fragment = Nokogiri::HTML::DocumentFragment.new(body, res)
|
|
|
|
banner.swap(fragment)
|
|
|
|
end
|
|
|
|
|
2012-03-21 17:51:16 +00:00
|
|
|
body.to_html
|
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
|
|
|
|
end
|