1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
require 'rexml/document'
require 'iconv'
class UpdateImporter
def initialize path
Node.delete_all
Page.delete_all
@path = path
unless Node.root
Node.create!
end
unless @updates = Node.find_by_unique_name('updates')
@updates = Node.create!( :slug => 'updates' )
@updates.move_to_child_of Node.root
end
end
# Class Methods
# Instance Methods
def import_xml
directories = Dir.glob("#{@path}/*/*.xml{,.de,.en}")
directories.each do |dir|
next if dir =~ /index\.xml/
chaospage = REXML::Document.new(File.new(dir))
puts dir
lang = case dir
when /\.de$/ then :de
when /\.en$/ then :en
else
:de
end
tmp_dir = dir.sub(@path, "").split(/\//).last
chaos_id = tmp_dir.split(/\./)[0]
create_node_and_page( chaospage.root, lang, chaos_id )
end
end
def create_node_and_page chaospage, lang, chaos_id
date = chaospage.root.elements['date'].get_text.to_s.to_date
unique_name = "updates/#{date.year}/#{chaos_id}"
unless parent_node = Node.find_by_unique_name("updates/#{date.year}")
parent_node = Node.create :slug => date.year
parent_node.move_to_child_of @updates
end
unless node = Node.find_by_unique_name(unique_name)
node = Node.create :slug => chaos_id
node.move_to_child_of parent_node
end
create_node_for_page chaospage, node, date, lang
end
def create_node_for_page chaospage, node, date, lang
xhtml = convert_chaospage_to_xhtml(chaospage)
body = ""
element = xhtml.elements['abstract'].next_sibling
while element do
body << element.to_s
element = element.next_sibling
end
if node.pages.empty?
I18n.locale = lang
page = node.pages.create!(
:title => xhtml.elements['title'].get_text.to_s,
:abstract => xhtml.elements['abstract'].get_text.to_s,
:body => body,
:published_at => date
)
else
page = node.pages.first
I18n.locale = lang
page.update_attributes(
:title => xhtml.elements['title'].get_text.to_s,
:abstract => xhtml.elements['abstract'].get_text.to_s,
:body => body
)
page.save
end
page.tag_list.add("update") if page
if (flags = xhtml.elements['flags']) && page
page.tag_list.add("event") if flags.attributes['calendar']
page.tag_list.add("pressemitteilung") if flags.attributes['pm']
page.save!
end
if node.head.nil? && page
puts page.title
node.head = page
node.save!
end
end
def convert_chaospage_to_xhtml( element )
element.each_element('//paragraph') {|sub| sub.name = "p" }
element.each_element('//link') do |sub|
sub.name = "a"
sub.attributes.get_attribute("ref").name = "href"
sub.attributes.delete_all("type")
end
element.each_element('//quote') {|sub| sub.name = "q" }
element.each_element('//subtitle') {|sub| sub.name = "h3" }
element.each_element('//strong') {|sub| sub.name = "i" }
element.each_element('//stronger') {|sub| sub.name = "b" }
element.each_element('//chapter') {|sub| sub.name = "h2" }
element.each_element('//list') {|sub|
if sub.get_elements( '//row' ).size > 0
sub.name = "table"
sub.each_element('//row') {|row|
row.name = "tr"
row.each_element('//item') {|td| td.name = "td"}
}
else
sub.name = "ul"
sub.each_element('//item)') {|item| item.name = "li" }
sub.each_element('//sub') {|sl| sl.name = "ul" }
end
}
element.each_element('//media') {|sub|
sub.name = "img"
sub.attributes.get_attribute("ref").name = "src"
if sub.has_text?() then
sub.add_attribute("alt"=>sub.text())
sub.delete_element('//*')
end
}
element.each_element('//name') {|sub|
if sub.attributes.get_attribute("email") then
sub.attributes["email"] = "mailto:" + sub.attributes["email"]
sub.attributes.get_attribute("email").name = "href"
end
sub.name = "a"
sub.attributes.get_attribute("ref").name = "href" if sub.attributes.get_attribute("ref")
}
element
end
end
|