2018-02-20 12:13:43 +01:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
/*
|
2020-02-17 14:13:46 +01:00
|
|
|
Copyright 2016-2020 Daniil Gentili
|
2018-02-20 12:13:43 +01:00
|
|
|
(https://daniil.it)
|
|
|
|
This file is part of MadelineProto.
|
|
|
|
MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with MadelineProto.
|
|
|
|
If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-20 15:49:54 +01:00
|
|
|
if (!isset($argv[3])) {
|
2018-02-20 15:50:16 +01:00
|
|
|
echo 'Usage: '.$argv[0].' inputDir output.phar ref'.PHP_EOL;
|
2018-02-20 15:49:54 +01:00
|
|
|
die(1);
|
2018-02-20 12:13:43 +01:00
|
|
|
}
|
|
|
|
|
2022-12-08 20:16:40 +01:00
|
|
|
@unlink($argv[2]);
|
2018-02-20 12:13:43 +01:00
|
|
|
|
2019-12-25 19:13:48 +01:00
|
|
|
$p = new Phar(__DIR__.'/../'.$argv[2], 0, $argv[2]);
|
2023-08-20 23:14:34 +02:00
|
|
|
$p->buildFromDirectory(realpath($argv[1]), '/^((?!tests).)*(\.php|\.py|\.exe|\.tl|\.json|\.dat|\.h|\.wav)$/i');
|
2018-02-20 12:13:43 +01:00
|
|
|
|
2018-02-25 17:17:28 +01:00
|
|
|
$p->setStub('<?php
|
2018-03-01 13:28:16 +01:00
|
|
|
|
2024-01-08 19:26:40 +01:00
|
|
|
if ((PHP_MAJOR_VERSION === 8 && PHP_MINOR_VERSION < 2) || PHP_MAJOR_VERSION <= 7) {
|
|
|
|
die("MadelineProto requires at least PHP 8.2.".PHP_EOL);
|
2023-07-09 18:42:42 +02:00
|
|
|
}
|
|
|
|
if (PHP_INT_SIZE < 8) {
|
2024-01-08 19:26:40 +01:00
|
|
|
die("A 64-bit build of PHP is required to run MadelineProto, PHP 8.2 is required.".PHP_EOL);
|
2023-07-09 18:42:42 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 22:20:40 +02:00
|
|
|
if (\extension_loaded("psr")) {
|
|
|
|
die("Please uninstall the psr extension to use MadelineProto!");
|
|
|
|
}
|
|
|
|
|
2023-07-09 18:42:42 +02:00
|
|
|
if (\defined("MADELINE_PHAR")) {
|
2024-06-16 22:20:40 +02:00
|
|
|
die("Please do not include madeline.phar twice, use require_once \'madeline.phar\';!");
|
2023-07-09 18:42:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!\defined(\'MADELINE_ALLOW_COMPOSER\') && \class_exists(\Composer\Autoload\ClassLoader::class)) {
|
2024-06-16 22:20:40 +02:00
|
|
|
die(\'Composer autoloader detected: madeline.phar is incompatible with Composer, please install MadelineProto using composer: https://docs.madelineproto.xyz/docs/INSTALLATION.html#composer-from-existing-project\');
|
2023-07-09 18:42:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
\define(\'MADELINE_PHAR\', __FILE__);
|
|
|
|
|
2023-02-12 14:31:35 +01:00
|
|
|
if (defined("MADELINE_REAL_ROOT")) {
|
|
|
|
@chdir(MADELINE_REAL_ROOT);
|
2023-07-09 18:42:42 +02:00
|
|
|
} else {
|
|
|
|
$backtrace = \debug_backtrace(0);
|
2023-07-17 07:52:13 +02:00
|
|
|
if (\count($backtrace) === 0) {
|
2023-07-09 18:42:42 +02:00
|
|
|
if (isset($GLOBALS["argv"]) && !empty($GLOBALS["argv"])) {
|
|
|
|
$arguments = \array_slice($GLOBALS["argv"], 1);
|
|
|
|
} elseif (isset($_GET["argv"]) && !empty($_GET["argv"])) {
|
|
|
|
$arguments = $_GET["argv"];
|
|
|
|
} else {
|
|
|
|
$arguments = [];
|
|
|
|
}
|
|
|
|
if (\count($arguments) >= 2) {
|
|
|
|
\define(\MADELINE_WORKER_TYPE::class, \array_shift($arguments));
|
|
|
|
\define(\MADELINE_WORKER_ARGS::class, $arguments);
|
|
|
|
} else {
|
|
|
|
die("MadelineProto loader: you must include this file in another PHP script, see https://docs.madelineproto.xyz for more info.".PHP_EOL);
|
|
|
|
}
|
2023-07-17 07:55:42 +02:00
|
|
|
\define("MADELINE_REAL_ROOT", __DIR__);
|
2023-07-14 16:34:52 +02:00
|
|
|
@chdir(\MADELINE_REAL_ROOT);
|
2023-07-09 18:42:42 +02:00
|
|
|
}
|
2023-02-12 14:31:35 +01:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:44:12 +01:00
|
|
|
Phar::interceptFileFuncs();
|
2018-02-25 17:17:28 +01:00
|
|
|
Phar::mapPhar("'.$argv[2].'");
|
2023-07-09 18:42:42 +02:00
|
|
|
$result = require_once "phar://'.$argv[2].'/vendor/autoload.php";
|
|
|
|
|
|
|
|
if (\defined("MADELINE_WORKER_TYPE") && \constant("MADELINE_WORKER_TYPE") === "madeline-ipc") {
|
|
|
|
require_once "phar://'.$argv[2].'/vendor/danog/madelineproto/src/Ipc/Runner/entry.php";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
2018-02-25 17:17:28 +01:00
|
|
|
|
|
|
|
__HALT_COMPILER(); ?>');
|