website/Rakefile

63 lines
2.1 KiB
Ruby
Raw Normal View History

2023-04-25 10:59:34 +00:00
# frozen_string_literal: true
require 'json'
require 'open3'
require 'shellwords'
github_api_headers = {
'Header' => 'application/vnd.github+json',
'X-GitHub-Api-Version' => '2022-11-28'
}
github_api_headers['Authorization'] = "Token #{ENV['GITHUB_API_BEARER_TOKEN']}" if ENV['GITHUB_API_BEARER_TOKEN']
desc 'Build the site in Netlify with the given context'
2023-05-01 10:26:40 +00:00
task :build, [:context, :base_url] => [:optimize_avatars] do |_, args|
2023-04-25 10:59:34 +00:00
args.with_defaults(context: 'production')
draft_args = '--environment development --buildDrafts --buildFuture --buildExpired' unless args.context == 'production'
base_uri_args = "-b #{args.base_url}" if args.base_url
# Unfortunately, we have to pass it inside of another Nix shell since
# Asciidoctor doesn't want to be found when executed in here for whatever
# reason.
sh "nix develop -c hugo #{draft_args} #{base_uri_args} --destination public"
end
2023-05-01 10:26:40 +00:00
desc 'Export the avatar images'
task :export_avatars, [:base_dir, :output_dir, :output_extension] do |_, args|
args.with_defaults(base_dir: './assets/svg/', output_dir: './static/icons/', output_extension: 'webp')
Dir.glob('avatars/**/*.svg', base: args.base_dir) do |f|
output_file = "#{File.dirname(f)}/#{File.basename(f, '.svg')}.#{args.output_extension}"
sh "magick #{args.base_dir}#{f} -quality 10 #{args.output_dir}#{output_file}"
end
end
2023-04-25 10:59:34 +00:00
desc 'Build the webring to be embedded with the site'
task :build_webring, [:limit, :input, :output, :file] do |_, args|
args.with_defaults(
limit: 5,
file: './data/blogs.json',
input: './assets/templates/openring-input.html',
output: './layouts/partials/openring.html'
)
File.open args.file do |f|
feeds = JSON.parse(f.read).sample(args.limit)
feeds.map! { |feed| "-s #{Shellwords.escape(feed)}" }
command = ['openring', '-n', args.limit.to_s]
command.append(*feeds)
Open3.pipeline command.join(' '), in: args.input, out: args.output
end
end
desc 'Create a web server'
task :serve do
sh 'nix develop -c hugo serve --buildFuture --verboseLog --destination public'
end
desc 'Update the Hugo modules for this project'
task :update do
sh 'hugo mod get ./... && hugo mod tidy'
end