forked from nf-core/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_pipeline_details.php
254 lines (225 loc) · 8.91 KB
/
update_pipeline_details.php
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
<?php
//
// update_pipeline_details.php
// ---------------------------
// Pull the details of all nf-core pipelines from GitHub
// and write as JSON to a file.
// This script is called by deploy_pipelines.php when the GitHub web hooks
// trigger due to an update.
//
// Note that the resulting file (public_html/pipelines.json) is
// ignored in the .gitignore file and will not be tracked in git history.
//
// Manual usage: on command line, simply execute this script:
// $ php update_pipeline_details.php
echo "\n\nUpdating pipeline details - ".date("Y-m-d h:i:s")."\n";
// Load the twitter PHP library
require "vendor/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;
// Allow PHP fopen to work with remote links
ini_set("allow_url_fopen", 1);
// Get the twitter auth secrets
$config = parse_ini_file("config.ini");
function get_gh_api($gh_api_url){
global $config;
$gh_auth = base64_encode($config['github_username'].':'.$config['github_access_token']);
// HTTP header to use on API GET requests
$gh_api_opts = stream_context_create([
'http' => [
'method' => 'GET',
'header' => [
'User-Agent: PHP',
'Accept:application/vnd.github.mercy-preview+json', // Needed to get topics (keywords) for now
"Authorization: Basic $gh_auth"
]
]
]);
// Get API response
$gh_api_raw = file_get_contents($gh_api_url, false, $gh_api_opts);
if(strpos($http_response_header[0], "HTTP/1.1 200") === false){
die("\n-------- START ERROR ".date("Y-m-d h:i:s")." --------\nCould not fetch $gh_api_url \n");
var_dump($http_response_header);
echo "\n$gh_api_raw\n";
die("\n-------- END ERROR ".date("Y-m-d h:i:s")." --------\nCould not fetch $gh_api_url \n");
}
return json_decode($gh_api_raw);
}
// Final filenames to write JSON to
$results_fn = dirname(__FILE__).'/public_html/pipelines.json';
$pipeline_names_fn = dirname(__FILE__).'/public_html/pipeline_names.json';
// Load a copy of the existing JSON file, if it exists
$old_json = false;
$tweets = array();
if(file_exists($results_fn)){
$old_json = json_decode(file_get_contents($results_fn), true);
}
// Function to sort assoc array by key value (name)
function sort_name($a,$b) {
return strcmp($a["full_name"], $b["full_name"]);
}
// Function to sort assoc array by key value (datestamp)
function sort_datestamp($a,$b) {
return strtotime($a['published_at']) - strtotime($b['published_at']);
}
// Initialise the results array with the current time and placeholders
$results = array(
'updated' => time(),
'pipeline_count' => 0,
'published_count' => 0,
'devel_count' => 0,
'archived_count' => 0
);
// Fetch all repositories at nf-core
$gh_repos = get_gh_api('https://api.github.com/orgs/nf-core/repos?per_page=100');
// Save data from non-ignored repositories
$ignored_repos = parse_ini_file("ignored_repos.ini")['repos'];
$ignored_topics = parse_ini_file("ignored_repos.ini")['topics'];
foreach($gh_repos as $repo){
if(!in_array($repo->name, $ignored_repos)){
$topics = array();
if(!is_null($repo->topics)){
foreach($repo->topics as $topic){
if(!in_array($topic, $ignored_topics)){
$topics[] = $topic;
}
}
}
$results['remote_workflows'][] = array(
'id' => $repo->id,
'name' => $repo->name,
'full_name' => $repo->full_name,
'private' => $repo->private,
'html_url' => $repo->html_url,
'description' => $repo->description,
'topics' => $topics,
'created_at' => $repo->created_at,
'updated_at' => $repo->updated_at,
'pushed_at' => $repo->pushed_at,
'last_release' => 0,
'git_url' => $repo->git_url,
'ssh_url' => $repo->ssh_url,
'clone_url' => $repo->clone_url,
'size' => $repo->size,
'stargazers_count' => $repo->stargazers_count,
'forks_count' => $repo->forks_count,
'archived' => $repo->archived,
);
}
}
// Sort workflows by name
usort($results['remote_workflows'], 'sort_name');
// Get additional release data for each repo
foreach($results['remote_workflows'] as $idx => $repo){
// Fetch release information for this repo
$gh_releases = get_gh_api("https://api.github.com/repos/{$repo['full_name']}/releases");
// Save releases to results
$results['remote_workflows'][$idx]['releases'] = [];
foreach($gh_releases as $rel){
// Skip if a draft release or prerelease
if($rel->draft) continue;
if($rel->prerelease) continue;
$results['remote_workflows'][$idx]['releases'][] = array(
'name' => $rel->name,
'published_at' => $rel->published_at,
'html_url' => $rel->html_url,
'tag_name' => $rel->tag_name,
'tag_sha' => NULL,
'draft' => $rel->draft,
'prerelease' => $rel->prerelease,
'tarball_url' => $rel->tarball_url,
'zipball_url' => $rel->zipball_url
);
if(strtotime($rel->published_at) > strtotime($results['remote_workflows'][$idx]['last_release'])){
$results['remote_workflows'][$idx]['last_release'] = $rel->published_at;
}
}
if(count($results['remote_workflows'][$idx]['releases']) > 0){
// Sort releases by date, descending
usort($results['remote_workflows'][$idx]['releases'], 'sort_datestamp');
// Get commit hash information for each release
$gh_tags = get_gh_api("https://api.github.com/repos/{$repo['full_name']}/tags");
foreach($gh_tags as $tag){
foreach($results['remote_workflows'][$idx]['releases'] as $relidx => $rel){
if($tag->name == $rel['tag_name']){
$results['remote_workflows'][$idx]['releases'][$relidx]['tag_sha'] = $tag->commit->sha;
}
}
}
}
}
// Count workflows
$pipeline_names = [];
foreach($results['remote_workflows'] as $repo){
$results['pipeline_count']++;
if($repo['archived']){
$results['archived_count']++;
} else if(count($repo['releases']) > 0){
$results['published_count']++;
$pipeline_names[] = $repo['name'];
} else {
$results['devel_count']++;
$pipeline_names[] = $repo['name'];
}
}
// Print results to a file
$results_json = json_encode($results, JSON_PRETTY_PRINT)."\n";
file_put_contents($results_fn, $results_json);
// Print simple list of pipelines to a file
file_put_contents($pipeline_names_fn, json_encode(array('pipeline' => $pipeline_names)));
////// Tweet about new releases
// Get old releases
$old_rel_tags = array();
if($old_json){
foreach($old_json['remote_workflows'] as $old_pipeline){
$old_rel_tags[$old_pipeline['name']] = array();
// Collect releases from this pipeline
foreach($old_pipeline['releases'] as $rel){
if($rel['draft'] || $rel['prerelease']){
continue;
}
$old_rel_tags[$old_pipeline['name']][] = $rel['tag_name'];
}
}
}
// Go through new releases
foreach($results['remote_workflows'] as $new_pipeline){
$rel_urls = array();
foreach($new_pipeline['releases'] as $rel){
if($rel['draft'] || $rel['prerelease']){
continue;
}
// See if this tag name was in the previous JSON
if(!isset($old_rel_tags[$new_pipeline['name']]) || !in_array($rel['tag_name'], $old_rel_tags[$new_pipeline['name']])){
// Prepare the tweet content!
$tweet = 'Pipeline release! ';
$tweet .= $new_pipeline['full_name'].' v'.$rel['tag_name'].' ('.$new_pipeline['description'].')';
$tweet_url = "\n\nSee the changelog: ".$rel['html_url'];
// 42 chars for tweet URL string with t.co url shortener
while( (strlen($tweet) + 42) > $config['twitter_tweet_length'] ){
$tweet = substr(rtrim($tweet, '.)'), 0, -3).'..)';
}
$tweets[] = $tweet.$tweet_url;
echo("Found new release for ".$new_pipeline['full_name'].": ".$rel['tag_name']."\n");
}
}
}
// Only tweet if we're on the live server!
if(count($tweets) > 0){
if(isset($config['twitter_key']) && $config['twitter_key'] != 'TWITTER_KEY'){
// Connect to twitter
$connection = new TwitterOAuth(
$config['twitter_key'],
$config['twitter_secret'],
$config['twitter_access_token'],
$config['twitter_access_token_secret']
);
// Post the tweets
foreach($tweets as $tweet){
$post_tweets = $connection->post("statuses/update", ["status" => $tweet]);
echo("Sent tweet: $tweet\n");
}
} else {
echo("Not sending tweets because config twitter_key is not set.\n");
}
}
echo("\nupdate_pipeline_details done " . date("Y-m-d h:i:s") . "\n\n");