class Octopress::Post

Public Instance Methods

default_template() click to toggle source
# File lib/octopress/post.rb, line 33
def default_template
  'post'
end
path() click to toggle source
# File lib/octopress/post.rb, line 20
def path
  name = if @options['path']
    "#{date_slug}-#{path_slug(@options['path'])}.#{File.extname(@options['path']).sub(/^\./, '')}"
  else
    "#{date_slug}-#{title_slug}.#{extension}"
  end
  File.join(site.source, '_drafts', name)
  name = "#{date_slug}-#{title_slug}.#{extension}"
  dir = File.join(site.source, '_posts', @options['dir'])
  FileUtils.mkdir_p dir
  File.join(dir, name)
end
read() click to toggle source

Reads the file from options

# File lib/octopress/post.rb, line 62
def read
  @post_content ||= begin
    file = @options['path']
    raise "File #{file} not found." if !File.exist? file
    File.read(file)
  end
end
read_post_content() click to toggle source

Get content from draft post file also update the draft’s date configuration

# File lib/octopress/post.rb, line 80
def read_post_content
  if @options['date']
    # remove date if it exists
    content = read.sub(/date:.*$\n/, "")
    
    # Insert date after title
    content.sub(/(title:.+$)/i, '\1'+"\ndate: #{@options['date']}")
  else
    read
  end
end
read_post_yaml(key) click to toggle source

Get title from post file

# File lib/octopress/post.rb, line 72
def read_post_yaml(key)
  match = read.match(/#{key}:\s*(.+)?$/)
  match[1] if match
end
set_default_options() click to toggle source
# File lib/octopress/post.rb, line 5
def set_default_options
  @options['type']      ||= 'post'
  @options['write_message'] ||= 'New post:'

  if @options['title'].nil? && @options[:type] == 'post'
    raise "Post not created: Please choose a title.\n".red + "  For example: " + "octopress new post \"Friendship with a tomato?\"".yellow
  end

  @options['layout']      = @config['post_layout']
  @options['date']        = convert_date @options['date']
  @options['extension'] ||= @config['post_ext']
  @options['template']  ||= @config['post_template']
  @options['dir']       ||= ''
end
unpublish() click to toggle source
# File lib/octopress/post.rb, line 37
def unpublish
  @options['date'] = read_post_yaml('date')
  @options['title'] = read_post_yaml('title')

  post_options = {
    'title'     => @options['title'],
    'date'      => @options['date'],
    'slug'      => path_slug(@options['path']),
    'extension' => File.extname(@options['path']).sub(/^\./, ''),
    'content'   => read_post_content,
    'dir'       => @options['dir'],
    'type'      => "draft from post",
    'write_message' => "Unpublished: #{relative_path(path)} →",
    'force'     => @options['force']
  }

  Draft.new(site, post_options).write
  
  # Remove the old post file
  #
  FileUtils.rm @options['path']
end