Class: JekyllImport::Importers::WordPress
- Inherits:
-
JekyllImport::Importer
- Object
- JekyllImport::Importer
- JekyllImport::Importers::WordPress
- Defined in:
- lib/jekyll-import/importers/wordpress.rb
Class Method Summary collapse
- .clean_entities(text) ⇒ Object
- .page_path(page_id, page_name_list) ⇒ Object
-
.process(opts) ⇒ Object
Main migrator function.
- .process_post(post, db, options, page_name_list) ⇒ Object
- .require_deps ⇒ Object
- .sluggify(title) ⇒ Object
- .specify_options(c) ⇒ Object
Methods inherited from JekyllImport::Importer
inherited, run, stringify_keys, subclasses
Class Method Details
.clean_entities(text) ⇒ Object
329 330 331 332 333 334 335 336 337 338 339 340 341 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 329 def self.clean_entities(text) text.force_encoding("UTF-8") if text.respond_to?(:force_encoding) text = HTMLEntities.new.encode(text, :named) # We don't want to convert these, it would break all # HTML tags in the post and comments. text.gsub!("&", "&") text.gsub!("<", "<") text.gsub!(">", ">") text.gsub!(""", '"') text.gsub!("'", "'") text.gsub!("/", "/") text end |
.page_path(page_id, page_name_list) ⇒ Object
347 348 349 350 351 352 353 354 355 356 357 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 347 def self.page_path(page_id, page_name_list) if page_name_list.key?(page_id) [ page_path(page_name_list[page_id][:parent], page_name_list), page_name_list[page_id][:slug], "/", ].join("") else "" end end |
.process(opts) ⇒ Object
Main migrator function. Call this to perform the migration.
- dbname
-
The name of the database
- user
-
The database user name
- pass
-
The database user’s password
- host
-
The address of the MySQL database host. Default: ‘localhost’
- port
-
The port number of the MySQL database. Default: ‘3306’
- socket
-
The database socket’s path
- options
-
A hash table of configuration options.
Supported options are:
- :table_prefix
-
Prefix of database tables used by WordPress. Default: ‘wp_’
- :site_prefix
-
Prefix of database tables used by WordPress Multisite, eg: 2_. Default: ”
- :clean_entities
-
If true, convert non-ASCII characters to HTML entities in the posts, comments, titles, and names. Requires the ‘htmlentities’ gem to work. Default: true.
- :comments
-
If true, migrate post comments too. Comments are saved in the post’s YAML front matter. Default: true.
- :categories
-
If true, save the post’s categories in its YAML front matter. Default: true.
- :tags
-
If true, save the post’s tags in its YAML front matter. Default: true.
- :more_excerpt
-
If true, when a post has no excerpt but does have a <!– more –> tag, use the preceding post content as the excerpt. Default: true.
- :more_anchor
-
If true, convert a <!– more –> tag into two HTML anchors with ids “more” and “more-NNN” (where NNN is the post number). Default: true.
- :extension
-
Set the post extension. Default: “html”
- :status
-
Array of allowed post statuses. Only posts with matching status will be migrated. Known statuses are :publish, :draft, :private, and :revision. If this is nil or an empty array, all posts are migrated regardless of status. Default: [:publish].
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 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 80 def self.process(opts) = { :user => opts.fetch("user", ""), :pass => opts.fetch("password", ""), :host => opts.fetch("host", "127.0.0.1"), :port => opts.fetch("port", "3306"), :socket => opts.fetch("socket", nil), :dbname => opts.fetch("dbname", ""), :table_prefix => opts.fetch("table_prefix", "wp_"), :site_prefix => opts.fetch("site_prefix", nil), :clean_entities => opts.fetch("clean_entities", true), :comments => opts.fetch("comments", true), :categories => opts.fetch("categories", true), :tags => opts.fetch("tags", true), :more_excerpt => opts.fetch("more_excerpt", true), :more_anchor => opts.fetch("more_anchor", true), :extension => opts.fetch("extension", "html"), :status => opts.fetch("status", ["publish"]).map(&:to_sym), # :draft, :private, :revision } if [:clean_entities] begin require "htmlentities" rescue LoadError warn "Could not require 'htmlentities', so the " \ ":clean_entities option is now disabled." [:clean_entities] = false end end FileUtils.mkdir_p("_posts") FileUtils.mkdir_p("_drafts") if [:status].include? :draft db = Sequel.mysql2([:dbname], :user => [:user], :password => [:pass], :socket => [:socket], :host => [:host], :port => [:port], :encoding => "utf8") px = [:table_prefix] sx = [:site_prefix] page_name_list = {} page_name_query = " SELECT posts.ID AS `id`, posts.post_title AS `title`, posts.post_name AS `slug`, posts.post_parent AS `parent` FROM #{px}#{sx}posts AS `posts` WHERE posts.post_type = 'page'" db[page_name_query].each do |page| page[:slug] = sluggify(page[:title]) if page.fetch(:slug, "").empty? page_name_list[ page[:id] ] = { :slug => page[:slug], :parent => page[:parent], } end posts_query = " SELECT posts.ID AS `id`, posts.guid AS `guid`, posts.post_type AS `type`, posts.post_status AS `status`, posts.post_title AS `title`, posts.post_name AS `slug`, posts.post_date AS `date`, posts.post_date_gmt AS `date_gmt`, posts.post_content AS `content`, posts.post_excerpt AS `excerpt`, posts.comment_count AS `comment_count`, users.display_name AS `author`, users.user_login AS `author_login`, users.user_email AS `author_email`, users.user_url AS `author_url` FROM #{px}#{sx}posts AS `posts` LEFT JOIN #{px}#{sx}users AS `users` ON posts.post_author = users.ID" if [:status] && ![:status].empty? status = [:status][0] posts_query << " WHERE posts.post_status = '#{status}'" [:status][1..-1].each do |post_status| posts_query << " OR posts.post_status = '#{post_status}'" end end db[posts_query].each do |post| process_post(post, db, , page_name_list) end end |
.process_post(post, db, options, page_name_list) ⇒ Object
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 179 def self.process_post(post, db, , page_name_list) px = [:table_prefix] sx = [:site_prefix] extension = [:extension] title = post[:title] title = clean_entities(title) if [:clean_entities] slug = post[:slug] slug = sluggify(title) if !slug || slug.empty? date = post[:date] || Time.now name = format("%02d-%02d-%02d-%s.%s", date.year, date.month, date.day, slug, extension) content = post[:content].to_s content = clean_entities(content) if [:clean_entities] excerpt = post[:excerpt].to_s more_index = content.index(%r/<!-- *more* -->/) more_anchor = nil if more_index if [:more_excerpt] && (post[:excerpt].nil? || post[:excerpt].empty?) excerpt = content[0...more_index] end if [:more_anchor] more_anchor = "more" content.sub!(%r/<!-- *more *-->/, "<a id=\"more\"></a>" \ "<a id=\"more-#{post[:id]}\"></a>") end end categories = [] = [] if [:categories] || [:tags] cquery = "SELECT terms.name AS `name`, ttax.taxonomy AS `type` FROM #{px}#{sx}terms AS `terms`, #{px}#{sx}term_relationships AS `trels`, #{px}#{sx}term_taxonomy AS `ttax` WHERE trels.object_id = '#{post[:id]}' AND trels.term_taxonomy_id = ttax.term_taxonomy_id AND terms.term_id = ttax.term_id" db[cquery].each do |term| if [:categories] && term[:type] == "category" categories << if [:clean_entities] clean_entities(term[:name]) else term[:name] end elsif [:tags] && term[:type] == "post_tag" << if [:clean_entities] clean_entities(term[:name]) else term[:name] end end end end comments = [] if [:comments] && post[:comment_count].to_i.positive? cquery = "SELECT comment_ID AS `id`, comment_author AS `author`, comment_author_email AS `author_email`, comment_author_url AS `author_url`, comment_date AS `date`, comment_date_gmt AS `date_gmt`, comment_content AS `content` FROM #{px}#{sx}comments WHERE comment_post_ID = '#{post[:id]}' AND comment_approved != 'spam'" db[cquery].each do |comment| comcontent = comment[:content].to_s comcontent.force_encoding("UTF-8") if comcontent.respond_to?(:force_encoding) comcontent = clean_entities(comcontent) if [:clean_entities] = comment[:author].to_s = clean_entities() if [:clean_entities] comments << { "id" => comment[:id].to_i, "author" => , "author_email" => comment[:author_email].to_s, "author_url" => comment[:author_url].to_s, "date" => comment[:date].to_s, "date_gmt" => comment[:date_gmt].to_s, "content" => comcontent, } end comments.sort! { |a, b| a["id"] <=> b["id"] } end # Get the relevant fields as a hash, delete empty fields and # convert to YAML for the header. data = { "layout" => post[:type].to_s, "status" => post[:status].to_s, "published" => post[:status].to_s == "draft" ? nil : (post[:status].to_s == "publish"), "title" => title.to_s, "author" => { "display_name" => post[:author].to_s, "login" => post[:author_login].to_s, "email" => post[:author_email].to_s, "url" => post[:author_url].to_s, }, "author_login" => post[:author_login].to_s, "author_email" => post[:author_email].to_s, "author_url" => post[:author_url].to_s, "excerpt" => excerpt, "more_anchor" => more_anchor, "wordpress_id" => post[:id], "wordpress_url" => post[:guid].to_s, "date" => date.to_s, "date_gmt" => post[:date_gmt].to_s, "categories" => [:categories] ? categories : nil, "tags" => [:tags] ? : nil, "comments" => [:comments] ? comments : nil, }.delete_if { |_k, v| v.nil? || v == "" }.to_yaml if post[:type] == "page" filename = page_path(post[:id], page_name_list) + "index.#{extension}" FileUtils.mkdir_p(File.dirname(filename)) elsif post[:status] == "draft" filename = "_drafts/#{slug}.md" else filename = "_posts/#{name}" end # Write out the data and content to file File.open(filename, "w") do |f| f.puts data f.puts "---" f.puts Util.wpautop(content) end end |
.require_deps ⇒ Object
6 7 8 9 10 11 12 13 14 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 6 def self.require_deps JekyllImport.require_with_fallback(%w( rubygems sequel fileutils safe_yaml unidecode )) end |
.sluggify(title) ⇒ Object
343 344 345 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 343 def self.sluggify(title) title.to_ascii.downcase.gsub(%r![^0-9A-Za-z]+!, " ").strip.tr(" ", "-") end |
.specify_options(c) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/jekyll-import/importers/wordpress.rb', line 16 def self.(c) c.option "dbname", "--dbname DB", "Database name. (default: '')" c.option "socket", "--socket SOCKET", "Database socket. (default: '')" c.option "user", "--user USER", "Database user name. (default: '')" c.option "password", "--password PW", "Database user's password. (default: '')" c.option "host", "--host HOST", "Database host name. (default: 'localhost')" c.option "port", "--port PORT", "Database port number. (default: '')" c.option "table_prefix", "--table_prefix PREFIX", "Table prefix name. (default: 'wp_')" c.option "site_prefix", "--site_prefix PREFIX", "Site prefix name. (default: '')" c.option "clean_entities", "--clean_entities", "Whether to clean entities. (default: true)" c.option "comments", "--comments", "Whether to import comments. (default: true)" c.option "categories", "--categories", "Whether to import categories. (default: true)" c.option "tags", "--tags", "Whether to import tags. (default: true)" c.option "more_excerpt", "--more_excerpt", "Whether to use more excerpt. (default: true)" c.option "more_anchor", "--more_anchor", "Whether to use more anchor. (default: true)" c.option "status", "--status STATUS,STATUS2", Array, "Array of allowed statuses ('publish', 'draft', 'private', 'revision'). (default: ['publish'])" end |