samhuri.net/server/harp_blog.rb

421 lines
9.9 KiB
Ruby

require 'fileutils'
require 'json'
require './harp_blog/post'
require './web_title_finder'
require './web_version_finder'
class HarpBlog
class HarpBlogError < RuntimeError ; end
class InvalidDataError < HarpBlogError ; end
class PostExistsError < HarpBlogError ; end
class PostAlreadyPublishedError < HarpBlogError ; end
class PostNotPublishedError < HarpBlogError ; end
class PostSaveError < HarpBlogError
attr_reader :original_error
def initialize(message, original_error)
super(message)
@original_error = original_error
end
end
def initialize(path, dry_run = true, title_finder = nil, version_finder = nil)
@path = path
@dry_run = dry_run
@title_finder = title_finder || WebTitleFinder.new
@version_finder = version_finder || WebVersionFinder.new
@mutated = false
end
def local_version
git_sha
end
def remote_version
@version_finder.find_version
end
def dirty?
local_version != remote_version
end
def status
{
'local-version' => local_version,
'remote-version' => remote_version,
'dirty' => dirty?,
}
end
def years
Dir[post_path('20*')].map { |x| File.basename(x) }.sort
end
def months
years.map do |year|
# hack: month dirs (and only month dirs) are always 2 characters in length
Dir[post_path("#{year}/??")].map { |x| [year, File.basename(x)] }
end.flatten(1).sort
end
def posts_for_year(year)
posts = []
1.upto(12) do |n|
month = n < 10 ? "0#{n}" : "#{n}"
posts += posts_for_month(year, month)
end
posts
end
def posts_for_month(year, month)
read_posts(File.join(year, month))
end
def drafts
read_posts('drafts', draft: true)
end
def get_post(year, month, id)
read_post(File.join(year, month), id)
end
def get_draft(id)
read_post('drafts', id, draft: true)
end
def preview_post(year, month, id)
read_rendered_post(File.join(year, month), id)
end
def preview_draft(id)
read_rendered_post('drafts', id)
end
def create_post(title, body, url, extra_fields = nil)
if !title || title.strip.length == 0
title = find_title(url)
end
unless title
raise "cannot find title for #{url}"
end
extra_fields ||= {}
fields = extra_fields.merge({
title: title,
link: url,
body: body,
})
post = Post.new(fields)
begin
existing_post = read_post(post.dir, post.id, extra_fields)
rescue InvalidDataError => e
$stderr.puts "[HarpBlog#create_post] deleting post with invalid data: #{e.message}"
delete_post_from_dir(post.dir, post.id)
existing_post = nil
end
if existing_post
raise PostExistsError.new("post exists: #{post.dir}/#{post.id}")
else
save_post('create post', post)
end
end
def update_post(post, title, body, link)
post.title = title
post.body = body
post.link = link
save_post('update post', post)
end
def delete_post(year, month, id)
delete_post_from_dir(File.join(year, month), id)
end
def delete_draft(id)
delete_post_from_dir('drafts', id)
end
def publish_post(post)
if post.draft?
new_post = create_post(post.title, post.body, post.link)
delete_post_from_dir('drafts', post.id)
new_post
else
raise PostAlreadyPublishedError.new("post is already published: #{post.dir}/#{post.id}")
end
end
def unpublish_post(post)
if post.draft?
raise PostNotPublishedError.new("post is not published: #{post.dir}/#{post.id}")
else
new_post = create_post(post.title, post.body, post.link, draft: true)
delete_post_from_dir(post.dir, post.id)
new_post
end
end
def publish(env)
target = env.to_s == 'production' ? 'publish' : 'publish_beta'
run("make #{target}")
end
def compile
run('make compile')
@mutated = false
end
def compile_if_mutated
if @mutated
compile
true
end
end
private
def find_title(url)
@title_finder.find_title(url)
end
def path_for(*components)
File.join(@path, *components)
end
def post_path(dir, id = nil)
args = ['public/posts', dir]
args << "#{id}.md" if id
path_for(*args)
end
def rendered_post_path(dir, id)
path_for('www/posts', dir, id, 'index.html')
end
def read_posts(post_dir, extra_fields = nil)
extra_fields ||= {}
post_data = read_post_data(post_path(post_dir))
post_data.sort_by do |k, v|
(v['timestamp'] || Time.now).to_i
end.map do |id, fields|
fields[:id] = id
unless extra_fields[:draft]
fields[:slug] = id
end
post_filename = post_path(post_dir, id)
fields[:body] = File.read(post_filename)
Post.new(fields.merge(extra_fields))
end
end
def read_post(post_dir, id, extra_fields = nil)
post_filename = post_path(post_dir, id)
post_data = read_post_data(post_path(post_dir))
if File.exist?(post_filename) && fields = post_data[id]
fields[:body] = File.read(post_filename)
if extra_fields
fields.merge!(extra_fields)
end
fields[:id] = id
unless fields[:draft]
fields[:slug] = id
end
Post.new(fields)
elsif fields
message = "missing post body for #{post_dir}/#{id}: #{post_filename}"
$stderr.puts "[HarpBlog#read_post] #{message}"
raise InvalidDataError.new(message)
elsif File.exist?(post_filename)
message = "missing metadata for #{post_dir}/#{id}: #{post_dir}/_data.json"
$stderr.puts "[HarpBlog#read_post] #{message}"
raise InvalidDataError.new(message)
end
end
def read_rendered_post(post_dir, id)
post_filename = rendered_post_path(post_dir, id)
if File.exists?(post_filename)
File.read(post_filename)
else
message = "missing rendered HTML for post #{post_dir}/#{id} at path #{post_filename}"
$stderr.puts "[HarpBlog#read_rendered_post] #{message}"
raise InvalidDataError.new(message)
end
end
def save_post(action, post)
git_fetch
git_reset_hard('origin/master')
begin
write_post(post)
git_commit(action, post.title, post_path(post.dir))
git_push
@mutated = true
post
rescue => e
$stderr.puts "#{e.class}: #{e.message}"
$stderr.puts e.backtrace
git_reset_hard
raise PostSaveError.new('failed to save post', e)
end
end
def write_post(post)
post_dir = post_path(post.dir)
unless post.draft?
ensure_post_dir_exists(post_dir)
end
write_post_body(post_dir, post.id, post.body)
begin
write_post_index(post_dir, post.id, post.persistent_fields)
rescue => e
$stderr.puts "#{e.class}: #{e.message}"
$stderr.puts e.backtrace
delete_post_body(post_dir, post.id)
raise e
end
end
def delete_post_from_dir(post_dir, id)
post_dir = post_path(post_dir)
delete_post_body(post_dir, id)
delete_post_index(post_dir, id)
@mutated = true
end
def write_post_body(dir, id, body)
post_filename = File.join(dir, "#{id}.md")
write_file(post_filename, body)
end
def delete_post_body(dir, id)
post_filename = File.join(dir, "#{id}.md")
delete_file(post_filename)
end
def write_post_index(dir, id, fields)
post_data = read_post_data(dir)
post_data[id] = fields
write_post_data(dir, post_data)
end
def delete_post_index(dir, id)
post_data = read_post_data(dir)
if post_data[id]
post_data.delete(id)
write_post_data(dir, post_data)
end
end
def ensure_post_dir_exists(dir)
monthly_index_filename = File.join(dir, 'index.ejs')
unless File.exist?(monthly_index_filename)
source = File.join(dir, '../../2006/02/index.ejs')
cp(source, monthly_index_filename)
end
yearly_index_filename = File.join(dir, '../index.ejs')
unless File.exist?(yearly_index_filename)
source = File.join(dir, '../../2006/index.ejs')
cp(source, yearly_index_filename)
end
end
def read_post_data(dir)
post_data_filename = File.join(dir, '_data.json')
if File.exist?(post_data_filename)
JSON.parse(File.read(post_data_filename))
else
{}
end
end
def write_post_data(dir, data)
post_data_filename = File.join(dir, '_data.json')
json = JSON.pretty_generate(data)
write_file(post_data_filename, json)
end
def ensure_dir_exists(dir)
unless File.directory?(dir)
if @dry_run
puts ">>> mkdir -p '#{dir}'"
else
FileUtils.mkdir_p(dir)
end
end
end
def cp(source, destination, clobber = false)
ensure_dir_exists(File.dirname(destination))
if !File.exist?(destination) || clobber
if @dry_run
puts ">>> cp '#{source}' '#{destination}'"
else
FileUtils.cp(source, destination)
end
end
end
def write_file(filename, data)
ensure_dir_exists(File.dirname(filename))
if @dry_run
puts ">>> write file '#{filename}', contents:"
puts data
else
File.write(filename, data)
end
end
def delete_file(filename)
if File.exist?(filename)
if @dry_run
puts ">>> unlink '#{filename}'"
else
File.unlink(filename)
end
end
end
def quote(s)
s.gsub('"', '\\"')
end
def run(cmd, safety = :destructive)
if safety == :destructive && @dry_run
puts ">>> cd '#{@path}' && #{cmd}"
else
`cd '#{@path}' && #{cmd} 2>&1`
end
end
def git_sha
run('git log -n1 | head -n1 | cut -d" " -f2', :nondestructive).strip
end
def git_commit(action, title, *files)
quoted_files = files.map { |f| "\"#{quote(f)}\"" }
message = "#{action} '#{quote(title)}'"
run("git add -A #{quoted_files.join(' ')} && git commit -m \"#{message}\"")
end
def git_fetch
run('git fetch')
end
def git_reset_hard(ref = nil)
args = ref ? "'#{ref}'" : ''
run("git reset --hard #{args}")
end
def git_push(force = false)
args = force ? '-f' : ''
run("git push #{args}")
end
end