Skip to content

Instantly share code, notes, and snippets.

@goerz
Created May 22, 2010 21:59
Show Gist options
  • Save goerz/410398 to your computer and use it in GitHub Desktop.
Save goerz/410398 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sequel'
require 'fileutils'
# NOTE: This converter requires Sequel and the MySQL gems.
# The MySQL gem can be difficult to install on OS X. Once you have MySQL
# installed, running the following commands should work:
# $ sudo gem install sequel
# $ sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
module Jekyll
module WordPress
# Reads a MySQL database via Sequel and creates a post file for each
# post in wp_posts that has post_status = 'publish'.
# This restriction is made because 'draft' posts are not guaranteed to
# have valid dates.
QUERY = "select post_title, post_name, post_date, post_modified, post_content, post_excerpt, ID, guid from wp_posts where post_status = 'publish' and post_type = 'post'"
#QUERY = "select post_title, post_name, post_date, post_content, post_excerpt, ID, guid from wp_posts where post_status = 'publish' and post_type = 'page'"
def self.process(dbname, user, pass, host = 'localhost')
db = Sequel.mysql(dbname, :user => user, :password => pass, :host => host)
db2 = Sequel.mysql(dbname, :user => user, :password => pass, :host => host)
FileUtils.mkdir_p "_posts"
#FileUtils.mkdir_p "_pages"
db[QUERY].each do |post|
# Get required fields and construct Jekyll compatible name
title = post[:post_title]
slug = post[:post_name]
date = post[:post_date]
content = post[:post_content]
name = "%02d-%02d-%02d-%s.markdown" % [date.year, date.month, date.day,
slug]
post_id = post[:ID]
categoryquery = "select Name from wp_posts as post JOIN wp_term_relationships as rel ON post.ID = rel.object_ID JOIN wp_term_taxonomy as ttax ON rel.term_taxonomy_id = ttax.term_taxonomy_id JOIN wp_terms as terms ON ttax.term_id = terms.term_id where post_status = 'publish' and post_type = 'post' and ID = #{post_id} and taxonomy = 'category'"
cat = ""
db2[categoryquery].each do |category|
cat = category[:Name]
end
tagsquery = "select Name from wp_posts as post JOIN wp_term_relationships as rel ON post.ID = rel.object_ID JOIN wp_term_taxonomy as ttax ON rel.term_taxonomy_id = ttax.term_taxonomy_id JOIN wp_terms as terms ON ttax.term_id = terms.term_id where post_status = 'publish' and post_type = 'post' and ID = #{post_id} and taxonomy = 'post_tag'"
tags = '['
db2[tagsquery].each do |tag|
if (tag != nil)
if (tags != '[')
tags += ', '
end
tags += tag[:Name]
end
end
tags += ']'
if (tags == '[]')
tags = ''
end
# Get the relevant fields as a hash, delete empty fields and convert
# to YAML for the header
data = {
'layout' => 'post',
'title' => title.to_s,
'excerpt' => post[:post_excerpt].to_s,
'wordpress_id' => post[:ID],
'modified' => post[:post_modified],
'wordpress_url' => post[:guid],
'category' => cat,
'tags' => tags
}.delete_if { |k,v| v.nil? || v == ''}.to_yaml
# Write out the data and content to file
File.open("_posts/#{name}", "w") do |f|
#File.open("_pages/#{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