Forked from vitobotta/Importing posts from Wordpress into Jekyll.rb
Created
December 29, 2011 00:24
-
-
Save vquaiato/1530683 to your computer and use it in GitHub Desktop.
The script I used to import posts from my Wordpress blog into a new Jekyll one.
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
%w(rubygems sequel fileutils yaml active_support/inflector).each{|g| require g} | |
require File.join(File.dirname(__FILE__), "downmark_it.rb") | |
module Jekyll | |
module WordPress | |
def self.process(dbname = 'SEU_DB_NAME', user = 'SEU_DB_USER', pass = 'SEU_DB_PASS', host = 'localhost', table_prefix = 'wp_') | |
db = Sequel.mysql(dbname, :user => user, :password => pass, :host => host, :encoding => 'utf8') | |
%w(_posts _drafts images/posts/featured).each{|folder| FileUtils.mkdir_p folder} | |
query = <<-EOS | |
SELECT post_title, post_name, post_date, post_content, post_excerpt, ID, guid, post_status, post_type, post_status, | |
( SELECT guid | |
FROM #{table_prefix}posts | |
WHERE ID = ( SELECT meta_value | |
FROM #{table_prefix}postmeta | |
WHERE post_id = post.ID AND meta_key = "_thumbnail_id") ) AS post_image | |
FROM #{table_prefix}posts AS post | |
WHERE post_type = 'post' | |
EOS | |
categories_and_tags_query = <<-EOS | |
SELECT t.taxonomy, term.name, term.slug | |
FROM #{table_prefix}term_relationships AS tr | |
INNER JOIN #{table_prefix}term_taxonomy AS t ON t.term_taxonomy_id = tr.term_taxonomy_id | |
INNER JOIN #{table_prefix}terms AS term ON term.term_id = t.term_id | |
WHERE tr.object_id = %d | |
ORDER BY tr.term_order | |
EOS | |
db[query].each do |post| | |
title = post[:post_title] | |
slug = post[:post_name] | |
date = post[:post_date] | |
content = DownmarkIt.to_markdown post[:post_content] | |
status = post[:post_status] | |
name = "%02d-%02d-%02d-%s.markdown" % [date.year, date.month, date.day, slug] | |
image = File.basename(post[:post_image]) rescue "" | |
categories = [] | |
post_tags = [] | |
puts title | |
`wget -O "images/posts/featured/#{image}" "#{post[:post_image]}"` unless File::exists?("images/posts/featured/#{image}") || post[:post_image].nil? | |
db[categories_and_tags_query % post[:ID]].each do |category_or_tag| | |
begin | |
eval(category_or_tag[:taxonomy].pluralize) << { | |
"title" => category_or_tag[:name], | |
"slug" => category_or_tag[:slug], | |
"autoslug" => category_or_tag[:name].downcase.gsub(" ", "-") | |
} | |
rescue | |
end | |
end | |
data = { | |
'layout' => 'post', | |
'title' => title.to_s, | |
'excerpt' => post[:post_excerpt].to_s, | |
'image' => image, | |
'wordpress_id' => post[:ID], | |
'wordpress_url' => post[:guid], | |
'categories' => categories, | |
'tags' => post_tags | |
}.delete_if { |k,v| v.nil? || v == ''}.to_yaml | |
File.open("#{status == 'publish' ? '_posts' : '_drafts'}/#{name}", "w") do |f| | |
f.puts data | |
f.puts "---" | |
f.puts content | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment