forked from danieljames/boost-tasks
-
Notifications
You must be signed in to change notification settings - Fork 2
/
release-from-bintray-previous
executable file
·178 lines (140 loc) · 5.4 KB
/
release-from-bintray-previous
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
#!/usr/bin/env php
<?php
require_once(__DIR__.'/vendor/autoload.php');
use BoostTasks\Settings;
use BoostTasks\BinTrayCache;
use BoostTasks\Documentation;
use BoostTasks\CommandLineOptions;
use BoostTasks\WebsiteRepo;
use BoostTasks\Log;
// use RuntimeException;
define('GET_RELEASE_DOWNLOAD_USAGE', "
Usage: {} bintray_version [url]
Downloads the release details from bintray. Example versions:
1.64.0.rc.1
1.64.0.beta.1
1.64.0
Optional argument 'url' for a download page when the download URLs don't follow
the normal pattern e.g.
{} 1.65.0.beta.1.rc.2 https://bintray.com/boostorg/beta/1.65.0.beta.1
");
function main($args) {
$command_line_options = CommandLineOptions::create($_SERVER['argv'],
trim(str_replace('{}', basename(__FILE__), GET_RELEASE_DOWNLOAD_USAGE)));
$options = $command_line_options->processArgs();
if (is_numeric($options)) { exit($options); }
$bintray_version = null;
$bintray_url = null;
switch (count($options->arguments)) {
case 0:
echo $command_line_options->usage("Error: version required.\n\n{$command_line_options->description}");
exit(1);
case 2:
$bintray_url = $options->arguments[1]->arg;
case 1:
$bintray_version = $options->arguments[0]->arg;
break;
default:
echo $command_line_options->usage("Error: too many arguments");
exit(1);
}
Settings::init($options->toArray());
// Get a copy of the website, and start up the php libs.
$website_repo = new WebsiteRepo();
$website_repo->setupCleanCheckout();
$website_repo->setupForRun();
require_once($website_repo->path.'/common/code/boost.php');
// Strip release candidate details as BoostVersion doesn't understand them.
$is_release_candidate = preg_match("@^(.*)[.]rc[.]?\d*$@", $bintray_version, $match);
$version2 = $is_release_candidate ? $match[1] : $bintray_version;
// Parse the version
try {
$version_object = BoostVersion::from($version2);
} catch (BoostVersion_Exception $e) {
echo "Failed to interpret version {$bintray_version}\n";
exit(1);
}
$cache = new BinTrayCache;
if ($bintray_url) {
// Get the bintray details from the URL
if (!preg_match('@/boostorg/([^/]+/[^/]+)/@', $bintray_url, $match)) {
throw new RuntimeException("Unable to interpret URL: {$bintray_url}");
}
$file_details = $cache->fetchDetails($bintray_version, $match[1]);
} else {
// Use default location for version
// Note: This isn't working for 1.65.0 betas.
$file_details = $cache->fetchDetails($bintray_version);
}
// Download the documentation
// TODO: Should I really be installing the documentation here?
// Maybe only on the server?
$install_path = Documentation::install($cache, $file_details, $version_object->dir());
// Update documentation list
Log::info("Update documentation list");
echo "php {$website_repo->path}/site-tools/update-doc-list.php --quiet {$install_path} '{$version_object}'\n";
passthru("php {$website_repo->path}/site-tools/update-doc-list.php ".
"--quiet {$install_path} '{$version_object}'", $status);
if ($status != 0) {
echo "Error running update-doc-list.php\n";
exit(1);
}
// Get the download details from bintray
// TODO: This was already downloaded for the documentation.
$downloads = get_download_details($file_details);
if (!$downloads) {
echo "Didn't find any downloads on Bintray.\n";
exit(1);
}
// Update releases
Log::info("Update release data");
$releases = new BoostReleases($website_repo->path.'/generated/state/release.txt');
$releases->set_release_data('boost', $version_object, array(
'download_page' => $file_details->getDownloadPage(),
'downloads' => $downloads,
));
$short_doc_dir = str_replace('boost_', '', $version_object->dir());
$releases->addDocumentation('boost', $version_object, "/doc/libs/{$short_doc_dir}/");
$releases->save();
if (!$is_release_candidate) {
Log::info("Set released in website");
passthru("php {$website_repo->path}/site-tools/set-release-status.php ".
"'{$version_object}'", $status);
if ($status != 0) {
echo "Error running set-release-status.php\n";
exit(1);
}
}
// Rebuild pages
Log::info("Rebuild website pages");
passthru("php {$website_repo->path}/site-tools/update-pages.php", $status);
if ($status != 0) {
echo "Error running update-pages\n";
exit(1);
}
// TODO: Push to github
// Not doing it just yet, as I want to manually check that the update
// is okay. Will have to wait until the next beta to find out for
// sure.
}
function get_download_details($file_details) {
$extensions = array(
'bz2' => 'unix',
'gz' => 'unix',
'zip' => 'windows',
'7z' => 'windows',
);
$downloads = array();
foreach($file_details->files as $x) {
$extension = pathinfo($x->path, PATHINFO_EXTENSION);
if (array_key_exists($extension, $extensions)) {
$downloads[$extension] = array(
'line_endings' => $extensions[$extension],
'url' => $file_details->getFileUrl($x),
'sha256' => $x->sha256
);
}
}
return $downloads;
}
main($_SERVER['argv']);