1
0
Fork 0
forked from wezm/wezm.net
wezm.net/importer/wordpress.rb

140 lines
3.7 KiB
Ruby
Raw Normal View History

require 'nokogiri'
require 'nanoc3'
module Importer
2009-11-18 02:02:37 +00:00
class Wordpress
2009-11-18 02:02:37 +00:00
def initialize(wordpress_export_path, nanoc_site_path)
@export_file = File.open(wordpress_export_path)
@export = Nokogiri::XML(@export_file)
2009-11-18 02:02:37 +00:00
@site = Nanoc3::Site.new(nanoc_site_path)
2009-11-18 02:35:09 +00:00
load_categories
load_tags
end
def load_categories
@categories = {}
@export.xpath('//rss/channel/wp:category').each do |category|
name = get(category, 'wp:cat_name')
parent = get(category, 'wp:category_parent')
parent = nil if parent.empty?
@categories[name] = {
:slug => get(category, 'wp:category_nicename'),
:name => name,
:parent => parent
}
end
end
def load_tags
@tags = {}
end
def find_topmost_category(category)
return category if category[:parent].nil?
find_topmost_category(@categories[category[:parent]])
end
def run
# Loop over each post
@export.xpath('//rss/channel/item').each do |item|
item_type = item.xpath('wp:post_type').first.text
case item_type
when 'post'
process_post(item)
when 'page'
process_page(item)
when 'attachment'
process_attachment(item)
else
puts "Unknown post type: #{item_type}"
end
end
end
protected
2009-11-18 02:02:37 +00:00
def get(node, xpath)
elem = node.xpath(xpath).first
elem ? elem.content : nil
end
def process_post(post)
puts "Processing post: #{post.css('title').first.text}"
2009-11-18 02:02:37 +00:00
content = get(post, 'content:encoded')
tags = []
post.css('category[domain=tag]').each do |tag|
if tag['nicename']
tags << tag['nicename']
else
tags << tag.text.downcase
end
end
categories = []
post.css('category[domain=category]').each do |category|
categories << category.text
end
2009-11-18 02:35:09 +00:00
categories.uniq!
2009-11-18 02:02:37 +00:00
attributes = {
:tags => tags.uniq,
2009-11-18 02:35:09 +00:00
:categories => categories,
2009-11-18 02:02:37 +00:00
:permalink => get(post, 'link'),
:status => get(post, 'wp:status'),
:slug => get(post, 'wp:post_name'),
:post_id => get(post, 'wp:post_id').to_i,
:post_date => get(post, 'wp:post_date_gmt'),
}
2009-11-18 02:35:09 +00:00
if attributes[:slug].empty?
puts "WARNING: Error post #{attributes[:post_id]} has no slug"
#TODO prompt for slug or derive one from the title here
2009-11-18 02:02:37 +00:00
return
end
2009-11-18 02:35:09 +00:00
main_category = @categories[categories.first]
top_category = find_topmost_category(main_category)
if main_category == top_category
puts "WARNING: Need a secondary category"
#TODO prompt for second category here
end
path = ['', 'articles', top_category[:slug], main_category[:slug], attributes[:slug], ''].join('/')
require 'pp'
pp attributes
puts path
# add_item(content, attributes, identifier)
end
2009-11-18 02:02:37 +00:00
def process_page(page)
puts "Processing page: #{page.css('title').first.text}"
end
def process_attachment(attachment)
puts "Processing attachment"
end
2009-11-18 02:02:37 +00:00
def add_item(content, attributes, identifier)
# content = row['post_content']
# attributes = {
# :title => row['post_title'],
# :published_on => row['post_date_gmt'],
# :modified_on => row['post_modified_gmt'],
# :status => row['post_status'],
# :excerpt => row['post_excerpt']
# }
# identifier = '/posts/' + post_date.year.to_s + '/' + post_date.month.to_s + '/' + post_name + '/'
@site.data_sources.first.create_item(content, attributes, identifier)
puts "Added item at #{identifier}"
end
end
2009-11-18 02:02:37 +00:00
end