forked from nf-core/website
-
Notifications
You must be signed in to change notification settings - Fork 3
/
update_stats.php
636 lines (587 loc) · 25.2 KB
/
update_stats.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
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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<?php
//
// ---------------------------
// GitHub shows traffic in the form of repo views and clones, however
// the data is only available for two weeks.
// We want it forever! So this script scrapes and saves the data.
// It is intended to be run routinely using a cronjob
//
// Manual usage: on command line, simply execute this script:
// $ php update_stats.php
// Allow PHP fopen to work with remote links
ini_set('allow_url_fopen', 1);
echo "\nRunning update_stats - " . date('Y-m-d h:i:s') . "\n";
$config = parse_ini_file('config.ini');
$gh_auth = base64_encode($config['github_username'] . ':' . $config['github_access_token']);
$conn = mysqli_connect($config['host'], $config['username'], $config['password'], $config['dbname'], $config['port']);
if ($conn === false) {
die('ERROR: Could not connect. ' . mysqli_connect_error());
}
// get all pipelines
$sql = 'SELECT * FROM nfcore_pipelines WHERE pipeline_type = "pipelines"';
$pipelines = [];
if ($result = mysqli_query($conn, $sql)) {
if (mysqli_num_rows($result) > 0) {
$pipelines = mysqli_fetch_all($result, MYSQLI_ASSOC);
// Free result set
mysqli_free_result($result);
}
}
function github_query($gh_query_url) {
global $config;
$gh_auth = base64_encode($config['github_username'] . ':' . $config['github_access_token']);
// HTTP header to use on GitHub API GET requests
$gh_api_opts = stream_context_create([
'http' => [
'method' => 'GET',
'header' => ['User-Agent: PHP', "Authorization: Basic $gh_auth"],
],
]);
$first_page = true;
$next_page = false;
$res = [];
while ($first_page || $next_page) {
// reset loop vars
$first_page = false;
// Get GitHub API results
if ($next_page) {
$gh_query_url = $next_page;
}
$tmp_results = json_decode(file_get_contents($gh_query_url, false, $gh_api_opts), true);
// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response;
// a background job is also fired to start compiling these statistics.
// Give the job a few moments to complete, and then submit the request again
// HTTP/1.0 202 Accepted
if ( preg_match('/HTTP\/\d\.?\d? 202/', $http_response_header[0]) ) {
echo "Waiting for GitHub API to return results for $gh_query_url \n";
sleep(10);
$first_page = true;
continue;
}
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
echo "\nCould not fetch $gh_query_url";
continue;
}
if (substr($gh_query_url, 0, 29) == 'https://api.github.com/repos/') {
$res = $tmp_results;
} else {
array_push($res, ...$tmp_results);
}
// Look for URL to next page of API results
$next_page = false;
$m_array = preg_grep('/rel="next"/', $http_response_header);
if (count($m_array) > 0) {
preg_match('/<([^>]+)>; rel="next"/', array_values($m_array)[0], $matches);
if (isset($matches[1])) {
$next_page = $matches[1];
}
}
}
return $res;
}
if (!mysqli_query($conn, $sql)) {
echo "ERROR: Could not execute $sql. " . mysqli_error($conn);
}
// create github_pipeline_contrib_stats table with foreign keys to pipelines
$sql = "CREATE TABLE IF NOT EXISTS github_pipeline_contrib_stats (
id INT AUTO_INCREMENT PRIMARY KEY,
pipeline_id INT NOT NULL,
author VARCHAR(255) NOT NULL,
avatar_url VARCHAR(255) NOT NULL,
week_date datetime NOT NULL,
week_additions INT NOT NULL,
week_deletions INT NOT NULL,
week_commits INT NOT NULL,
FOREIGN KEY (pipeline_id) REFERENCES nfcore_pipelines(id)
)";
if (mysqli_query($conn, $sql)) {
echo "`github_pipeline_contrib_stats` table created successfully.\n";
} else {
echo "ERROR: Could not execute $sql. " . mysqli_error($conn);
}
// Prepare an insert statement
$sql =
'INSERT INTO github_pipeline_contrib_stats (pipeline_id, author, avatar_url, week_date, week_additions, week_deletions, week_commits) VALUES (?, ?, ?, ?, ?, ?, ?)';
if ($stmt = mysqli_prepare($conn, $sql)) {
// Bind variables to the prepared statement as parameters
mysqli_stmt_bind_param(
$stmt,
'isssiii',
$pipeline_id,
$author,
$avatar_url,
$week_date,
$week_additions,
$week_deletions,
$week_commits,
);
foreach ($pipelines as $idx => $pipeline) {
// get contributors
echo "Get contributors for pipeline ". $pipeline['name'] . "\n";
$gh_contributors = github_query(
'https://api.github.com/repos/sanger-tol/' . $pipeline['name'] . '/stats/contributors',
);
foreach ($gh_contributors as $contributor) {
$pipeline_id = $pipeline['id'];
$author = $contributor['author']['login'];
$avatar_url = $contributor['author']['avatar_url'];
foreach ($contributor['weeks'] as $week) {
$week_date = date('Y-m-d', $week['w']);
//check if entry for this pipeline_id and week_date already exists and skip if so
$check =
"SELECT * FROM github_pipeline_contrib_stats WHERE pipeline_id = '" .
$pipeline_id .
"' AND author = '" .
$author .
"' AND week_date = '" .
$week_date .
"'";
$res = mysqli_query($conn, $check);
if ($res->num_rows) {
continue;
} else {
$week_additions = $week['a'];
$week_deletions = $week['d'];
$week_commits = $week['c'];
if (!mysqli_stmt_execute($stmt)) {
echo "ERROR: Could not execute $sql. " . mysqli_error($conn);
}
}
}
}
}
} else {
echo "ERROR: Could not prepare query: $sql. " . mysqli_error($conn);
}
// create github_traffic_stats table with foreign keys to pipelines
$sql = "CREATE TABLE IF NOT EXISTS github_traffic_stats (
id INT AUTO_INCREMENT PRIMARY KEY,
pipeline_id INT NOT NULL,
views INT DEFAULT NULL,
views_uniques INT DEFAULT NULL,
clones INT DEFAULT NULL,
clones_uniques INT DEFAULT NULL,
timestamp datetime NOT NULL,
FOREIGN KEY (pipeline_id) REFERENCES nfcore_pipelines(id)
)";
if (mysqli_query($conn, $sql)) {
echo "`github_traffic_stats` table created successfully.\n";
} else {
echo "ERROR: Could not execute $sql. " . mysqli_error($conn);
}
// Prepare an insert statement
$sql =
'INSERT INTO github_traffic_stats ( pipeline_id,views,views_uniques,clones,clones_uniques,timestamp) VALUES (?,?,?,?,?,?)';
if ($stmt = mysqli_prepare($conn, $sql)) {
// Bind variables to the prepared statement as parameters
mysqli_stmt_bind_param($stmt, 'iiiiis', $pipeline_id, $views, $views_uniques, $clones, $clones_uniques, $timestamp);
foreach ($pipelines as $idx => $pipeline) {
echo "Get traffic views and clones for pipeline ". $pipeline['name'] . "\n";
$gh_views = github_query('https://api.github.com/repos/sanger-tol/' . $pipeline['name'] . '/traffic/views');
$gh_clones = github_query('https://api.github.com/repos/sanger-tol/' . $pipeline['name'] . '/traffic/clones');
foreach ($gh_views['views'] as $gh_view) {
$timestamp = date('Y-m-d H:i:s', strtotime($gh_view['timestamp']));
$check =
"SELECT * FROM github_traffic_stats WHERE pipeline_id = '" .
$pipeline['id'] .
"' AND timestamp = '" .
$timestamp .
"'";
$res = mysqli_query($conn, $check);
if ($res->num_rows) {
echo "Entry already exists for pipeline_id " .
$pipeline['id'] .
' and timestamp ' .
$timestamp .
' db_timestamp ' .
"\n";
continue;
} else {
// get gh_clones where timestamp matches
foreach ($gh_clones['clones'] as $gh_clone) {
if ($gh_clone['timestamp'] == $gh_view['timestamp']) {
$gh_clones_count = $gh_clone['count'];
$gh_clones_unique = $gh_clone['uniques'];
break;
}
}
$pipeline_id = $pipeline['id'];
$views = $gh_view['count'];
$views_uniques = $gh_view['uniques'];
$clones = $gh_clones_count;
$clones_uniques = $gh_clones_unique;
if (!mysqli_stmt_execute($stmt)) {
echo "ERROR: Could not execute $sql. " . mysqli_error($conn);
}
}
}
}
} else {
echo "ERROR: Could not prepare query: $sql. " . mysqli_error($conn);
}
mysqli_close($conn);
echo "\n Finished updating the database - " . date('Y-m-d h:i:s') . "\n";
###########################################################################################################
# #
# 🕱 OLD CODE 🕱 #
# #
###########################################################################################################
//
// nfcore_stats.json
// ---------------------------
// GitHub shows traffic in the form of repo views and clones, however
// the data is only available for two weeks.
// We want it forever! So this script scrapes and saves the data.
// It is intended to be run routinely using a cronjob
//
// Note that the resulting file (nfcore_stats.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_stats.php
// Allow PHP fopen to work with remote links
ini_set('allow_url_fopen', 1);
// Use same updated time for everything
$updated = time();
// Final filename to write JSON to
$results_fn = dirname(__FILE__) . '/nfcore_stats.json';
$contribs_fn_root = dirname(__FILE__) . '/contributor_stats/';
echo "\nRunning update_stats to save into a file (OLD) - " . date('Y-m-d h:i:s') . "\n";
// Initialise the results array with the current time and placeholders
$results = [
'updated' => $updated,
'pipelines' => [],
'core_repos' => [],
'slack' => [],
'gh_org_members' => [],
'gh_contributors' => [],
'gh_commits' => [],
'gh_additions' => [],
'gh_deletions' => [],
];
// Load a copy of the existing JSON file, if it exists
if (file_exists($results_fn)) {
$results = json_decode(file_get_contents($results_fn), true);
}
$results['updated'] = $updated;
// Get auth secrets
$config = parse_ini_file('config.ini');
$gh_auth = base64_encode($config['github_username'] . ':' . $config['github_access_token']);
//
//
// GitHub API calls
//
//
// HTTP header to use on GitHub API GET requests
$gh_api_opts = stream_context_create([
'http' => [
'method' => 'GET',
'header' => ['User-Agent: PHP', "Authorization: Basic $gh_auth"],
],
]);
// Load details of the pipelines
$pipelines_json = json_decode(file_get_contents(dirname(__FILE__) . '/public_html/pipelines.json'));
$pipelines = $pipelines_json->remote_workflows;
$contribs_try_again = [];
// Build array of repos to query
$pipelines_json_names = [];
foreach ($pipelines as $wf) {
$pipelines_json_names[] = $wf->name;
if (!isset($results['pipelines'][$wf->name])) {
$results['pipelines'][$wf->name] = [];
}
$results['pipelines'][$wf->name]['num_releases'] = count($wf->releases);
}
$ignored_repos = parse_ini_file('ignored_repos.ini')['repos'];
/**
// don't store stats for non-pipeline repos
foreach ($ignored_repos as $name) {
if (!isset($results['core_repos'][$name])) {
$results['core_repos'][$name] = [];
}
}
*/
// Delete cached pipelines stats for pipelines that have been deleted
foreach (array_keys($results['pipelines']) as $wfname) {
if (!in_array($wfname, $pipelines_json_names)) {
echo "Removing $wfname from the cached results as it appears to have been deleted.\n";
unset($results['pipelines'][$wfname]);
}
}
// Get snapshot of key metrics for all repos
// Get the current number of organisation members
// Returns 30 results per page!
echo "Get all the github members.\n";
$gh_members_url = 'https://api.github.com/orgs/sanger-tol/members';
$results['gh_org_members'][$updated] = 0;
$first_page = true;
$next_page = false;
while ($first_page || $next_page) {
// reset loop vars
$first_page = false;
// Get GitHub API results
if ($next_page) {
$gh_members_url = $next_page;
}
$gh_members = json_decode(file_get_contents($gh_members_url, false, $gh_api_opts));
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
echo "Could not fetch nf-core members! $gh_members_url";
continue;
}
$results['gh_org_members'][$updated] += count($gh_members);
// Look for URL to next page of API results
$next_page = false;
$m_array = preg_grep('/rel="next"/', $http_response_header);
if (count($m_array) > 0) {
preg_match('/<([^>]+)>; rel="next"/', array_values($m_array)[0], $matches);
if (isset($matches[1])) {
$next_page = $matches[1];
}
}
}
// Fetch all repositories at nf-core
echo "Get the list of repos from Github\n";
$gh_repos_url = 'https://api.github.com/orgs/sanger-tol/repos?per_page=100';
$gh_repos = json_decode(file_get_contents($gh_repos_url, false, $gh_api_opts));
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
die("Could not fetch nf-core repositories! $gh_repos_url");
}
foreach ($gh_repos as $repo) {
if (in_array($repo->name, $ignored_repos)) {
$repo_type = 'core_repos';
// ignore non-pipeline repos for now
continue;
} else {
$repo_type = 'pipelines';
}
echo " Repo " . htmlspecialchars($repo->name, ENT_QUOTES, 'UTF-8') . "\n";
$results[$repo_type][$repo->name]['repo_metrics'][$updated] = [
'id' => $repo->id,
'name' => $repo->name,
'full_name' => $repo->full_name,
'private' => $repo->private,
'html_url' => $repo->html_url,
'description' => $repo->description,
'created_at' => $repo->created_at,
'updated_at' => $repo->updated_at,
'pushed_at' => $repo->pushed_at,
'size' => $repo->size,
'stargazers_count' => $repo->stargazers_count,
'forks_count' => $repo->forks_count,
'archived' => $repo->archived,
];
// Annoyingly, two values are only available if we query for just this repo
$gh_repo_url = 'https://api.github.com/repos/sanger-tol/' . basename($repo->name);
$gh_repo = json_decode(file_get_contents($gh_repo_url, false, $gh_api_opts));
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
echo "Could not fetch nf-core repo! $gh_repo_url";
continue;
}
$results[$repo_type][$repo->name]['repo_metrics'][$updated]['network_forks_count'] = $gh_repo->network_count;
$results[$repo_type][$repo->name]['repo_metrics'][$updated]['subscribers_count'] = $gh_repo->subscribers_count;
}
// Fetch new statistics for each repo
echo "Fetch traffic views and clones for each repo, and the contributors\n";
foreach (['pipelines'] as $repo_type) {
//foreach (['pipelines', 'core_repos'] as $repo_type) {
foreach ($results[$repo_type] as $repo_name => $repo_stats) {
echo " " . $repo_name . "\n";
// Views
$gh_views_url = 'https://api.github.com/repos/sanger-tol/' . $repo_name . '/traffic/views';
$gh_views = json_decode(file_get_contents($gh_views_url, false, $gh_api_opts));
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
// Pipelines are removed from the cache earlier as we know their names
if ($repo_type == 'core_repos' && preg_match('/HTTP\/\d\.?\d? 404/', $http_response_header[0])) {
echo 'Removing ' . $repo_name . " from the cached results as it appears to have been deleted.\n";
unset($results['core_repos'][$repo_name]);
} else {
echo "-------- Could not fetch nf-core repo views! $gh_views_url\n";
var_dump($http_response_header);
echo "\n-------- End of header for $gh_views_url\n\n\n";
}
continue;
}
foreach ($gh_views->views as $view) {
$results[$repo_type][$repo_name]['views_count'][$view->timestamp] = $view->count;
$results[$repo_type][$repo_name]['views_uniques'][$view->timestamp] = $view->uniques;
}
// Clones
$gh_clones_url = 'https://api.github.com/repos/sanger-tol/' . $repo_name . '/traffic/clones';
$gh_clones = json_decode(file_get_contents($gh_clones_url, false, $gh_api_opts));
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
echo "Could not fetch nf-core repo clones! $gh_clones_url";
continue;
}
foreach ($gh_clones->clones as $clone) {
$results[$repo_type][$repo_name]['clones_count'][$clone->timestamp] = $clone->count;
$results[$repo_type][$repo_name]['clones_uniques'][$clone->timestamp] = $clone->uniques;
}
// Contributors
$gh_contributors_url = 'https://api.github.com/repos/sanger-tol/' . $repo_name . '/stats/contributors';
$gh_contributors_raw = file_get_contents($gh_contributors_url, false, $gh_api_opts);
file_put_contents($contribs_fn_root . $repo_name . '.json', $gh_contributors_raw);
$gh_contributors = json_decode($gh_contributors_raw);
// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response;
// a background job is also fired to start compiling these statistics.
// Give the job a few moments to complete, and then submit the request again
if (preg_match('/HTTP\/\d\.?\d? 202/', $http_response_header[0])) {
$contribs_try_again[$repo_name] = [
'repo_type' => $repo_type,
'gh_contributors_url' => $gh_contributors_url,
];
} elseif (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
echo "Could not fetch nf-core repo contributors! $gh_contributors_url";
continue;
}else{
$results[$repo_type][$repo_name]['contributors'] = $gh_contributors;
$results[$repo_type][$repo_name]['num_contributors'] = count($gh_contributors);
// Commits
$results[$repo_type][$repo_name]['commits'] = 0;
foreach ($gh_contributors as $contributor) {
$results[$repo_type][$repo_name]['commits'] += $contributor->total;
}
}
// Recalculate totals
foreach (['views_count', 'views_uniques', 'clones_count', 'clones_uniques'] as $ctype) {
$results[$repo_type][$repo_name][$ctype . '_total'] = 0;
if (
isset($results[$repo_type][$repo_name][$ctype]) &&
count($results[$repo_type][$repo_name][$ctype]) > 0
) {
foreach ($results[$repo_type][$repo_name][$ctype] as $stat) {
$results[$repo_type][$repo_name][$ctype . '_total'] += $stat;
}
}
}
}
}
// Try contribs again now that we've let it fire
if (count($contribs_try_again) > 0) {
sleep(10);
echo "Retrying to get contributors for each repo.\n";
foreach ($contribs_try_again as $repo_name => $details) {
echo " " . $repo_name ."\n";
extract($details); // $repo_type, $gh_contributors_raw
$gh_contributors_raw = file_get_contents($gh_contributors_url, false, $gh_api_opts);
file_put_contents($contribs_fn_root . $repo_name . '.json', $gh_contributors_raw);
$gh_contributors = json_decode($gh_contributors_raw);
if (preg_match('/HTTP\/\d\.?\d? 202/', $http_response_header[0])) {
echo "Tried getting contributors after delay for $repo_name, but took too long.\n";
continue;
} elseif (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0])) {
var_dump($http_response_header);
echo "Could not fetch nf-core repo contributors! $gh_contributors_url";
continue;
}else{
$results[$repo_type][$repo_name]['contributors'] = $gh_contributors;
$results[$repo_type][$repo_name]['num_contributors'] = count($gh_contributors);
}
}
}
echo "Count how many total contributors and contributions we have per week.\n";
foreach (['pipelines'] as $repo_type) {
//foreach (['pipelines', 'core_repos'] as $repo_type) {
foreach ($results[$repo_type] as $repo_name => $repo_stats) {
foreach ($results[$repo_type][$repo_name]['contributors'] as $idx => $contributor) {
// Count how many total contributors and contributions we have per week
foreach ($contributor->weeks as $w) {
// Skip zeros (anything before 2010)
if ($w->w < 1262304000) {
continue;
}
// Find earliest contribution per author
if (!isset($results['gh_contributors'][$contributor->author->login])) {
$results['gh_contributors'][$contributor->author->login] = $w->w;
}
$results['gh_contributors'][$contributor->login] = min(
$w->w,
$results['gh_contributors'][$contributor->login],
);
// Sum total contributions for everyone
if (!isset($results['gh_commits'][$w->w])) {
$results['gh_commits'][$w->w] = 0;
}
if (!isset($results['gh_additions'][$w->w])) {
$results['gh_additions'][$w->w] = 0;
}
if (!isset($results['gh_deletions'][$w->w])) {
$results['gh_deletions'][$w->w] = 0;
}
$results['gh_commits'][$w->w] += $w->c;
$results['gh_additions'][$w->w] += $w->a;
$results['gh_deletions'][$w->w] += $w->d;
}
// The data for commits per week is massive - remove it
unset($results[$repo_type][$repo_name]['contributors'][$idx]->weeks);
}
}
}
/**
//
//
// SLACK USERS
//
//
echo 'update_stats - Slack updates - ' . date('Y-m-d h:i:s') . "\n";
$slack_api_url = 'https://slack.com/api/team.billableInfo?token=' . $config['slack_access_token'] . '&pretty=1';
$slack_api_opts = stream_context_create([
'http' => [
'method' => 'GET',
'header' => ['User-Agent: PHP', 'Content-Type: application/x-www-form-urlencoded'],
],
]);
$slack_users = json_decode(file_get_contents($slack_api_url, false, $slack_api_opts));
if (!preg_match('/HTTP\/\d\.?\d? 200/', $http_response_header[0]) || !isset($slack_users->ok) || !$slack_users->ok) {
var_dump($http_response_header);
echo 'Could not fetch slack user list!';
} else {
$results['slack']['user_counts'][$updated] = [
'total' => 0,
'active' => 0,
'inactive' => 0,
];
foreach ($slack_users->billable_info as $uid => $user) {
$results['slack']['user_counts'][$updated]['total'] += 1;
if ($user->billing_active) {
$results['slack']['user_counts'][$updated]['active'] += 1;
} else {
$results['slack']['user_counts'][$updated]['inactive'] += 1;
}
}
}
//
//
// Twitter - get number of followers
//
//
echo 'update_stats - twitter updates - ' . date('Y-m-d h:i:s') . "\n";
require 'vendor/autoload.php';
use Abraham\TwitterOAuth\TwitterOAuth;
// Connect to twitter
$connection = new TwitterOAuth(
$config['twitter_key'],
$config['twitter_secret'],
$config['twitter_access_token'],
$config['twitter_access_token_secret'],
);
$twitter_stats = $connection->get('users/show', ['screen_name' => 'nf_core']);
if (isset($twitter_stats->followers_count)) {
$results['twitter']['followers_count'][$updated] = $twitter_stats->followers_count;
}
*/
//
//
// DONE - save results to JSON file
//
//
// Print results to a file
echo "update_stats - Saving to $results_fn - " . date('Y-m-d h:i:s') . "\n";
$results_json = json_encode($results, JSON_PRETTY_PRINT) . "\n";
file_put_contents($results_fn, $results_json);
echo 'update_stats done ' . date('Y-m-d h:i:s') . "\n\n";