16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# File 'lib/sitemaps_tasks.rb', line 16
def generate
travel_site = Site.where( :domain => @host, :lang => @lang ).first
travel_tag = Tag.mobi
@reports = Report.or( :site => travel_site )
@galleries = []
@videos = []
@tags = []
@cities = City.all
@venues = Venue.all
@users = []
@meta = []
xml = Builder::XmlMarkup.new(:indent=>2)
xml.instruct! :xml, :version=>"1.0", :encoding=>"UTF-8"
xml.urlset :xmlns => 'http://www.sitemaps.org/schemas/sitemap/0.9' do
@reports.each do |report|
puts "Report: #{report.name}" if @verbose
xml.url do
xml.loc "http://#{@host}/#{@lang}/reports/view/#{report.name_seo}"
xml.lastmod self.pretty_date report.created_at
end
end
@galleries.each do |g|
xml.url do
xml.loc "http://#{@host}/#{@lang}/galleries/show/#{g.galleryname}"
xml.lastmod pretty_date g.created_at
end
end
@cities.each do |c|
puts "City: #{c.name}" if @verbose
xml.url do
xml.loc "http://#{@host}/#{@lang}/cities/travel-to/#{c.cityname}"
xml.lastmod pretty_date c.created_at
end
end
@tags.each do |c|
xml.url do
xml.loc "http://#{@host}/#{@lang}/tags/show/#{c.name_seo}"
xml.lastmod pretty_date c.created_at
end
end
@users.each do |user|
xml.url do
xml.loc "http://#{@host}/#{@lang}/users/show/#{user.username}"
xml.lastmod pretty_date user.created_at
end
end
@venues.each do |c|
puts "Venue: #{c.name}" if @verbose
xml.url do
xml.loc "http://#{@host}/#{@lang}/venues/show/#{c.name_seo}"
xml.lastmod pretty_date c.created_at
end
end
end
File.open( 'sitemap.xml', 'w' ) do |f|
f.write xml
end
end
|