Skip to content

Commit 2ef75da

Browse files
authored
fix(sitemap): sitemap custom tags (#124)
1 parent 3803ee5 commit 2ef75da

File tree

2 files changed

+82
-2
lines changed

2 files changed

+82
-2
lines changed

lib/tableau/extensions/sitemap_extension.ex

+5-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ defmodule Tableau.SitemapExtension do
6060
end
6161

6262
xml = [
63-
"<urlset ",
63+
~s|<?xml version="1.0" encoding="UTF-8"?>|,
64+
"<urlset",
6465
" ",
6566
~s|xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"|,
6667
" ",
@@ -89,8 +90,10 @@ defmodule Tableau.SitemapExtension do
8990
defp prepend_lastmod(body, _), do: body
9091

9192
defp prepend_sitemap_assigns(body, %{sitemap: sitemap_data}) do
93+
sitemap_data = Enum.sort(sitemap_data)
94+
9295
for {key, value} <- sitemap_data, reduce: body do
93-
acc -> ["<", key, ">", value, "</", key, ">" | acc]
96+
acc -> ["<#{key}>", "#{value}", "</#{key}>" | acc]
9497
end
9598
end
9699

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
defmodule Tableau.SitemapExtensionTest do
2+
use ExUnit.Case, async: true
3+
4+
alias Tableau.SitemapExtension
5+
6+
@tag :tmp_dir
7+
test "use _site as default out dir", %{tmp_dir: tmp_dir} do
8+
token = %{
9+
site: %{
10+
config: %{
11+
url: "http://example.com",
12+
out_dir: tmp_dir
13+
},
14+
pages: [
15+
%{
16+
date: ~U[2018-02-28 00:00:00Z],
17+
permalink: "/about",
18+
title: "About"
19+
}
20+
]
21+
}
22+
}
23+
24+
SitemapExtension.run(token)
25+
26+
sitemap = File.read!("#{tmp_dir}/sitemap.xml")
27+
28+
assert sitemap ===
29+
"""
30+
<?xml version="1.0" encoding="UTF-8"?>\
31+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">\
32+
<url>\
33+
<lastmod>2018-02-28T00:00:00Z</lastmod>\
34+
<loc>http://example.com/about</loc>\
35+
</url>\
36+
</urlset>\
37+
"""
38+
end
39+
40+
@tag :tmp_dir
41+
test "generates sitemap with optional tags", %{tmp_dir: tmp_dir} do
42+
token = %{
43+
site: %{
44+
config: %{
45+
out_dir: tmp_dir,
46+
url: "http://example.com"
47+
},
48+
pages: [
49+
%{
50+
permalink: "/about",
51+
title: "About",
52+
sitemap: %{
53+
priority: 0.5,
54+
changefreq: "monthly"
55+
}
56+
}
57+
]
58+
}
59+
}
60+
61+
SitemapExtension.run(token)
62+
63+
sitemap = File.read!("#{tmp_dir}/sitemap.xml")
64+
65+
assert sitemap ===
66+
"""
67+
<?xml version="1.0" encoding="UTF-8"?>\
68+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">\
69+
<url>\
70+
<priority>0.5</priority>\
71+
<changefreq>monthly</changefreq>\
72+
<loc>http://example.com/about</loc>\
73+
</url>\
74+
</urlset>\
75+
"""
76+
end
77+
end

0 commit comments

Comments
 (0)