-
Notifications
You must be signed in to change notification settings - Fork 109
/
_this-week-in-rails.rb
executable file
·133 lines (105 loc) · 3.24 KB
/
_this-week-in-rails.rb
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
#!/usr/bin/env ruby
# frozen_string_literal: true
#
# Generate a new "This Week in Rails" blog post.
#
# Start date is exactly 7 days from today.
#
# Usage:
#
# _this-week-in-rails.rb [AUTHOR] [AUTHOR_URL]
#
# * AUTHOR: (optional) Should be your GitHub username, or profile name, default to $USER
# * AUTHOR_URL: (optional) a URL to link to your profile, default to github/author
#
# Example:
#
# _this-week-in-rails.rb zzak https://ruby.social/@zzak
#
author = ARGV[0] || ENV["USER"]
author_url = ARGV[1] || "https://github.com/#{author}"
days_ago = ENV["DAYS_AGO"]&.to_i || 7
require 'uri'
require 'open-uri'
require 'json'
require 'date'
require 'nokogiri'
end_date = Date.today
start_date = end_date - days_ago
class Contributors
attr_accessor :body, :start_date, :end_date, :total
def initialize(start_date, end_date)
@start_date = start_date.strftime("%Y%m%d")
@end_date = end_date.strftime("%Y%m%d")
@body = fetch
@total = extract_total
end
def url
"https://contributors.rubyonrails.org/contributors/in-time-window/#{@start_date}-#{@end_date}"
end
def fetch
uri = URI.parse(url)
body = uri.open.read
return Nokogiri::HTML(body)
end
def extract_total
xpath = "//span[@class=\"listing-total\"][1]"
text = @body.xpath(xpath.to_s).first.content
return text.match(/\d+/)
end
end
def fetch_merged_prs(start_date, end_date, page)
url = "https://api.github.com/search/issues?q=is:pr+repo:rails/rails+merged:#{start_date}..#{end_date}&page=#{page}"
uri = URI.parse(url)
body = uri.open.read
JSON.parse(body)
end
post_content = []
contributors = Contributors.new(start_date, end_date)
total_count = fetch_merged_prs(start_date, end_date, 1)["total_count"].to_f
total_pages = total_count / 30.0
current_page = 1
while total_pages >= 0.0
data = fetch_merged_prs(start_date, end_date, current_page)
data["items"].each do |item|
summary = item["body"] ? item["body"] : "no description"
summary = summary.gsub(/.*Motivation.*[\/Background]?/, "")
if summary.match?(/Checklist/)
summary = summary.gsub(/### Checklist.*/m, "")
end
# The two spaces before line-breaks creates a soft-break in the Rails website.
post_content << <<~POST
[#{item["title"]}](#{item["html_url"]})
#{summary.squeeze("\n").lstrip.split("\n")[0..2].join("\n ").lstrip}
POST
end
current_page += 1
total_pages -= 1.0
end
meta = %(---
layout: post
title: "TODO: add a title"
categories: news
author: #{author}
og_image: assets/images/this-week-in-rails.png
published: true
date: #{end_date}
---
)
header = %(
Hi, it's [#{author}](#{author_url}). Let's explore this week's changes in the Rails codebase.
)
footer = %(
_You can view the whole list of changes [here](https://github.com/rails/rails/compare/@%7B#{start_date}%7D...main@%7B#{end_date}%7D)._
_We had [#{contributors.total} contributors](#{contributors.url}) to the Rails codebase this past week!_
Until next time!
_[Subscribe](https://world.hey.com/this.week.in.rails) to get these updates mailed to you._
)
post_path = "_posts/#{end_date}-this-week-in-rails.markdown"
File.open(post_path, 'w') do |f|
f.write meta
f.write header
f.write post_content.join("")
f.write footer
end
#system "#{ENV['EDITOR'] || 'open'} #{post_path}"