class RuneBlog
VERSION = "0.0.13"
Path = File.expand_path(File.join(File.dirname(__FILE__)))
DefaultData = Path + "/../data"
BlogHeader = File.read(DefaultData + "/blog_header.html") rescue "not found"
BlogTrailer = File.read(DefaultData + "/blog_trailer.html") rescue "not found"
PostHeader = File.read(DefaultData + "/post_header.html") rescue "not found"
PostTrailer = File.read(DefaultData + "/post_trailer.html") rescue "not found"
end
# FIXME lots of structure changes
require 'yaml'
=begin
Post
----
Create a blog post
Process it
Link it
Upload to server
data
views
computing
compiled
custom
deployment
=end
require 'rubygems'
require 'ostruct'
# require 'livetext'
### ask
def ask(prompt, meth = :to_s)
print prompt
STDOUT.flush
STDIN.gets.chomp.send(meth)
end
### new_blog!
def new_blog!
unless File.exist?(".blog")
yn = ask("No .blog found. Create new blog?")
if yn.upcase == "Y"
#-- what if data already exists?
system("cp -r #{DefaultData} .")
File.open(".blog", "w") {|f| f.puts "data" }
end
end
end
### next_sequence
def next_sequence
@config.sequence += 1
File.open("#{@config.root}/data/sequence", "w") {|f| f.puts @config.sequence }
@config.sequence
end
### make_slug
def make_slug(title, seq=nil)
num = '%04d' % (seq || next_sequence) # FIXME can do better
slug = title.downcase.strip.gsub(' ', '-').gsub(/[^\w-]/, '')
"#{num}-#{slug}"
end
### read_config
def read_config
@config = OpenStruct.new
# What views are there? Deployment, etc.
# Crude - FIXME later
root = File.readlines(".blog").first.chomp rescue "myblog"
dirs = Dir.entries("#{root}/views/") - %w[. ..]
dirs.reject! {|x| ! File.directory?("#{root}/views/#{x}") }
@config.root = root
@config.views = dirs
@config.sequence = File.read(root + "/sequence").to_i
rescue => err
if root != "myblog"
raise err
end
new_blog!
STDERR.puts "Created. Now run again."
exit
end
### create_empty_post
def create_empty_post
@template = <<-EOS
.mixin liveblog
.liveblog_version
.title #{@title}
.pubdate #{@date}
.categories elixir ruby
.views computing
Teaser goes here.
.readmore
Remainder of post goes here.
EOS
@slug = make_slug(@title)
@fname = @slug + ".lt3"
File.open("#{@config.root}/src/#{@fname}", "w") {|f| f.puts @template }
@fname
end
### edit_post
def edit_post(file)
system("vi #{@config.root}/src/#{file}")
end
### process_post
def process_post(file)
lt ||= Livetext.new
puts " Processing: #{file}"
lt.process_file(file)
@meta = lt.main.instance_eval { @meta }
@meta.slug = file.sub(/.lt3$/, "")
@meta
end
### reload_post
def reload_post(file)
@main ||= Livetext.new
@meta = process_post("#{@config.root}/src/#{file}")
@meta.slug = file.sub(/.lt3$/, "")
@meta
end
### posting
def posting(meta)
<<-HTML
#{meta.pubdate}
#{meta.title}
#{meta.teaser}
Read more...
HTML
end
### generate_index
def generate_index(view)
# Gather all posts, create list
vdir = "#{@config.root}/views/#{view}"
posts = Dir.entries(vdir).grep /^\d\d\d\d/
posts = posts.sort.reverse
# Add view header/trailer
@bloghead = File.read("#{vdir}/custom/blogheader.html") rescue ""
@blogtail = File.read("#{vdir}/custom/blogtrailer.html") rescue ""
# Output view
posts.map! do |post|
YAML.load(File.read("#{vdir}/#{post}/metadata.yaml"))
end
out = @bloghead.dup
posts.each do |post|
out << posting(post)
end
out << @blogtail
File.open("#{vdir}/index.html", "w") do |f|
f.puts out
end
end
### link_post_view
def link_post_view(view)
# Create dir using slug (index.html, metadata?)
vdir = "#{@config.root}/views/#{view}"
dir = "#{vdir}/#{@meta.slug}"
cmd = "mkdir -p #{dir}"
puts " Running: #{cmd}"
system(cmd)
File.write("#{dir}/metadata.yaml", @meta.to_yaml)
# Add header/trailer to post index
@posthead ||= File.read("#{vdir}/postheader.html") rescue ""
@posttail ||= File.read("#{vdir}/posttrailer.html") rescue ""
File.open("#{dir}/index.html", "w") do |f|
f.puts @posthead
f.puts @meta.body
f.puts @posttail
end
generate_index(view)
end
### link_post
def link_post(meta)
# First gather the views
views = meta.views
views.each {|view| puts "Handling view '#{view}'"; link_post_view(view) }
end
### rebuild
def rebuild
files = Dir.entries("#{@config.root}/src/").grep /\d\d\d\d.*.lt3$/
files = files.sort.reverse
files.each do |file|
reload_post(file)
link_post(@meta)
publish_post
end
end
### relink
def relink
@config.views.each do |view|
generate_index(view)
end
end
### publish?
def publish?
yn = ask("Publish? y/n ")
yn.upcase == "Y"
end
### publish_post
def publish_post
# Grab destination data
# scp changed files over
puts " Publish: Not implemented yet"
end
### list_views
def list_views
read_config unless @config
puts @config.views
end
### change_view
def change_view(arg = nil)
raise "view #{arg} does not exist" unless @config.views.include?(arg)
@view = arg
end
### new_view
def new_view(arg = nil)
arg = nil if arg == ""
read_config unless @config
arg ||= ask("New view: ") # check validity later
raise "view #{arg} already exists" if @config.views.include?(arg)
dir = @config.root + "/views/" + arg
cmd = "mkdir -p #{dir}/custom"
system(cmd)
File.write("#{dir}/custom/blog_header.html", RuneBlog::BlogHeader)
File.write("#{dir}/custom/blog_trailer.html", RuneBlog::BlogTrailer)
File.write("#{dir}/custom/post_header.html", RuneBlog::PostHeader)
File.write("#{dir}/custom/post_trailer.html", RuneBlog::PostTrailer)
@config.views << arg
end
### import
def import(arg = nil)
read_config unless @config
arg = nil if arg == ""
arg ||= ask("Filename: ") # check validity later
name = arg
grep = `grep ^.title #{name}`
@title = grep.sub(/^.title /, "")
@slug = make_slug(@title)
@fname = @slug + ".lt3"
system("cp #{name} #{@config.root}/src/#@fname")
edit_post(@fname)
process_post(@fname)
if publish?
link_post(@meta)
publish_post
end
end
### new_post
def new_post
read_config unless @config
@title = ask("Title: ")
@today = Time.now.strftime("%Y%m%d")
@date = Time.now.strftime("%Y-%m-%d")
file = create_empty_post
edit_post(file)
process_post(file)
if publish?
link_post(@meta)
publish_post
end
end
### list_posts
def list_posts
dir = "#{@config.root}/views/#@view/"
Dir.chdir(dir) do
posts = Dir.entries(".").grep(/^0.*/)
puts
if posts.empty?
puts "No posts"
else
posts.each {|post| puts " #{post}" }
end
puts
end
rescue
puts "Oops? cwd = #{Dir.pwd} dir = #{dir}"
exit
end