-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
295 lines (248 loc) · 8.15 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
require 'dotenv'
require 'fileutils'
require 'jekyll'
require 'launchy'
require 'paint'
require 'rake'
require 'rbconfig'
require 's3_uploader'
require 'shellwords'
require 'tmpdir'
require 'yaml'
Dotenv.load
desc 'Update staging version on Amazon S3 (with drafts)'
task :staging, :with_drafts, :open_browser do |t,args|
args.with_defaults with_drafts: true, open_browser: true
with_drafts = !!args[:with_drafts].to_s.match(/\Atrue\Z/i)
open_browser = !!args[:open_browser].to_s.match(/\Atrue\Z/i)
source = File.expand_path File.dirname(__FILE__)
puts Paint["\nCreating temporary directory...", :yellow]
# create a temporary directory
Dir.mktmpdir do |tmp|
# generate jekyll site into temporary directory
puts Paint["\nGenerating site...\n", :yellow]
Dir.chdir source
conf = Jekyll.configuration({
'source' => source,
'destination' => tmp,
'show_drafts' => with_drafts
})
Jekyll::Site.new(conf).process
unless ENV['S3_KEY'] && ENV['S3_SECRET']
raise "The $S3_KEY and $S3_SECRET environment variables must be set to upload to Amazon S3"
end
# upload to s3
puts Paint["\nUploading to Amazon S3...\n", :yellow]
Dir.chdir tmp
S3Uploader.upload_directory(tmp, 'probedock-blog-staging', {
region: 'eu-central-1',
threads: 4
})
url = 'http://probedock-blog-staging.s3-website.eu-central-1.amazonaws.com/'
puts
puts Paint["All good!", :bold, :green]
puts
puts url
puts
Launchy.open url if open_browser
end
end
desc 'Update GitHub pages (compile site in "source" branch and commit to "master")'
task :pages, :open_browser do |t,args|
args.with_defaults open_browser: true
open_browser = !!args[:open_browser].to_s.match(/\Atrue\Z/i)
source = File.expand_path File.dirname(__FILE__)
remote = 'git@github.com:probedock/probedock.github.io.git'
Dir.chdir source
current_branch = `git symbolic-ref --short HEAD`
current_hash = `git log --pretty=format:'%h' -n 1`
puts Paint["\nCreating temporary repo...", :yellow]
# create a temporary directory
Dir.mktmpdir do |tmp|
# initialize a new repo
Dir.chdir tmp
raise 'ERROR: could not initialize repo' unless system "git init &>/dev/null"
# pull latest changes from local master (fast)
raise 'ERROR: could not add local remote to repo' unless system "git remote add local file://#{Shellwords.shellescape source}"
raise 'ERROR: could not pull local master branch' unless system "git pull local master &>/dev/null"
# pull latest changes from remote master
raise 'ERROR: could not add GitHub remote to repo' unless system "git remote add origin #{remote}"
raise 'ERROR: could not pull master branch from GitHub' unless system "git pull origin master &>/dev/null"
# generate jekyll site into temporary directory
puts Paint["\nGenerating site...\n", :yellow]
Dir.chdir source
conf = Jekyll.configuration({
'source' => source,
'destination' => tmp
})
Jekyll::Site.new(conf).process
# commit changes
puts Paint["\nCommitting...\n", :yellow]
Dir.chdir tmp
raise 'ERROR: could not stage changes' unless system "git add -A"
raise 'ERROR: could not stage changes' unless system "git ls-files --deleted -z | xargs -0 git rm"
raise 'ERROR: could not commit changes' unless system %/git commit -m "Generated from #{current_branch}@#{current_hash}."/
# push to remote master
puts Paint["\nPushing...\n", :yellow]
raise 'ERROR: could not push to master' unless system "git push origin master"
url = 'http://probedock.io/'
puts
puts Paint["All good!", :bold, :green]
puts
puts url
puts
Launchy.open url if open_browser
end
end
#############################################################
# From https://github.com/gummesson/jekyll-rake-boilerplate #
#############################################################
# Load the configuration file
CONFIG = YAML.load_file("_config.yml")
# Get and parse the date
DATE = Time.now.strftime("%Y-%m-%d")
TIME = Time.now.strftime("%H:%M:%S")
POST_TIME = DATE + ' ' + TIME
# Directories
POSTS = "_posts"
DRAFTS = "_drafts"
# Execute a system command
def execute(command)
system "#{command}"
end
# Chech the title
def check_title(title)
if title.nil? or title.empty?
raise "Please add a title to your file."
end
end
# Transform the filename and date to a slug
def transform_to_slug(title, extension)
characters = /("|'|!|\?|:|\s\z)/
whitespace = /\s/
"#{title.gsub(characters,"").gsub(whitespace,"-").downcase}.#{extension}"
end
# Read the template file
def read_file(template)
File.read(template)
end
# Save the file with the title in the YAML front matter
def write_file(content, title, directory, filename)
parsed_content = "#{content.sub("title:", "title: \"#{title}\"")}"
parsed_content = "#{parsed_content.sub("date:", "date: #{POST_TIME}")}"
File.write("#{directory}/#{filename}", parsed_content)
puts "#{filename} was created in '#{directory}'."
end
# Create the file with the slug and open the default editor
def create_file(directory, filename, content, title, editor)
FileUtils.mkdir(directory) unless File.exists?(directory)
if File.exists?("#{directory}/#{filename}")
raise "The file already exists."
else
write_file(content, title, directory, filename)
if editor && !editor.nil?
sleep 1
execute("#{editor} #{directory}/#{filename}")
end
end
end
# Get the "open" command
def open_command
if RbConfig::CONFIG["host_os"] =~ /mswin|mingw/
"start"
elsif RbConfig::CONFIG["host_os"] =~ /darwin/
"open"
else
"xdg-open"
end
end
desc "Create a post in _posts"
task :post, :title do |t, args|
title = args[:title]
template = CONFIG["post"]["template"]
extension = CONFIG["post"]["extension"]
editor = CONFIG["editor"]
check_title(title)
filename = "#{DATE}-#{transform_to_slug(title, extension)}"
content = read_file(template)
create_file(POSTS, filename, content, title, editor)
end
# rake draft["Title"]
desc "Create a post in _drafts"
task :draft, :title do |t, args|
title = args[:title]
template = CONFIG["post"]["template"]
extension = CONFIG["post"]["extension"]
editor = CONFIG["editor"]
check_title(title)
filename = transform_to_slug(title, extension)
content = read_file(template)
create_file(DRAFTS, filename, content, title, editor)
end
# rake publish
desc "Move a post from _drafts to _posts"
task :publish do
extension = CONFIG["post"]["extension"]
files = Dir["#{DRAFTS}/*.#{extension}"]
files.each_with_index do |file, index|
puts "#{index + 1}: #{file}".sub("#{DRAFTS}/", "")
end
print "> "
number = $stdin.gets
if number =~ /\D/
filename = files[number.to_i - 1].sub("#{DRAFTS}/", "")
FileUtils.mv("#{DRAFTS}/#{filename}", "#{POSTS}/#{DATE}-#{filename}")
puts "#{filename} was moved to '#{POSTS}'."
else
puts "Please choose a draft by the assigned number."
end
end
# rake page["Title"]
# rake page["Title","Path/to/folder"]
desc "Create a page (optional filepath)"
task :page, :title, :path do |t, args|
title = args[:title]
template = CONFIG["page"]["template"]
extension = CONFIG["page"]["extension"]
editor = CONFIG["editor"]
directory = args[:path]
if directory.nil? or directory.empty?
directory = "./"
else
FileUtils.mkdir_p("#{directory}")
end
check_title(title)
filename = transform_to_slug(title, extension)
content = read_file(template)
create_file(directory, filename, content, title, editor)
end
# rake watch
# rake watch[number]
# rake watch["nodrafts"]
desc "Serve and watch the site (with post limit or drafts)"
task :watch, :option do |t, args|
option = args[:option]
if option.nil? or option.empty?
execute("jekyll serve --watch --drafts")
else
if option == "nodrafts"
execute("jekyll serve --watch")
else
execute("jekyll serve --watch --limit_posts #{option}")
end
end
end
# rake preview
desc "Launch a preview of the site in the browser"
task :preview do
port = CONFIG["port"]
if port.nil? or port.empty?
port = 4000
end
Thread.new do
sleep 3
puts "Launching browser for preview..."
execute("#{open_command} http://localhost:#{port}/")
end
Rake::Task[:watch].invoke
end