2023-04-30 12:42:19 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace SPC\command;
|
|
|
|
|
|
2025-03-30 20:16:41 +08:00
|
|
|
use SPC\builder\linux\SystemUtil;
|
2023-07-17 21:36:50 +08:00
|
|
|
use SPC\builder\traits\UnixSystemUtilTrait;
|
2023-04-30 12:42:19 +08:00
|
|
|
use SPC\exception\DownloaderException;
|
|
|
|
|
use SPC\exception\FileSystemException;
|
|
|
|
|
use SPC\exception\RuntimeException;
|
2023-10-22 16:35:15 +08:00
|
|
|
use SPC\exception\WrongUsageException;
|
2023-04-30 12:42:19 +08:00
|
|
|
use SPC\store\Config;
|
|
|
|
|
use SPC\store\Downloader;
|
2023-10-22 16:35:15 +08:00
|
|
|
use SPC\util\DependencyUtil;
|
2023-04-30 12:42:19 +08:00
|
|
|
use Symfony\Component\Console\Attribute\AsCommand;
|
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
|
|
#[AsCommand('download', 'Download required sources', ['fetch'])]
|
|
|
|
|
class DownloadCommand extends BaseCommand
|
|
|
|
|
{
|
2023-07-17 21:36:50 +08:00
|
|
|
use UnixSystemUtilTrait;
|
|
|
|
|
|
2023-04-30 12:42:19 +08:00
|
|
|
protected string $php_major_ver;
|
|
|
|
|
|
2023-08-20 19:51:45 +08:00
|
|
|
public function configure(): void
|
2023-04-30 12:42:19 +08:00
|
|
|
{
|
|
|
|
|
$this->addArgument('sources', InputArgument::REQUIRED, 'The sources will be compiled, comma separated');
|
|
|
|
|
$this->addOption('shallow-clone', null, null, 'Clone shallow');
|
|
|
|
|
$this->addOption('with-openssl11', null, null, 'Use openssl 1.1');
|
2025-03-10 09:20:22 +01:00
|
|
|
$this->addOption('with-php', null, InputOption::VALUE_REQUIRED, 'version in major.minor format (default 8.4)', '8.4');
|
2023-04-30 12:42:19 +08:00
|
|
|
$this->addOption('clean', null, null, 'Clean old download cache and source before fetch');
|
|
|
|
|
$this->addOption('all', 'A', null, 'Fetch all sources that static-php-cli needed');
|
2023-07-28 00:02:49 +08:00
|
|
|
$this->addOption('custom-url', 'U', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'Specify custom source download url, e.g "php-src:https://downloads.php.net/~eric/php-8.3.0beta1.tar.gz"');
|
2024-09-05 00:00:58 +08:00
|
|
|
$this->addOption('custom-git', 'G', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'Specify custom source git url, e.g "php-src:master:https://github.com/php/php-src.git"');
|
2023-07-17 21:36:50 +08:00
|
|
|
$this->addOption('from-zip', 'Z', InputOption::VALUE_REQUIRED, 'Fetch from zip archive');
|
2023-10-29 00:48:30 +02:00
|
|
|
$this->addOption('for-extensions', 'e', InputOption::VALUE_REQUIRED, 'Fetch by extensions, e.g "openssl,mbstring"');
|
2024-03-05 21:43:09 +08:00
|
|
|
$this->addOption('for-libs', 'l', InputOption::VALUE_REQUIRED, 'Fetch by libraries, e.g "libcares,openssl,onig"');
|
2023-10-29 00:48:30 +02:00
|
|
|
$this->addOption('without-suggestions', null, null, 'Do not fetch suggested sources when using --for-extensions');
|
2024-07-07 20:45:18 +08:00
|
|
|
$this->addOption('ignore-cache-sources', null, InputOption::VALUE_OPTIONAL, 'Ignore some source caches, comma separated, e.g "php-src,curl,openssl"', false);
|
2024-03-10 16:23:30 +08:00
|
|
|
$this->addOption('retry', 'R', InputOption::VALUE_REQUIRED, 'Set retry time when downloading failed (default: 0)', '0');
|
2024-07-07 20:45:18 +08:00
|
|
|
$this->addOption('prefer-pre-built', 'P', null, 'Download pre-built libraries when available');
|
2023-04-30 12:42:19 +08:00
|
|
|
}
|
|
|
|
|
|
2024-03-10 10:58:58 +08:00
|
|
|
/**
|
|
|
|
|
* @throws FileSystemException
|
|
|
|
|
* @throws WrongUsageException
|
|
|
|
|
*/
|
2023-08-20 19:51:45 +08:00
|
|
|
public function initialize(InputInterface $input, OutputInterface $output): void
|
2023-04-30 12:42:19 +08:00
|
|
|
{
|
2024-03-10 10:58:58 +08:00
|
|
|
// mode: --all
|
|
|
|
|
if ($input->getOption('all')) {
|
|
|
|
|
$input->setArgument('sources', implode(',', array_keys(Config::getSources())));
|
|
|
|
|
parent::initialize($input, $output);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// mode: --clean and --from-zip
|
|
|
|
|
if ($input->getOption('clean') || $input->getOption('from-zip')) {
|
2023-04-30 12:42:19 +08:00
|
|
|
$input->setArgument('sources', '');
|
2024-03-10 10:58:58 +08:00
|
|
|
parent::initialize($input, $output);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// mode: normal
|
|
|
|
|
if (!empty($input->getArgument('sources'))) {
|
|
|
|
|
$final_sources = array_map('trim', array_filter(explode(',', $input->getArgument('sources'))));
|
|
|
|
|
} else {
|
|
|
|
|
$final_sources = [];
|
|
|
|
|
}
|
|
|
|
|
// mode: --for-extensions
|
|
|
|
|
if ($for_ext = $input->getOption('for-extensions')) {
|
2024-06-05 23:20:21 +08:00
|
|
|
$ext = $this->parseExtensionList($for_ext);
|
2024-03-10 10:58:58 +08:00
|
|
|
$sources = $this->calculateSourcesByExt($ext, !$input->getOption('without-suggestions'));
|
|
|
|
|
$final_sources = array_merge($final_sources, array_diff($sources, $final_sources));
|
|
|
|
|
}
|
|
|
|
|
// mode: --for-libs
|
|
|
|
|
if ($for_lib = $input->getOption('for-libs')) {
|
|
|
|
|
$lib = array_map('trim', array_filter(explode(',', $for_lib)));
|
|
|
|
|
$sources = $this->calculateSourcesByLib($lib, !$input->getOption('without-suggestions'));
|
|
|
|
|
$final_sources = array_merge($final_sources, array_diff($sources, $final_sources));
|
|
|
|
|
}
|
|
|
|
|
if (!empty($final_sources)) {
|
|
|
|
|
$input->setArgument('sources', implode(',', $final_sources));
|
2023-04-30 12:42:19 +08:00
|
|
|
}
|
|
|
|
|
parent::initialize($input, $output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @throws FileSystemException
|
2024-03-10 10:58:58 +08:00
|
|
|
* @throws RuntimeException
|
2023-04-30 12:42:19 +08:00
|
|
|
*/
|
|
|
|
|
public function handle(): int
|
|
|
|
|
{
|
2023-10-23 20:12:47 +08:00
|
|
|
try {
|
|
|
|
|
if ($this->getOption('clean')) {
|
|
|
|
|
logger()->warning('You are doing some operations that not recoverable: removing directories below');
|
|
|
|
|
logger()->warning(SOURCE_PATH);
|
|
|
|
|
logger()->warning(DOWNLOAD_PATH);
|
|
|
|
|
logger()->warning(BUILD_ROOT_PATH);
|
|
|
|
|
logger()->alert('I will remove these dir after 5 seconds !');
|
|
|
|
|
sleep(5);
|
|
|
|
|
if (PHP_OS_FAMILY === 'Windows') {
|
|
|
|
|
f_passthru('rmdir /s /q ' . SOURCE_PATH);
|
|
|
|
|
f_passthru('rmdir /s /q ' . DOWNLOAD_PATH);
|
|
|
|
|
f_passthru('rmdir /s /q ' . BUILD_ROOT_PATH);
|
|
|
|
|
} else {
|
|
|
|
|
f_passthru('rm -rf ' . SOURCE_PATH . '/*');
|
|
|
|
|
f_passthru('rm -rf ' . DOWNLOAD_PATH . '/*');
|
|
|
|
|
f_passthru('rm -rf ' . BUILD_ROOT_PATH . '/*');
|
|
|
|
|
}
|
|
|
|
|
return static::FAILURE;
|
2023-04-30 12:42:19 +08:00
|
|
|
}
|
|
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// --from-zip
|
|
|
|
|
if ($path = $this->getOption('from-zip')) {
|
|
|
|
|
return $this->downloadFromZip($path);
|
|
|
|
|
}
|
2023-07-17 21:36:50 +08:00
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// Define PHP major version
|
2025-03-10 09:20:22 +01:00
|
|
|
$ver = $this->php_major_ver = $this->getOption('with-php');
|
2023-10-23 20:12:47 +08:00
|
|
|
define('SPC_BUILD_PHP_VERSION', $ver);
|
2024-09-04 15:42:16 +08:00
|
|
|
// match x.y
|
2023-10-23 20:12:47 +08:00
|
|
|
preg_match('/^\d+\.\d+$/', $ver, $matches);
|
|
|
|
|
if (!$matches) {
|
2024-09-04 15:42:16 +08:00
|
|
|
// match x.y.z
|
|
|
|
|
preg_match('/^\d+\.\d+\.\d+$/', $ver, $matches);
|
|
|
|
|
if (!$matches) {
|
|
|
|
|
logger()->error("bad version arg: {$ver}, x.y or x.y.z required!");
|
|
|
|
|
return static::FAILURE;
|
|
|
|
|
}
|
2023-10-23 20:12:47 +08:00
|
|
|
}
|
2023-04-30 12:42:19 +08:00
|
|
|
|
2024-03-10 16:23:30 +08:00
|
|
|
// retry
|
|
|
|
|
$retry = intval($this->getOption('retry'));
|
|
|
|
|
f_putenv('SPC_RETRY_TIME=' . $retry);
|
|
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// Use shallow-clone can reduce git resource download
|
|
|
|
|
if ($this->getOption('shallow-clone')) {
|
|
|
|
|
define('GIT_SHALLOW_CLONE', true);
|
|
|
|
|
}
|
2023-04-30 12:42:19 +08:00
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// To read config
|
|
|
|
|
Config::getSource('openssl');
|
2023-04-30 12:42:19 +08:00
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// use openssl 1.1
|
|
|
|
|
if ($this->getOption('with-openssl11')) {
|
|
|
|
|
logger()->debug('Using openssl 1.1');
|
|
|
|
|
Config::$source['openssl']['regex'] = '/href="(?<file>openssl-(?<version>1.[^"]+)\.tar\.gz)\"/';
|
|
|
|
|
}
|
2023-04-30 12:42:19 +08:00
|
|
|
|
2024-03-10 10:58:58 +08:00
|
|
|
$chosen_sources = array_map('trim', array_filter(explode(',', $this->getArgument('sources'))));
|
2024-07-07 20:45:18 +08:00
|
|
|
|
|
|
|
|
$sss = $this->getOption('ignore-cache-sources');
|
|
|
|
|
if ($sss === false) {
|
|
|
|
|
// false is no-any-ignores, that is, default.
|
|
|
|
|
$force_all = false;
|
2024-06-30 22:35:22 +08:00
|
|
|
$force_list = [];
|
2024-07-07 20:45:18 +08:00
|
|
|
} elseif ($sss === null) {
|
|
|
|
|
// null means all sources will be ignored, equals to --force-all (but we don't want to add too many options)
|
|
|
|
|
$force_all = true;
|
|
|
|
|
$force_list = [];
|
|
|
|
|
} else {
|
|
|
|
|
// ignore some sources
|
|
|
|
|
$force_all = false;
|
|
|
|
|
$force_list = array_map('trim', array_filter(explode(',', $this->getOption('ignore-cache-sources'))));
|
2024-06-30 22:35:22 +08:00
|
|
|
}
|
2024-07-07 20:45:18 +08:00
|
|
|
|
2024-03-10 10:58:58 +08:00
|
|
|
if ($this->getOption('all')) {
|
|
|
|
|
logger()->notice('Downloading with --all option will take more times to download, we recommend you to download with --for-extensions option !');
|
2023-10-22 16:35:15 +08:00
|
|
|
}
|
2023-04-30 12:42:19 +08:00
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// Process -U options
|
|
|
|
|
$custom_urls = [];
|
|
|
|
|
foreach ($this->input->getOption('custom-url') as $value) {
|
|
|
|
|
[$source_name, $url] = explode(':', $value, 2);
|
|
|
|
|
$custom_urls[$source_name] = $url;
|
|
|
|
|
}
|
2024-09-05 00:00:58 +08:00
|
|
|
// Process -G options
|
|
|
|
|
$custom_gits = [];
|
|
|
|
|
foreach ($this->input->getOption('custom-git') as $value) {
|
|
|
|
|
[$source_name, $branch, $url] = explode(':', $value, 3);
|
|
|
|
|
$custom_gits[$source_name] = [$branch, $url];
|
|
|
|
|
}
|
2023-07-28 00:02:49 +08:00
|
|
|
|
2024-07-07 20:45:18 +08:00
|
|
|
// If passing --prefer-pre-built option, we need to load pre-built library list from pre-built.json targeted releases
|
|
|
|
|
if ($this->getOption('prefer-pre-built')) {
|
|
|
|
|
$repo = Config::getPreBuilt('repo');
|
|
|
|
|
$pre_built_libs = Downloader::getLatestGithubRelease($repo, [
|
|
|
|
|
'repo' => $repo,
|
|
|
|
|
'prefer-stable' => Config::getPreBuilt('prefer-stable'),
|
|
|
|
|
], false);
|
|
|
|
|
} else {
|
|
|
|
|
$pre_built_libs = [];
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-23 20:12:47 +08:00
|
|
|
// Download them
|
|
|
|
|
f_mkdir(DOWNLOAD_PATH);
|
|
|
|
|
$cnt = count($chosen_sources);
|
|
|
|
|
$ni = 0;
|
|
|
|
|
foreach ($chosen_sources as $source) {
|
|
|
|
|
++$ni;
|
|
|
|
|
if (isset($custom_urls[$source])) {
|
|
|
|
|
$config = Config::getSource($source);
|
|
|
|
|
$new_config = [
|
|
|
|
|
'type' => 'url',
|
|
|
|
|
'url' => $custom_urls[$source],
|
|
|
|
|
];
|
|
|
|
|
if (isset($config['path'])) {
|
|
|
|
|
$new_config['path'] = $config['path'];
|
|
|
|
|
}
|
|
|
|
|
if (isset($config['filename'])) {
|
|
|
|
|
$new_config['filename'] = $config['filename'];
|
|
|
|
|
}
|
2025-03-30 15:17:09 +08:00
|
|
|
logger()->info("[{$ni}/{$cnt}] Downloading source {$source} from custom url: {$new_config['url']}");
|
2023-10-23 20:12:47 +08:00
|
|
|
Downloader::downloadSource($source, $new_config, true);
|
2024-09-05 00:00:58 +08:00
|
|
|
} elseif (isset($custom_gits[$source])) {
|
|
|
|
|
$config = Config::getSource($source);
|
|
|
|
|
$new_config = [
|
|
|
|
|
'type' => 'git',
|
|
|
|
|
'rev' => $custom_gits[$source][0],
|
|
|
|
|
'url' => $custom_gits[$source][1],
|
|
|
|
|
];
|
|
|
|
|
if (isset($config['path'])) {
|
|
|
|
|
$new_config['path'] = $config['path'];
|
|
|
|
|
}
|
2025-03-30 15:17:09 +08:00
|
|
|
logger()->info("[{$ni}/{$cnt}] Downloading source {$source} from custom git: {$new_config['url']}");
|
2024-09-05 00:00:58 +08:00
|
|
|
Downloader::downloadSource($source, $new_config, true);
|
2023-10-23 20:12:47 +08:00
|
|
|
} else {
|
2024-07-07 20:45:18 +08:00
|
|
|
$config = Config::getSource($source);
|
|
|
|
|
// Prefer pre-built, we need to search pre-built library
|
|
|
|
|
if ($this->getOption('prefer-pre-built') && ($config['provide-pre-built'] ?? false) === true) {
|
|
|
|
|
// We need to replace pattern
|
2025-03-30 16:53:14 +08:00
|
|
|
$replace = [
|
|
|
|
|
'{name}' => $source,
|
|
|
|
|
'{arch}' => arch2gnu(php_uname('m')),
|
|
|
|
|
'{os}' => strtolower(PHP_OS_FAMILY),
|
|
|
|
|
'{libc}' => getenv('SPC_LIBC') ?: 'default',
|
2025-03-30 20:16:41 +08:00
|
|
|
'{libcver}' => PHP_OS_FAMILY === 'Linux' ? (SystemUtil::getLibcVersionIfExists() ?? 'default') : 'default',
|
2025-03-30 16:53:14 +08:00
|
|
|
];
|
|
|
|
|
$find = str_replace(array_keys($replace), array_values($replace), Config::getPreBuilt('match-pattern'));
|
2024-07-07 20:45:18 +08:00
|
|
|
// find filename in asset list
|
|
|
|
|
if (($url = $this->findPreBuilt($pre_built_libs, $find)) !== null) {
|
2025-03-30 15:17:09 +08:00
|
|
|
logger()->info("[{$ni}/{$cnt}] Downloading pre-built content {$source}");
|
2025-03-30 23:27:43 +08:00
|
|
|
Downloader::downloadSource($source, ['type' => 'url', 'url' => $url], $force_all || in_array($source, $force_list), SPC_DOWNLOAD_PRE_BUILT);
|
2024-07-07 20:45:18 +08:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
logger()->warning("Pre-built content not found for {$source}, fallback to source download");
|
|
|
|
|
}
|
2025-03-30 15:17:09 +08:00
|
|
|
logger()->info("[{$ni}/{$cnt}] Downloading source {$source}");
|
2024-07-07 20:45:18 +08:00
|
|
|
Downloader::downloadSource($source, $config, $force_all || in_array($source, $force_list));
|
2023-07-28 00:02:49 +08:00
|
|
|
}
|
|
|
|
|
}
|
2023-10-23 20:12:47 +08:00
|
|
|
$time = round(microtime(true) - START_TIME, 3);
|
|
|
|
|
logger()->info('Download complete, used ' . $time . ' s !');
|
|
|
|
|
return static::SUCCESS;
|
|
|
|
|
} catch (DownloaderException $e) {
|
|
|
|
|
logger()->error($e->getMessage());
|
|
|
|
|
return static::FAILURE;
|
|
|
|
|
} catch (WrongUsageException $e) {
|
|
|
|
|
logger()->critical($e->getMessage());
|
|
|
|
|
return static::FAILURE;
|
2023-04-30 12:42:19 +08:00
|
|
|
}
|
|
|
|
|
}
|
2023-10-22 12:37:13 +08:00
|
|
|
|
2024-03-10 10:58:58 +08:00
|
|
|
/**
|
|
|
|
|
* @throws RuntimeException
|
|
|
|
|
* @throws WrongUsageException
|
|
|
|
|
*/
|
2023-10-22 12:37:13 +08:00
|
|
|
private function downloadFromZip(string $path): int
|
|
|
|
|
{
|
|
|
|
|
if (!file_exists($path)) {
|
|
|
|
|
logger()->critical('File ' . $path . ' not exist or not a zip archive.');
|
|
|
|
|
return static::FAILURE;
|
|
|
|
|
}
|
|
|
|
|
// remove old download files first
|
|
|
|
|
if (is_dir(DOWNLOAD_PATH)) {
|
|
|
|
|
logger()->warning('You are doing some operations that not recoverable: removing directories below');
|
|
|
|
|
logger()->warning(DOWNLOAD_PATH);
|
|
|
|
|
logger()->alert('I will remove these dir after 5 seconds !');
|
|
|
|
|
sleep(5);
|
|
|
|
|
f_passthru((PHP_OS_FAMILY === 'Windows' ? 'rmdir /s /q ' : 'rm -rf ') . DOWNLOAD_PATH);
|
|
|
|
|
}
|
|
|
|
|
// unzip command check
|
|
|
|
|
if (PHP_OS_FAMILY !== 'Windows' && !$this->findCommand('unzip')) {
|
|
|
|
|
logger()->critical('Missing unzip command, you need to install it first !');
|
|
|
|
|
logger()->critical('You can use "bin/spc doctor" command to check and install required tools');
|
|
|
|
|
return static::FAILURE;
|
|
|
|
|
}
|
|
|
|
|
// create downloads
|
|
|
|
|
try {
|
|
|
|
|
if (PHP_OS_FAMILY !== 'Windows') {
|
2024-01-08 23:32:04 +08:00
|
|
|
$abs_path = realpath($path);
|
|
|
|
|
f_passthru('mkdir ' . DOWNLOAD_PATH . ' && cd ' . DOWNLOAD_PATH . ' && unzip ' . escapeshellarg($abs_path));
|
2024-03-10 10:58:58 +08:00
|
|
|
} else {
|
|
|
|
|
// Windows TODO
|
|
|
|
|
throw new WrongUsageException('Windows currently does not support --from-zip !');
|
2023-10-22 12:37:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!file_exists(DOWNLOAD_PATH . '/.lock.json')) {
|
|
|
|
|
throw new RuntimeException('.lock.json not exist in "downloads/"');
|
|
|
|
|
}
|
|
|
|
|
} catch (RuntimeException $e) {
|
|
|
|
|
logger()->critical('Extract failed: ' . $e->getMessage());
|
|
|
|
|
return static::FAILURE;
|
|
|
|
|
}
|
|
|
|
|
logger()->info('Extract success');
|
|
|
|
|
return static::SUCCESS;
|
|
|
|
|
}
|
2023-10-22 16:35:15 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Calculate the sources by extensions
|
|
|
|
|
*
|
2024-03-05 21:43:09 +08:00
|
|
|
* @param array $extensions extension list
|
|
|
|
|
* @param bool $include_suggests include suggested libs and extensions (default: true)
|
2023-10-22 16:35:15 +08:00
|
|
|
* @throws FileSystemException
|
|
|
|
|
* @throws WrongUsageException
|
|
|
|
|
*/
|
|
|
|
|
private function calculateSourcesByExt(array $extensions, bool $include_suggests = true): array
|
|
|
|
|
{
|
2024-02-16 18:56:33 +08:00
|
|
|
[$extensions, $libraries] = $include_suggests ? DependencyUtil::getExtsAndLibs($extensions, [], true, true) : DependencyUtil::getExtsAndLibs($extensions);
|
2023-10-22 16:35:15 +08:00
|
|
|
$sources = [];
|
|
|
|
|
foreach ($extensions as $extension) {
|
|
|
|
|
if (Config::getExt($extension, 'type') === 'external') {
|
|
|
|
|
$sources[] = Config::getExt($extension, 'source');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
foreach ($libraries as $library) {
|
2025-03-08 14:29:44 +08:00
|
|
|
$source = Config::getLib($library, 'source');
|
|
|
|
|
if ($source !== null) {
|
|
|
|
|
$sources[] = $source;
|
|
|
|
|
}
|
2023-10-22 16:35:15 +08:00
|
|
|
}
|
|
|
|
|
return array_values(array_unique($sources));
|
|
|
|
|
}
|
2024-03-05 21:43:09 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Calculate the sources by libraries
|
|
|
|
|
*
|
|
|
|
|
* @param array $libs library list
|
|
|
|
|
* @param bool $include_suggests include suggested libs (default: true)
|
|
|
|
|
* @throws FileSystemException
|
|
|
|
|
* @throws WrongUsageException
|
|
|
|
|
*/
|
|
|
|
|
private function calculateSourcesByLib(array $libs, bool $include_suggests = true): array
|
|
|
|
|
{
|
|
|
|
|
$libs = DependencyUtil::getLibs($libs, $include_suggests);
|
|
|
|
|
$sources = [];
|
|
|
|
|
foreach ($libs as $library) {
|
|
|
|
|
$sources[] = Config::getLib($library, 'source');
|
|
|
|
|
}
|
|
|
|
|
return array_values(array_unique($sources));
|
|
|
|
|
}
|
2024-07-07 20:45:18 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param array $assets Asset list from GitHub API
|
|
|
|
|
* @param string $filename Match file name, e.g. pkg-config-aarch64-darwin.txz
|
|
|
|
|
* @return null|string Return the download URL if found, otherwise null
|
|
|
|
|
*/
|
|
|
|
|
private function findPreBuilt(array $assets, string $filename): ?string
|
|
|
|
|
{
|
2025-03-30 20:21:56 +08:00
|
|
|
logger()->debug("Finding pre-built asset {$filename}");
|
2024-07-07 20:45:18 +08:00
|
|
|
foreach ($assets as $asset) {
|
|
|
|
|
if ($asset['name'] === $filename) {
|
|
|
|
|
return $asset['browser_download_url'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2023-04-30 12:42:19 +08:00
|
|
|
}
|