Class: JekyllImport::Importers::WordpressDotCom::Item
- Inherits:
-
Object
- Object
- JekyllImport::Importers::WordpressDotCom::Item
- Defined in:
- lib/jekyll-import/importers/wordpressdotcom.rb
Instance Method Summary collapse
- #directory_name ⇒ Object
- #excerpt ⇒ Object
- #file_name ⇒ Object
-
#initialize(node) ⇒ Item
constructor
A new instance of Item.
- #parent_id ⇒ Object
- #permalink ⇒ Object
- #permalink_title ⇒ Object
- #post_password ⇒ Object
- #post_type ⇒ Object
- #published? ⇒ Boolean
- #published_at ⇒ Object
- #status ⇒ Object
- #text_for(path) ⇒ Object
- #title ⇒ Object
Constructor Details
#initialize(node) ⇒ Item
Returns a new instance of Item.
56 57 58 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 56 def initialize(node) @node = node end |
Instance Method Details
#directory_name ⇒ Object
116 117 118 119 120 121 122 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 116 def directory_name @directory_name ||= if !published? && post_type == "post" "_drafts" else "_#{post_type}s" end end |
#excerpt ⇒ Object
128 129 130 131 132 133 134 135 136 137 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 128 def excerpt @excerpt ||= begin text = Hpricot(text_for("excerpt:encoded")).inner_text if text.empty? nil else text end end end |
#file_name ⇒ Object
108 109 110 111 112 113 114 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 108 def file_name @file_name ||= if published? "#{published_at.strftime("%Y-%m-%d")}-#{permalink_title}.html" else "#{permalink_title}.html" end end |
#parent_id ⇒ Object
104 105 106 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 104 def parent_id @parent_id ||= text_for("wp:post_parent") end |
#permalink ⇒ Object
78 79 80 81 82 83 84 85 86 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 78 def permalink # Hpricot thinks "link" is a self closing tag so it puts the text of the link after the tag # but sometimes it works right! I think it's the xml declaration @permalink ||= begin uri = text_for("link") uri = @node.at("link").following[0] if uri.empty? URI(uri.to_s).path end end |
#permalink_title ⇒ Object
68 69 70 71 72 73 74 75 76 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 68 def permalink_title post_name = text_for("wp:post_name") # Fallback to "prettified" title if post_name is empty (can happen) @permalink_title ||= if post_name.empty? WordpressDotCom.sluggify(title) else post_name end end |
#post_password ⇒ Object
96 97 98 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 96 def post_password @post_password ||= text_for("wp:post_password") end |
#post_type ⇒ Object
100 101 102 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 100 def post_type @post_type ||= text_for("wp:post_type") end |
#published? ⇒ Boolean
124 125 126 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 124 def published? @published ||= (status == "publish") end |
#published_at ⇒ Object
88 89 90 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 88 def published_at @published_at ||= Time.parse(text_for("wp:post_date")) if published? end |
#status ⇒ Object
92 93 94 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 92 def status @status ||= text_for("wp:status") end |
#text_for(path) ⇒ Object
60 61 62 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 60 def text_for(path) @node.at(path).inner_text end |
#title ⇒ Object
64 65 66 |
# File 'lib/jekyll-import/importers/wordpressdotcom.rb', line 64 def title @title ||= text_for(:title).strip end |