-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #3218 regression: don't duplicate locale in url
and refactor the builder to be more readable
- Loading branch information
Showing
1 changed file
with
31 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,39 @@ | ||
xml.instruct! | ||
|
||
xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do | ||
|
||
@locales.each do |locale| | ||
::I18n.locale = locale | ||
::Refinery::Page.live.in_menu.includes(:parts).each do |page| | ||
# exclude sites that are external to our own domain. | ||
page_url = if page.url.is_a?(Hash) | ||
# This is how most pages work without being overriden by link_url | ||
page.url.merge({:only_path => false, locale: locale}) | ||
elsif page.url.to_s !~ /^http/ | ||
# handle relative link_url addresses. | ||
raw_url = [request.protocol, request.host_with_port, page.url].join | ||
if (@locales.size > 1) && defined?(RoutingFilter::RefineryLocales) | ||
filter = RoutingFilter::RefineryLocales.new | ||
filter.around_generate({}) do | ||
raw_url | ||
end | ||
else | ||
raw_url | ||
end | ||
end | ||
|
||
# Add XML entry only if there is a valid page_url found above. | ||
xml.url do | ||
xml.loc refinery.url_for(page_url) | ||
xml.lastmod page.updated_at.to_date | ||
end if page_url.present? and page.show_in_menu? | ||
::Refinery::Page.live.in_menu.each do |page| | ||
|
||
# exclude sites that are external to our own domain. | ||
if page.url.is_a?(Hash) | ||
|
||
# This is how most pages work without being overriden by link_url | ||
page_url = page.url.merge({:only_path => false, locale: locale}) | ||
|
||
elsif page.url.to_s !~ /^http/ | ||
|
||
# handle relative link_url addresses. | ||
raw_url = [request.protocol, request.host_with_port, page.url].join | ||
|
||
if (@locales.size > 1) && !page.url.start_with?("/#{locale}/") && defined?(RoutingFilter::RefineryLocales) | ||
filter = RoutingFilter::RefineryLocales.new | ||
filter.around_generate({}) do | ||
raw_url | ||
end | ||
else | ||
raw_url | ||
end | ||
|
||
page_url = raw_url | ||
end | ||
|
||
# Add XML entry only if there is a valid page_url found above. | ||
xml.url do | ||
xml.loc refinery.url_for(page_url) | ||
xml.lastmod page.updated_at.to_date | ||
end if page_url.present? | ||
end | ||
end | ||
|
||
end | ||
end |