forked from sketchplugins/plugin-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
539 lines (433 loc) · 15.9 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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
require 'json'
require 'time'
require "./lib/plugin-directory-utils"
GITHUB_AUTH_TOKEN = `git config com.bohemiancoding.qa.token`.strip
USERNAME = `git config github.user`.strip
def fix_plugin_title plugin
if (plugin['name'] == plugin['title'] && !(IGNORE.include? plugin['title'])) || plugin['title'] == nil
puts "— #{plugin['name']} - #{plugin['title']}: Plugin title is wrong, fixing"
plugin['title'] = titlefy(plugin['name'])
end
end
def get_plugins_from_json
data = IO.read('plugins.json')
data.force_encoding('utf-8')
JSON.parse(data)
end
def is_plugin_too_old? plugin
if plugin['lastUpdated']
last_update = Time.parse(plugin['lastUpdated'])
return (Time.now - last_update) > 60_000_000
else
return false
end
end
desc "Clones all repositories to the 'clones' folder"
task :clone do
mkdir "clones" unless File.directory? "clones"
get_plugins_from_json.each do |plugin|
name = plugin['name']
owner = plugin['owner']
url = "https://github.com/#{owner}/#{name}"
system("git clone #{url} clones/#{owner}-#{name}")
end
end
desc "Updates all clones in the 'clones' folder"
task :update do
get_plugins_from_json.each do |plugin|
name = plugin['name']
owner = plugin['owner']
url = "https://github.com/#{owner}/#{name}"
if File.directory? "clones/#{owner}-#{name}"
puts "Updating #{owner}-#{name} to latest version"
system("cd clones/#{owner}-#{name}/ && git up")
else
puts "Cloning #{owner}-#{name} to latest version"
system("git clone #{url} clones/#{owner}-#{name}")
end
end
end
desc "Generate README.md from plugins.json"
task :readme do
plugins = get_plugins_from_json
output = <<EOF
# Sketch Plugin Directory
A list of Sketch plugins hosted at GitHub, in alphabetical order.
**Note:** if you want to add yours, just open an issue with the URL, send a pull request, or use [skpm](https://skpm.io) to develop it (skpm takes care of publishing automatically). Once your plugin is added here, it will appear on [the website](https://sketchapp.com/extensions/plugins) as soon as we make a new deploy (that can take anywhere from a few minutes to a few days)
EOF
plugins.sort_by { |k| [ (k["title"] ? k["title"].downcase : k["name"].downcase), (k["owner"] ? k["owner"].downcase : k["author"].downcase) ] }.each do |plugin|
puts "Processing #{plugin}"
name = plugin['name']
title = plugin['title'] || name
owner = plugin['owner']
author = plugin['author'] || owner
url = plugin['homepage'] || "https://github.com/#{owner.downcase}/#{name.downcase}"
desc = plugin['description'].strip
if is_plugin_too_old? plugin
puts "#{title} is too old, lastUpdated: #{plugin['lastUpdated']}"
next
end
if plugin['hidden'] == true
next
end
output << "- [#{title}](#{url}), by #{author}:"
if !desc.empty?
output << " #{desc}"
end
output << "\n"
end
output << "\n\n## Sorted by last update (newest on top)\n\n"
# plugins.reject { |k| k["lastUpdated"] == nil }.sort_by { |k| Date.parse(k["lastUpdated"]).strftime("%s").to_i }.reverse.each do |plugin|
plugins.reject { |k| k["lastUpdated"] == nil }.sort_by { |k| Time.parse(k["lastUpdated"]) }.reverse.each do |plugin|
if is_plugin_too_old? plugin
next
end
if plugin['hidden'] == true
next
end
name = plugin['name']
owner = plugin['owner']
author = plugin['author'] || owner
title = plugin['title'] || name
url = plugin['homepage'] || "https://github.com/#{owner.downcase}/#{name.downcase}"
desc = plugin['description'].strip
output << "- [#{title}](#{url}), by #{author}:"
if !desc.empty?
output << " #{desc}"
end
output << "\n"
end
IO.write('README.md',output)
end
desc "Fix plugin titles"
task :fixtitles do
json_data = get_plugins_from_json
json_data.each do |plugin|
fix_plugin_title plugin
end
File.open("plugins-titles-fixed.json","w") do |f|
f.write(JSON.pretty_generate(json_data, :indent => " "))
end
end
desc "Update `lastUpdated` field for all plugin in JSON"
task :lastUpdated do
require 'octokit'
client = Octokit::Client.new(:access_token => GITHUB_AUTH_TOKEN)
json_data = get_plugins_from_json
json_data.each do |plugin|
# Only check for last push date for plugins with a repo
if plugin['owner'] && plugin['name']
puts "Updating #{titlefy(plugin['name'])}"
plugin_url = plugin['owner'] + "/" + plugin['name']
begin
repo = client.repo(plugin_url)
user = client.user(plugin['owner'])
puts "— Plugin was updated at #{repo.pushed_at}"
plugin['lastUpdated'] = repo.pushed_at
rescue Exception => e
puts "— Repo not available"
end
# if plugin['name'] == plugin['title'] && plugin['title'] == nil
# puts "— Plugin title is wrong, fixing"
# plugin['title'] = titlefy(plugin['name'])
# end
end
puts
end
File.open("plugins.json","w") do |f|
f.write(JSON.pretty_generate(json_data, :indent => " "))
end
end
desc "List authors"
task :authors do
plugins = get_plugins_from_json
authors = plugins.collect { |plugin| (plugin['author'] ? plugin['author'].downcase + " (" + plugin['owner'].downcase + ")" : plugin['owner'].downcase ) }.uniq.sort
puts authors
puts "\n" + authors.size.to_s + " unique authors."
end
desc "Interactive JSON: prompt user for information about their plugin and generate plugins.json and README.md"
task :interactive do
begin
plugin = prompt_for_plugin()
# Save JSON
save_json(plugin)
STDOUT.puts "plugins.json saved."
# Create readme
Rake::Task["readme"].invoke
STDOUT.puts "README.md updated."
STDOUT.puts "To commit your plugin to the plugin directory, open a pull request for https://github.com/sketchplugins/plugin-directory/."
rescue SystemExit, Interrupt # Allow for interupt to leave script
exit
end
end
def prompt_for_plugin()
if prompt_yes_no("Is your plugin hosted on GitHub?")
return prompt_gh_plugin()
else
return prompt_inputs({}, false)
end
end
def prompt_gh_plugin()
STDOUT.puts "What is the URL of your GitHub project?"
input = STDIN.gets.strip
matches = input.match('(https?://)?github.com/([a-zA-Z0-9\-_]+)/([a-zA-Z0-9\-_]+)/?')
owner = matches[2]
name = matches[3]
if owner && name
STDOUT.puts "Repository owner: '#{owner}', name: '#{name}'"
# Get info from GitHub
gh_defaults = get_gh_defaults(owner, name)
# Use branch to get manifest.json, but don't include in final saved JSON
branch = gh_defaults.delete("branch")
# Get info from manifest.json file hosted on Git?Hub
manifest_defaults = get_manifest_defaults(owner, name, branch)
# Combine info into default values
defaults = gh_defaults.merge(manifest_defaults)
# Prompt for plugin
return prompt_inputs(defaults, true)
else
STDOUT.puts "ERROR: '#{input}' is not a valid GitHub repoistory."
prompt_gh_url()
end
end
def prompt_inputs(defaults, has_github)
plugin = defaults
if !has_github
plugin['owner'] = prompt_owner()
end
plugin['title'] = prompt_item("Enter a title for your plugin", defaults["title"], !has_github)
plugin['description'] = prompt_item("Describe your plugin in 1-2 sentences", defaults["description"], true)
plugin['homepage'] = prompt_item("Enter the homepage for your plugin", defaults["homepage"], !has_github)
plugin['author'] = prompt_item("Enter your name", defaults["author"], false)
# Filter out nil values
plugin = plugin.select{|k,v| v != nil}
# Get string representation of plugin options
str = plugin.map{|k,v| "\t#{k}: #{v}"}.join("\n")
STDOUT.puts "Your plugin:\n" + str
if !prompt_yes_no("Is the above information correct?")
return prompt_inputs(defaults, has_github)
end
return plugin
end
def prompt_owner()
owner = prompt_item("Enter the person or organisation who owns this plugin (no spaces or special characters)", nil, true)
if !(owner =~ /^[a-zA-Z0-9_\-]+$/)
STDOUT.puts "ERROR: Owner can only contain letters, numbers, hyphen, or underscores."
return prompt_owner()
end
return owner
end
def prompt_item(prompt, default, required)
if required
prompt = prompt + " (required)"
else
prompt = prompt + " (optional)"
end
prompt = prompt + ": "
if default
prompt = prompt + "#{default}"
end
STDOUT.puts prompt
input = STDIN.gets.strip
if input.to_s.empty? && default
return default
elsif input.to_s.empty? && !required
return nil
elsif !(input.to_s.empty?)
return input
end
STDOUT.puts "ERROR: Required field"
return prompt_item(prompt, default, required)
end
def get_gh_defaults(owner, name)
require 'octokit'
client = Octokit::Client.new()
repo_name = "#{owner}/#{name}"
defaults = {}
STDOUT.puts "Checking for '#{repo_name}' on GitHub..."
begin
repo = client.repo(repo_name)
defaults["owner"] = owner
defaults["name"] = name
if !(repo.homepage.to_s.empty?)
defaults["homepage"] = repo.homepage
else
defaults["homepage"] = repo.html_url
end
if !(repo.description.to_s.empty?)
defaults["description"] = repo.description
end
defaults["lastUpdated"] = repo.updated_at
defaults["branch"] = repo.default_branch
return defaults
rescue SystemExit, Interrupt # Allow for interupt to leave script
exit
rescue # Error contacting GitHub API
STDOUT.puts "ERROR: The repository '#{repo_name}' does not exist or is not publically accessible on GitHub."
exit
end
end
def get_manifest_defaults(owner, name, branch)
content = get_manifest_content(owner, name, branch)
if !content
return {}
end
defaults = {}
begin
manifest = JSON.parse(content)
name = manifest['name']
description = manifest['description']
author = manifest['author']
homepage = manifest['homepage']
identifier = manifest['identifier']
version = manifest['version']
error = false
if identifier.to_s.empty?
error = true
STDOUT.puts "ERROR: The manifest.json file does not contain an identifier."
end
if version.to_s.empty?
error = true
STDOUT.puts "ERROR: The manifest.json file does not contain a version."
end
if error
STDOUT.puts "\tWe suggest that you update your plugin's manifest.json file to contain these values before adding it to the plugin-directory."
STDOUT.puts "\tSee Sketch's requirements for plugin bundles: http://developer.sketchapp.com/introduction/plugin-bundles/"
prompt_continue()
end
if !(name.to_s.empty?)
defaults['title'] = name
end
if !(author.to_s.empty?)
defaults['author'] = author
end
if !(homepage.to_s.empty?)
defaults['homepage'] = homepage
end
if !(description.to_s.empty?)
defaults['description'] = description
end
return defaults
rescue JSON::ParserError
STDOUT.puts "ERROR: The manifest.json file for this plugin is not valid JSON."
STDOUT.puts "\tWe suggest that you update your plugin to contain a valid manifest.json file before adding it to the plugin-directory."
STDOUT.puts "\tTry using a JSON validator to check its contents: https://jsonformatter.curiousconcept.com/"
prompt_continue()
return {}
end
end
def get_manifest_content(owner, name, branch)
require 'octokit'
client = Octokit::Client.new()
repo_name = "#{owner}/#{name}"
STDOUT.puts "Checking for manifest.json file in '#{repo_name}' on GitHub..."
begin
tree = client.tree(repo_name, branch, :recursive => true)
tree.tree.each do |item|
path = item.path
if !(path.downcase.end_with? ".sketchplugin/contents/sketch/manifest.json")
next
end
sha = item.sha
blob = client.blob(repo_name, sha)
encoding = blob.encoding
content = blob.content
if encoding == "base64"
content = Base64.decode64(content)
end
return content
end
STDOUT.puts "ERROR: The plugin in the repository '#{repo_name}' does not have a manifest.json file."
STDOUT.puts "\tWe suggest that you update your plugin to contain a valid manifest.json file before adding it to the plugin-directory."
STDOUT.puts "\tSee Sketch's requirements for plugin bundles: http://developer.sketchapp.com/introduction/plugin-bundles/"
prompt_continue()
return nil
rescue SystemExit, Interrupt # Allow for interupt to leave script
exit
rescue # Error contacting GitHub API
puts e
STDOUT.puts "ERROR: The repository '#{repo_name}' does not exist or is not publically accessible on GitHub."
exit
end
end
def prompt_continue()
if !prompt_yes_no("Are you sure you want to continue?")
exit
end
end
def prompt_yes_no(prompt)
STDOUT.puts prompt + " (y/n)"
input = STDIN.gets.strip
if input.downcase.start_with?('y')
return true
elsif input.downcase.start_with?('n')
return false
else
STDOUT.puts "ERROR: Respond with 'y' or 'n'."
return prompt_yes_no(prompt)
end
end
def save_json(plugin)
# Get current plugins
plugins = get_plugins_from_json
# Check for duplicates
existing_plugin_index = check_for_duplicates(plugin, plugins)
if existing_plugin_index >= 0
if prompt_yes_no("Would you like to update the existing plugin instead?")
plugins[existing_plugin_index] = plugin
else
exit
end
else
plugins << plugin
end
File.open("plugins.json","w") do |f|
f.write(JSON.pretty_generate(plugins, :indent => " "))
end
end
def check_for_duplicates(plugin, plugins)
puts "Checking for duplicates for #{plugin}"
plugins.each_with_index do |saved_plugin, index|
plugin_name = plugin["name"] || plugin["title"]
plugin_owner = plugin["owner"] || plugin["author"]
saved_plugin_name = saved_plugin["name"] || saved_plugin["title"]
saved_plugin_owner = saved_plugin["owner"] || saved_plugin["author"]
puts "#{plugin_name} - #{plugin_owner}"
puts "#{saved_plugin_name} - #{saved_plugin_owner}"
if plugin_name.downcase == saved_plugin_name.downcase && plugin_owner.downcase == saved_plugin_owner.downcase
STDOUT.puts "ERROR: Found another plugin with the same owner & title."
return index
end
end
return -1
end
desc "Print Star Ranking"
task :stars do
require 'octokit'
client = Octokit::Client.new(:access_token => GITHUB_AUTH_TOKEN)
json_data = get_plugins_from_json
json_data.each do |plugin|
# Only check for last push date for plugins with a repo
if plugin['owner'] && plugin['name']
plugin_url = plugin['owner'] + "/" + plugin['name']
begin
repo = client.repo(plugin_url)
puts "#{repo.watchers},#{titlefy(plugin['name'])}"
# user = client.user(plugin['owner'])
# puts "— Plugin was updated at #{repo.pushed_at}"
# plugin['lastUpdated'] = repo.pushed_at
rescue Exception => e
puts "— Repo not available for #{plugin_url}"
end
# if plugin['name'] == plugin['title'] && plugin['title'] == nil
# puts "— Plugin title is wrong, fixing"
# plugin['title'] = titlefy(plugin['name'])
# end
end
end
# File.open("plugins.json","w") do |f|
# f.write(JSON.pretty_generate(json_data, :indent => " "))
# end
end
desc "Default: generate README.md from plugin"
task :default => :readme