forked from ruby/www.ruby-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
206 lines (164 loc) · 4.91 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# encoding: utf-8
require 'rubygems'
begin
require 'bundler/setup'
rescue LoadError => e
warn e.message
warn "Run `gem install bundler` to install Bundler"
exit -1
end
HOST = 'www.ruby-lang.org'
LANGUAGES = %w[bg de en es fr id it ja ko pl pt ru tr vi zh_cn zh_tw]
task :default => []
desc "Generates the Jekyll site"
task :generate do
require 'jekyll'
# workaround for LANG=C environment
module Jekyll::Convertible
Encoding.default_external = Encoding::UTF_8
end
options = Jekyll.configuration({'auto' => false, 'server' => false})
puts "Building site: #{options['source']} -> #{options['destination']}"
$stdout.flush
Jekyll::Site.new(options).process
end
desc "Generates the Jekyll site and starts local server"
task :preview do
sh 'jekyll serve --watch'
end
namespace :new_post do
def create_template(lang)
url_title = 'short-title'
title = 'Post Title'
creation_time = Time.now.utc
filename = creation_time.strftime("%Y-%m-%d-#{url_title}.md")
path = File.join(lang, 'news', '_posts', filename)
content = <<-TEMPLATE.gsub(/^ */, '')
---
layout: news_post
title: "#{title}"
author: "Unknown Author"
translator:
date: #{creation_time}
lang: #{lang}
---
Content.
TEMPLATE
$stderr.print "Creating template `#{path}'... "
begin
if File.exist?(path)
warn "Could not create template, `#{path}' already exists."
else
File.open(path, 'w') {|f| f.write content }
warn 'done.'
end
rescue => e
warn e.message
end
end
desc "Creates a news post template for language `lang'"
task :lang do
puts 'Please specify one of the valid language codes:'
puts LANGUAGES.join(', ') << '.'
end
LANGUAGES.each do |lang|
task lang.to_sym do
create_template(lang)
end
end
end
namespace :check do
def read_yaml(filename)
require 'yaml'
match_data = File.read(filename).match(/\A(---\s*\n.*?\n?)^(---\s*$\n?)/m)
data = YAML.load(match_data[1]) if match_data
data || {}
end
def author_variable_defined?(filename)
read_yaml(filename).has_key?('author')
end
def lang_variable_defined?(filename)
read_yaml(filename).has_key?('lang')
end
def pub_date_utc(filename)
date = read_yaml(filename)['date']
date ? date.getutc.strftime('%Y/%m/%d') : nil
end
desc "Checks for missing author variables in news posts"
task :author do
print "Checking for missing author variables in news posts..."
md_files = Dir["**/_posts/*.md"]
author_missing = md_files.select {|fn| !author_variable_defined?(fn) }
if author_missing.empty?
puts " ok"
else
puts "\nNo author variable defined in:"
puts author_missing.map {|s| " #{s}\n"}.join
end
end
desc "Checks for missing lang variables in markdown files"
task :lang do
print "Checking for missing lang variables in markdown files..."
md_files = Dir["**/*.md"]
skip_patterns = [/README.md/, %r{[^/]*/examples/}]
skip_patterns.each do |pattern|
md_files.delete_if {|fn| fn =~ pattern }
end
lang_missing = md_files.select {|fn| !lang_variable_defined?(fn) }
if lang_missing.empty?
puts " ok"
else
puts "\nNo lang variable defined in:"
puts lang_missing.map {|s| " #{s}\n"}.join
end
end
desc "Checks publication dates (UTC) for consistency with filename"
task :pubdates do
print "Checking for date mismatch in posts (filename / YAML front matter)..."
posts = Dir["**/_posts/*.md"]
date_mismatch = []
posts.each do |post|
filename_date = File.basename(post).split('-',4)[0..2].join('/')
yaml_date = pub_date_utc(post)
date_mismatch << post if yaml_date && yaml_date != filename_date
end
if date_mismatch.empty?
puts " ok"
else
puts "\nDate mismatch in:"
puts date_mismatch.map {|s| " #{s}\n"}.join
end
end
desc "Checks for broken links on http://localhost:4000/"
task :links do
gem 'spidr', '~> 0.4'
require 'spidr'
url_map = Hash.new { |hash,key| hash[key] = [] }
Spidr.site('http://localhost:4000/') do |agent|
LANGUAGES.each do |lang|
agent.enqueue("http://localhost:4000/#{lang}/")
end
agent.every_link do |origin,dest|
url_map[dest] << origin
end
agent.every_page do |page|
if page.code == 404
origin = url_map[page.url].last
dest = page.url.request_uri
external = URI::HTTP.build(
:host => HOST,
:path => page.url.path,
:query => page.url.query
)
if Net::HTTP.get_response(external).code == '404'
puts "Old Broken Link: #{origin} -> #{dest}"
else
puts "New Broken Link: #{origin} -> #{dest}"
end
end
end
end
end
end
desc "Carries out some tests"
task :check => ['check:lang', 'check:author', 'check:pubdates']