mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
Merge pull request #1121 from PrivateBin/php8
merge PHP 8 branch, upgrading to PHPunit 9 and minimum PHP version 7.3
This commit is contained in:
commit
5296f05904
37
.github/workflows/refresh-php8.yml
vendored
37
.github/workflows/refresh-php8.yml
vendored
@ -1,37 +0,0 @@
|
|||||||
name: Refresh PHP 8 branch
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ master ]
|
|
||||||
schedule:
|
|
||||||
- cron: '42 2 * * *'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout php8 branch
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
# directly checkout the php8 branch
|
|
||||||
ref: php8
|
|
||||||
# Number of commits to fetch. 0 indicates all history for all branches and tags.
|
|
||||||
# Default: 1
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Merge master changes into php8
|
|
||||||
run: |
|
|
||||||
git config user.name "github-actions[bot]"
|
|
||||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
||||||
git merge origin/master
|
|
||||||
|
|
||||||
- name: Push new changes
|
|
||||||
uses: github-actions-x/commit@v2.9
|
|
||||||
with:
|
|
||||||
name: github-actions[bot]
|
|
||||||
email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
push-branch: 'php8'
|
|
||||||
|
|
46
.github/workflows/tests.yml
vendored
46
.github/workflows/tests.yml
vendored
@ -1,5 +1,7 @@
|
|||||||
name: Tests
|
name: Tests
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
@ -12,23 +14,23 @@ jobs:
|
|||||||
run: composer validate
|
run: composer validate
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: composer install --prefer-dist --no-dev
|
run: composer install --prefer-dist --no-dev
|
||||||
|
|
||||||
PHPunit:
|
PHPunit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
|
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2']
|
||||||
name: PHP ${{ matrix.php-versions }} unit tests on ${{ matrix.operating-system }}
|
name: PHP ${{ matrix.php-versions }} unit tests on ${{ matrix.operating-system }}
|
||||||
env:
|
env:
|
||||||
extensions: gd, sqlite3
|
extensions: gd, sqlite3
|
||||||
extensions-cache-key-name: phpextensions
|
extensions-cache-key-name: phpextensions
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
# let's get started!
|
# let's get started!
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
# cache PHP extensions
|
# cache PHP extensions
|
||||||
- name: Setup cache environment
|
- name: Setup cache environment
|
||||||
id: extcache
|
id: extcache
|
||||||
@ -44,77 +46,75 @@ jobs:
|
|||||||
path: ${{ steps.extcache.outputs.dir }}
|
path: ${{ steps.extcache.outputs.dir }}
|
||||||
key: ${{ steps.extcache.outputs.key }}
|
key: ${{ steps.extcache.outputs.key }}
|
||||||
restore-keys: ${{ runner.os }}-${{ env.extensions-cache-key }}
|
restore-keys: ${{ runner.os }}-${{ env.extensions-cache-key }}
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-versions }}
|
php-version: ${{ matrix.php-versions }}
|
||||||
extensions: ${{ env.extensions }}
|
extensions: ${{ env.extensions }}
|
||||||
|
|
||||||
# Setup GitHub CI PHP problem matchers
|
# Setup GitHub CI PHP problem matchers
|
||||||
# https://github.com/shivammathur/setup-php#problem-matchers
|
# https://github.com/shivammathur/setup-php#problem-matchers
|
||||||
- name: Setup problem matchers for PHP
|
- name: Setup problem matchers for PHP
|
||||||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
||||||
|
|
||||||
- name: Setup problem matchers for PHPUnit
|
- name: Setup problem matchers for PHPUnit
|
||||||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
||||||
|
|
||||||
# composer cache
|
# composer cache
|
||||||
- name: Remove composer lock
|
- name: Remove composer lock
|
||||||
run: rm composer.lock
|
run: rm composer.lock
|
||||||
|
|
||||||
- name: Get composer cache directory
|
- name: Get composer cache directory
|
||||||
id: composer-cache
|
id: composer-cache
|
||||||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
# http://man7.org/linux/man-pages/man1/date.1.html
|
# http://man7.org/linux/man-pages/man1/date.1.html
|
||||||
# https://github.com/actions/cache#creating-a-cache-key
|
# https://github.com/actions/cache#creating-a-cache-key
|
||||||
- name: Get Date
|
- name: Get Date
|
||||||
id: get-date
|
id: get-date
|
||||||
run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
|
run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
path: ${{ steps.composer-cache.outputs.dir }}
|
||||||
key: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/composer.json') }}
|
key: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/composer.json') }}
|
||||||
restore-keys: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-
|
restore-keys: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-
|
||||||
|
|
||||||
# composer installation
|
# composer installation
|
||||||
- name: Setup PHPunit
|
- name: Setup PHPunit
|
||||||
run: composer install -n
|
run: composer install -n
|
||||||
|
|
||||||
- name: Install Google Cloud Storage
|
- name: Install Google Cloud Storage
|
||||||
run: composer require google/cloud-storage
|
run: composer require google/cloud-storage
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
run: ../vendor/bin/phpunit --no-coverage
|
run: ../vendor/bin/phpunit --no-coverage
|
||||||
working-directory: tst
|
working-directory: tst
|
||||||
|
|
||||||
Mocha:
|
Mocha:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: '16'
|
node-version: '16'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
cache-dependency-path: 'js/package-lock.json'
|
cache-dependency-path: 'js/package-lock.json'
|
||||||
|
|
||||||
- name: Setup Mocha
|
- name: Setup Mocha
|
||||||
run: npm install -g mocha
|
run: npm install -g mocha
|
||||||
|
|
||||||
- name: Setup Node modules
|
- name: Setup Node modules
|
||||||
run: npm ci
|
run: npm ci
|
||||||
working-directory: js
|
working-directory: js
|
||||||
|
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
run: npm test
|
run: npm test
|
||||||
working-directory: js
|
working-directory: js
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# PrivateBin version history
|
# PrivateBin version history
|
||||||
|
|
||||||
|
* **1.6.0 (not yet released)**
|
||||||
|
* CHANGED: Minimum required PHP version is 7.3, due to upgrading PHPunit (#707)
|
||||||
* **1.5.2 (2023-07-09)**
|
* **1.5.2 (2023-07-09)**
|
||||||
* ADDED: Allow AWS SDK to use default credential provider chain for S3Storage (#1070)
|
* ADDED: Allow AWS SDK to use default credential provider chain for S3Storage (#1070)
|
||||||
* CHANGED: Upgrading libraries to: DOMpurify 3.0.4 & jQuery 3.7.0
|
* CHANGED: Upgrading libraries to: DOMpurify 3.0.4 & jQuery 3.7.0
|
||||||
|
@ -18,14 +18,7 @@ install and configure PrivateBin on your server. It's available on
|
|||||||
|
|
||||||
### Minimal Requirements
|
### Minimal Requirements
|
||||||
|
|
||||||
- PHP version 7.0 or above
|
- PHP version 7.3 or above
|
||||||
- Or PHP version 5.6 AND _one_ of the following sources of cryptographically
|
|
||||||
safe randomness:
|
|
||||||
- [Libsodium](https://download.libsodium.org/libsodium/content/installation/)
|
|
||||||
and it's [PHP extension](https://paragonie.com/book/pecl-libsodium/read/00-intro.md#installing-libsodium)
|
|
||||||
- `open_basedir` access to `/dev/urandom`
|
|
||||||
- mcrypt extension AND `open_basedir` access to `/dev/urandom`
|
|
||||||
- com_dotnet extension
|
|
||||||
- GD extension (when using identicon or vizhash icons, jdenticon works without it)
|
- GD extension (when using identicon or vizhash icons, jdenticon works without it)
|
||||||
- zlib extension
|
- zlib extension
|
||||||
- some disk space or a database supported by [PDO](https://php.net/manual/book.pdo.php)
|
- some disk space or a database supported by [PDO](https://php.net/manual/book.pdo.php)
|
||||||
|
@ -342,12 +342,11 @@ any theory of liability, whether in contract, strict liability, or tort
|
|||||||
(including negligence or otherwise) arising in any way out of the use of this
|
(including negligence or otherwise) arising in any way out of the use of this
|
||||||
software, even if advised of the possibility of such damage.
|
software, even if advised of the possibility of such damage.
|
||||||
|
|
||||||
## MIT License for base64.js version 1.7, Bootstrap, Identicon, random_compat, Composer, kjua and base-x
|
## MIT License for base64.js version 1.7, Bootstrap, Identicon, Composer, kjua and base-x
|
||||||
|
|
||||||
Copyright © 2012 Dan Kogai
|
Copyright © 2012 Dan Kogai
|
||||||
Copyright © 2011-2016 Twitter, Inc.
|
Copyright © 2011-2016 Twitter, Inc.
|
||||||
Copyright © 2013 Benjamin Laugueux <benjamin@yzalis.com>
|
Copyright © 2013 Benjamin Laugueux <benjamin@yzalis.com>
|
||||||
Copyright © 2015 Paragon Initiative Enterprises
|
|
||||||
Copyright © 2016 Nils Adermann, Jordi Boggiano
|
Copyright © 2016 Nils Adermann, Jordi Boggiano
|
||||||
Copyright © 2016 Lars Jung (https://larsjung.de)
|
Copyright © 2016 Lars Jung (https://larsjung.de)
|
||||||
Copyright © 2018 base-x contributors
|
Copyright © 2018 base-x contributors
|
||||||
|
@ -410,13 +410,14 @@ class ConfigurationTestGenerator
|
|||||||
* DO NOT EDIT: This file is generated automatically using configGenerator.php
|
* DO NOT EDIT: This file is generated automatically using configGenerator.php
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Controller;
|
use PrivateBin\Controller;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
use PrivateBin\Persistence\TrafficLimiter;
|
use PrivateBin\Persistence\TrafficLimiter;
|
||||||
use PrivateBin\Request;
|
use PrivateBin\Request;
|
||||||
|
|
||||||
class ConfigurationCombinationsTest extends PHPUnit_Framework_TestCase
|
class ConfigurationCombinationsTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_conf;
|
private $_conf;
|
||||||
|
|
||||||
@ -424,7 +425,7 @@ class ConfigurationCombinationsTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
private $_path;
|
private $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
Helper::confBackup();
|
Helper::confBackup();
|
||||||
@ -435,7 +436,7 @@ class ConfigurationCombinationsTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->reset();
|
$this->reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
unlink(CONF);
|
unlink(CONF);
|
||||||
@ -564,7 +565,7 @@ EOT;
|
|||||||
case 'Delete':
|
case 'Delete':
|
||||||
$code .= <<<'EOT'
|
$code .= <<<'EOT'
|
||||||
|
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="status"[^>]*>.*Paste was properly deleted[^<]*</div>#s',
|
'#<div[^>]*id="status"[^>]*>.*Paste was properly deleted[^<]*</div>#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs deleted status correctly'
|
'outputs deleted status correctly'
|
||||||
|
@ -24,8 +24,7 @@
|
|||||||
"docs" : "https://privatebin.info/codedoc/"
|
"docs" : "https://privatebin.info/codedoc/"
|
||||||
},
|
},
|
||||||
"require" : {
|
"require" : {
|
||||||
"php" : "^5.6.0 || ^7.0 || ^8.0",
|
"php" : "^7.3 || ^8.0",
|
||||||
"paragonie/random_compat" : "2.0.21",
|
|
||||||
"yzalis/identicon" : "2.0.0",
|
"yzalis/identicon" : "2.0.0",
|
||||||
"mlocati/ip-lib" : "1.18.0",
|
"mlocati/ip-lib" : "1.18.0",
|
||||||
"jdenticon/jdenticon": "1.0.2"
|
"jdenticon/jdenticon": "1.0.2"
|
||||||
@ -35,7 +34,7 @@
|
|||||||
"aws/aws-sdk-php" : "3.275.1"
|
"aws/aws-sdk-php" : "3.275.1"
|
||||||
},
|
},
|
||||||
"require-dev" : {
|
"require-dev" : {
|
||||||
"phpunit/phpunit" : "^4.6 || ^5.0"
|
"phpunit/phpunit" : "^9"
|
||||||
},
|
},
|
||||||
"autoload" : {
|
"autoload" : {
|
||||||
"psr-4" : {
|
"psr-4" : {
|
||||||
@ -43,6 +42,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"config" : {
|
"config" : {
|
||||||
"autoloader-suffix" : "DontChange"
|
"autoloader-suffix" : "DontChange",
|
||||||
|
"optimize-autoloader": true,
|
||||||
|
"preferred-install": "dist",
|
||||||
|
"sort-packages": true,
|
||||||
|
"platform": {
|
||||||
|
"php": "7.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
1669
composer.lock
generated
1669
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -35,7 +35,7 @@ class Controller
|
|||||||
*
|
*
|
||||||
* @const string
|
* @const string
|
||||||
*/
|
*/
|
||||||
const MIN_PHP_VERSION = '5.6.0';
|
const MIN_PHP_VERSION = '7.3.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* show the same error message if the paste expired or does not exist
|
* show the same error message if the paste expired or does not exist
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Configuration;
|
use PrivateBin\Configuration;
|
||||||
|
|
||||||
class ConfigurationTest extends PHPUnit_Framework_TestCase
|
class ConfigurationTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_minimalConfig;
|
private $_minimalConfig;
|
||||||
|
|
||||||
@ -10,7 +11,7 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
private $_path;
|
private $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
Helper::confBackup();
|
Helper::confBackup();
|
||||||
@ -23,7 +24,7 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
Helper::rmDir($this->_path);
|
Helper::rmDir($this->_path);
|
||||||
@ -55,13 +56,11 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals($this->_options, $conf->get(), 'returns correct defaults on missing file');
|
$this->assertEquals($this->_options, $conf->get(), 'returns correct defaults on missing file');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 2
|
|
||||||
*/
|
|
||||||
public function testHandleBlankConfigFile()
|
public function testHandleBlankConfigFile()
|
||||||
{
|
{
|
||||||
file_put_contents(CONF, '');
|
file_put_contents(CONF, '');
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(2);
|
||||||
new Configuration;
|
new Configuration;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,25 +71,21 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals($this->_options, $conf->get(), 'returns correct defaults on empty file');
|
$this->assertEquals($this->_options, $conf->get(), 'returns correct defaults on empty file');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 3
|
|
||||||
*/
|
|
||||||
public function testHandleInvalidSection()
|
public function testHandleInvalidSection()
|
||||||
{
|
{
|
||||||
file_put_contents(CONF, $this->_minimalConfig);
|
file_put_contents(CONF, $this->_minimalConfig);
|
||||||
$conf = new Configuration;
|
$conf = new Configuration;
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(3);
|
||||||
$conf->getKey('foo', 'bar');
|
$conf->getKey('foo', 'bar');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 4
|
|
||||||
*/
|
|
||||||
public function testHandleInvalidKey()
|
public function testHandleInvalidKey()
|
||||||
{
|
{
|
||||||
file_put_contents(CONF, $this->_minimalConfig);
|
file_put_contents(CONF, $this->_minimalConfig);
|
||||||
$conf = new Configuration;
|
$conf = new Configuration;
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(4);
|
||||||
$conf->getKey('foo');
|
$conf->getKey('foo');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,18 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Controller;
|
use PrivateBin\Controller;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
use PrivateBin\Persistence\TrafficLimiter;
|
use PrivateBin\Persistence\TrafficLimiter;
|
||||||
use PrivateBin\Request;
|
use PrivateBin\Request;
|
||||||
|
|
||||||
class ControllerTest extends PHPUnit_Framework_TestCase
|
class ControllerTest extends TestCase
|
||||||
{
|
{
|
||||||
protected $_data;
|
protected $_data;
|
||||||
|
|
||||||
protected $_path;
|
protected $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -22,7 +23,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->reset();
|
$this->reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
unlink(CONF);
|
unlink(CONF);
|
||||||
@ -55,17 +56,17 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertContains(
|
$this->assertStringContainsString(
|
||||||
'<title>PrivateBin</title>',
|
'<title>PrivateBin</title>',
|
||||||
$content,
|
$content,
|
||||||
'outputs title correctly'
|
'outputs title correctly'
|
||||||
);
|
);
|
||||||
$this->assertNotContains(
|
$this->assertStringNotContainsString(
|
||||||
'id="shortenbutton"',
|
'id="shortenbutton"',
|
||||||
$content,
|
$content,
|
||||||
'doesn\'t output shortener button'
|
'doesn\'t output shortener button'
|
||||||
);
|
);
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'# href="https://' . preg_quote($_SERVER['HTTP_HOST']) . '/">switching to HTTPS#',
|
'# href="https://' . preg_quote($_SERVER['HTTP_HOST']) . '/">switching to HTTPS#',
|
||||||
$content,
|
$content,
|
||||||
'outputs configured https URL correctly'
|
'outputs configured https URL correctly'
|
||||||
@ -85,7 +86,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertContains(
|
$this->assertStringContainsString(
|
||||||
'<title>PrivateBin</title>',
|
'<title>PrivateBin</title>',
|
||||||
$content,
|
$content,
|
||||||
'outputs title correctly'
|
'outputs title correctly'
|
||||||
@ -106,7 +107,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertContains(
|
$this->assertStringContainsString(
|
||||||
'<title>PrivateBin</title>',
|
'<title>PrivateBin</title>',
|
||||||
$content,
|
$content,
|
||||||
'outputs title correctly'
|
'outputs title correctly'
|
||||||
@ -127,7 +128,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#id="shortenbutton"[^>]*data-shortener="' . preg_quote($shortener) . '"#',
|
'#id="shortenbutton"[^>]*data-shortener="' . preg_quote($shortener) . '"#',
|
||||||
$content,
|
$content,
|
||||||
'outputs configured shortener URL correctly'
|
'outputs configured shortener URL correctly'
|
||||||
@ -141,6 +142,8 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
public function testConf()
|
public function testConf()
|
||||||
{
|
{
|
||||||
file_put_contents(CONF, '');
|
file_put_contents(CONF, '');
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(2);
|
||||||
new Controller;
|
new Controller;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -809,7 +812,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="status"[^>]*>.*Paste was properly deleted\.#s',
|
'#<div[^>]*id="status"[^>]*>.*Paste was properly deleted\.#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs deleted status correctly'
|
'outputs deleted status correctly'
|
||||||
@ -829,7 +832,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="errormessage"[^>]*>.*Invalid paste ID\.#s',
|
'#<div[^>]*id="errormessage"[^>]*>.*Invalid paste ID\.#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs delete error correctly'
|
'outputs delete error correctly'
|
||||||
@ -848,7 +851,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="errormessage"[^>]*>.*Paste does not exist, has expired or has been deleted\.#s',
|
'#<div[^>]*id="errormessage"[^>]*>.*Paste does not exist, has expired or has been deleted\.#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs delete error correctly'
|
'outputs delete error correctly'
|
||||||
@ -867,7 +870,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="errormessage"[^>]*>.*Wrong deletion token\. Paste was not deleted\.#s',
|
'#<div[^>]*id="errormessage"[^>]*>.*Wrong deletion token\. Paste was not deleted\.#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs delete error correctly'
|
'outputs delete error correctly'
|
||||||
@ -915,7 +918,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="errormessage"[^>]*>.*Paste does not exist, has expired or has been deleted\.#s',
|
'#<div[^>]*id="errormessage"[^>]*>.*Paste does not exist, has expired or has been deleted\.#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs error correctly'
|
'outputs error correctly'
|
||||||
@ -938,7 +941,7 @@ class ControllerTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]*id="status"[^>]*>.*Paste was properly deleted\.#s',
|
'#<div[^>]*id="status"[^>]*>.*Paste was properly deleted\.#s',
|
||||||
$content,
|
$content,
|
||||||
'outputs deleted status correctly'
|
'outputs deleted status correctly'
|
||||||
|
@ -17,7 +17,7 @@ class ControllerWithDbTest extends ControllerTest
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
|
@ -14,7 +14,7 @@ class ControllerWithGcsTest extends ControllerTest
|
|||||||
private static $_bucket;
|
private static $_bucket;
|
||||||
private $_options = array();
|
private $_options = array();
|
||||||
|
|
||||||
public static function setUpBeforeClass()
|
public static function setUpBeforeClass(): void
|
||||||
{
|
{
|
||||||
$httpClient = new Client(array('debug'=>false));
|
$httpClient = new Client(array('debug'=>false));
|
||||||
$handler = HttpHandlerFactory::build($httpClient);
|
$handler = HttpHandlerFactory::build($httpClient);
|
||||||
@ -28,7 +28,7 @@ class ControllerWithGcsTest extends ControllerTest
|
|||||||
self::$_bucket = self::$_client->createBucket($name);
|
self::$_bucket = self::$_client->createBucket($name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Controller;
|
use PrivateBin\Controller;
|
||||||
use PrivateBin\Data\Database;
|
use PrivateBin\Data\Database;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
|
|
||||||
class DatabaseTest extends PHPUnit_Framework_TestCase
|
class DatabaseTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_model;
|
private $_model;
|
||||||
|
|
||||||
@ -18,14 +19,14 @@ class DatabaseTest extends PHPUnit_Framework_TestCase
|
|||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
);
|
);
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
$this->_model = new Database($this->_options);
|
$this->_model = new Database($this->_options);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
if (is_dir($this->_path)) {
|
if (is_dir($this->_path)) {
|
||||||
@ -42,7 +43,7 @@ class DatabaseTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertNotEquals($salt, '');
|
$this->assertNotEquals($salt, '');
|
||||||
ServerSalt::setStore($this->_model);
|
ServerSalt::setStore($this->_model);
|
||||||
ServerSalt::get();
|
ServerSalt::get();
|
||||||
$this->assertFileNotExists($file, 'legacy ServerSalt got removed');
|
$this->assertFileDoesNotExist($file, 'legacy ServerSalt got removed');
|
||||||
$this->assertEquals($salt, ServerSalt::get(), 'ServerSalt got preserved & migrated');
|
$this->assertEquals($salt, ServerSalt::get(), 'ServerSalt got preserved & migrated');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,124 +137,102 @@ class DatabaseTest extends PHPUnit_Framework_TestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException PDOException
|
|
||||||
*/
|
|
||||||
public function testGetIbmInstance()
|
public function testGetIbmInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(PDOException::class);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'ibm:', 'usr' => null, 'pwd' => null,
|
'dsn' => 'ibm:', 'usr' => null, 'pwd' => null,
|
||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException PDOException
|
|
||||||
*/
|
|
||||||
public function testGetInformixInstance()
|
public function testGetInformixInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(PDOException::class);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'informix:', 'usr' => null, 'pwd' => null,
|
'dsn' => 'informix:', 'usr' => null, 'pwd' => null,
|
||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException PDOException
|
|
||||||
*/
|
|
||||||
public function testGetMssqlInstance()
|
public function testGetMssqlInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(PDOException::class);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'mssql:', 'usr' => null, 'pwd' => null,
|
'dsn' => 'mssql:', 'usr' => null, 'pwd' => null,
|
||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException PDOException
|
|
||||||
*/
|
|
||||||
public function testGetMysqlInstance()
|
public function testGetMysqlInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(PDOException::class);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'mysql:', 'usr' => null, 'pwd' => null,
|
'dsn' => 'mysql:', 'usr' => null, 'pwd' => null,
|
||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException PDOException
|
|
||||||
*/
|
|
||||||
public function testGetOciInstance()
|
public function testGetOciInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(PDOException::class);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'oci:', 'usr' => null, 'pwd' => null,
|
'dsn' => 'oci:', 'usr' => null, 'pwd' => null,
|
||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException PDOException
|
|
||||||
*/
|
|
||||||
public function testGetPgsqlInstance()
|
public function testGetPgsqlInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(PDOException::class);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'pgsql:', 'usr' => null, 'pwd' => null,
|
'dsn' => 'pgsql:', 'usr' => null, 'pwd' => null,
|
||||||
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
'opt' => array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 5
|
|
||||||
*/
|
|
||||||
public function testGetFooInstance()
|
public function testGetFooInstance()
|
||||||
{
|
{
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(5);
|
||||||
new Database(array(
|
new Database(array(
|
||||||
'dsn' => 'foo:', 'usr' => null, 'pwd' => null, 'opt' => null,
|
'dsn' => 'foo:', 'usr' => null, 'pwd' => null, 'opt' => null,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 6
|
|
||||||
*/
|
|
||||||
public function testMissingDsn()
|
public function testMissingDsn()
|
||||||
{
|
{
|
||||||
$options = $this->_options;
|
$options = $this->_options;
|
||||||
unset($options['dsn']);
|
unset($options['dsn']);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(6);
|
||||||
new Database($options);
|
new Database($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 6
|
|
||||||
*/
|
|
||||||
public function testMissingUsr()
|
public function testMissingUsr()
|
||||||
{
|
{
|
||||||
$options = $this->_options;
|
$options = $this->_options;
|
||||||
unset($options['usr']);
|
unset($options['usr']);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(6);
|
||||||
new Database($options);
|
new Database($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 6
|
|
||||||
*/
|
|
||||||
public function testMissingPwd()
|
public function testMissingPwd()
|
||||||
{
|
{
|
||||||
$options = $this->_options;
|
$options = $this->_options;
|
||||||
unset($options['pwd']);
|
unset($options['pwd']);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(6);
|
||||||
new Database($options);
|
new Database($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 6
|
|
||||||
*/
|
|
||||||
public function testMissingOpt()
|
public function testMissingOpt()
|
||||||
{
|
{
|
||||||
$options = $this->_options;
|
$options = $this->_options;
|
||||||
unset($options['opt']);
|
unset($options['opt']);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(6);
|
||||||
new Database($options);
|
new Database($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
|
|
||||||
class FilesystemTest extends PHPUnit_Framework_TestCase
|
class FilesystemTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_model;
|
private $_model;
|
||||||
|
|
||||||
@ -10,7 +11,7 @@ class FilesystemTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
private $_invalidPath;
|
private $_invalidPath;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -24,7 +25,7 @@ class FilesystemTest extends PHPUnit_Framework_TestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
chmod($this->_invalidPath, 0700);
|
chmod($this->_invalidPath, 0700);
|
||||||
@ -162,13 +163,13 @@ class FilesystemTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->_model->purge(10);
|
$this->_model->purge(10);
|
||||||
foreach ($ids as $dataid => $storagedir) {
|
foreach ($ids as $dataid => $storagedir) {
|
||||||
$this->assertFileExists($storagedir . $dataid . '.php', "paste $dataid exists in new format");
|
$this->assertFileExists($storagedir . $dataid . '.php', "paste $dataid exists in new format");
|
||||||
$this->assertFileNotExists($storagedir . $dataid, "old format paste $dataid got removed");
|
$this->assertFileDoesNotExist($storagedir . $dataid, "old format paste $dataid got removed");
|
||||||
$this->assertTrue($this->_model->exists($dataid), "paste $dataid exists");
|
$this->assertTrue($this->_model->exists($dataid), "paste $dataid exists");
|
||||||
$this->assertEquals($this->_model->read($dataid), $paste, "paste $dataid wasn't modified in the conversion");
|
$this->assertEquals($this->_model->read($dataid), $paste, "paste $dataid wasn't modified in the conversion");
|
||||||
|
|
||||||
$storagedir .= $dataid . '.discussion' . DIRECTORY_SEPARATOR;
|
$storagedir .= $dataid . '.discussion' . DIRECTORY_SEPARATOR;
|
||||||
$this->assertFileExists($storagedir . $dataid . '.' . $commentid . '.' . $dataid . '.php', "comment of $dataid exists in new format");
|
$this->assertFileExists($storagedir . $dataid . '.' . $commentid . '.' . $dataid . '.php', "comment of $dataid exists in new format");
|
||||||
$this->assertFileNotExists($storagedir . $dataid . '.' . $commentid . '.' . $dataid, "old format comment of $dataid got removed");
|
$this->assertFileDoesNotExist($storagedir . $dataid . '.' . $commentid . '.' . $dataid, "old format comment of $dataid got removed");
|
||||||
$this->assertTrue($this->_model->existsComment($dataid, $dataid, $commentid), "comment in paste $dataid exists");
|
$this->assertTrue($this->_model->existsComment($dataid, $dataid, $commentid), "comment in paste $dataid exists");
|
||||||
$comment = $comment;
|
$comment = $comment;
|
||||||
$comment['id'] = $commentid;
|
$comment['id'] = $commentid;
|
||||||
|
@ -2,14 +2,15 @@
|
|||||||
|
|
||||||
use Google\Auth\HttpHandler\HttpHandlerFactory;
|
use Google\Auth\HttpHandler\HttpHandlerFactory;
|
||||||
use GuzzleHttp\Client;
|
use GuzzleHttp\Client;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\GoogleCloudStorage;
|
use PrivateBin\Data\GoogleCloudStorage;
|
||||||
|
|
||||||
class GoogleCloudStorageTest extends PHPUnit_Framework_TestCase
|
class GoogleCloudStorageTest extends TestCase
|
||||||
{
|
{
|
||||||
private static $_client;
|
private static $_client;
|
||||||
private static $_bucket;
|
private static $_bucket;
|
||||||
|
|
||||||
public static function setUpBeforeClass()
|
public static function setUpBeforeClass(): void
|
||||||
{
|
{
|
||||||
$httpClient = new Client(array('debug'=>false));
|
$httpClient = new Client(array('debug'=>false));
|
||||||
$handler = HttpHandlerFactory::build($httpClient);
|
$handler = HttpHandlerFactory::build($httpClient);
|
||||||
@ -23,7 +24,7 @@ class GoogleCloudStorageTest extends PHPUnit_Framework_TestCase
|
|||||||
self::$_bucket = self::$_client->createBucket($name);
|
self::$_bucket = self::$_client->createBucket($name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
ini_set('error_log', stream_get_meta_data(tmpfile())['uri']);
|
ini_set('error_log', stream_get_meta_data(tmpfile())['uri']);
|
||||||
$this->_model = new GoogleCloudStorage(array(
|
$this->_model = new GoogleCloudStorage(array(
|
||||||
@ -32,14 +33,14 @@ class GoogleCloudStorageTest extends PHPUnit_Framework_TestCase
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
foreach (self::$_bucket->objects() as $object) {
|
foreach (self::$_bucket->objects() as $object) {
|
||||||
$object->delete();
|
$object->delete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function tearDownAfterClass()
|
public static function tearDownAfterClass(): void
|
||||||
{
|
{
|
||||||
self::$_bucket->delete();
|
self::$_bucket->delete();
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Filter;
|
use PrivateBin\Filter;
|
||||||
|
|
||||||
class FilterTest extends PHPUnit_Framework_TestCase
|
class FilterTest extends TestCase
|
||||||
{
|
{
|
||||||
public function testFilterMakesTimesHumanlyReadable()
|
public function testFilterMakesTimesHumanlyReadable()
|
||||||
{
|
{
|
||||||
@ -12,12 +13,10 @@ class FilterTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals('6 months', Filter::formatHumanReadableTime('6months'));
|
$this->assertEquals('6 months', Filter::formatHumanReadableTime('6months'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 30
|
|
||||||
*/
|
|
||||||
public function testFilterFailTimesHumanlyReadable()
|
public function testFilterFailTimesHumanlyReadable()
|
||||||
{
|
{
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(30);
|
||||||
Filter::formatHumanReadableTime('five_minutes');
|
Filter::formatHumanReadableTime('five_minutes');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\FormatV2;
|
use PrivateBin\FormatV2;
|
||||||
|
|
||||||
class FormatV2Test extends PHPUnit_Framework_TestCase
|
class FormatV2Test extends TestCase
|
||||||
{
|
{
|
||||||
public function testFormatV2ValidatorValidatesCorrectly()
|
public function testFormatV2ValidatorValidatesCorrectly()
|
||||||
{
|
{
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\I18n;
|
use PrivateBin\I18n;
|
||||||
|
|
||||||
class I18nTest extends PHPUnit_Framework_TestCase
|
class I18nTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_translations = array();
|
private $_translations = array();
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_translations = json_decode(
|
$this->_translations = json_decode(
|
||||||
@ -15,9 +16,9 @@ class I18nTest extends PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
unset($_COOKIE['lang'], $_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testTranslationFallback()
|
public function testTranslationFallback()
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Controller;
|
use PrivateBin\Controller;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
use PrivateBin\Request;
|
use PrivateBin\Request;
|
||||||
|
|
||||||
class JsonApiTest extends PHPUnit_Framework_TestCase
|
class JsonApiTest extends TestCase
|
||||||
{
|
{
|
||||||
protected $_model;
|
protected $_model;
|
||||||
|
|
||||||
protected $_path;
|
protected $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -33,7 +34,7 @@ class JsonApiTest extends PHPUnit_Framework_TestCase
|
|||||||
Helper::createIniFile(CONF, $options);
|
Helper::createIniFile(CONF, $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
unlink(CONF);
|
unlink(CONF);
|
||||||
@ -303,7 +304,7 @@ class JsonApiTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertContains('id="pasteurl" href="https://example.com/1"', $content, 'outputs shortened URL correctly');
|
$this->assertStringContainsString('id="pasteurl" href="https://example.com/1"', $content, 'outputs shortened URL correctly');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -317,6 +318,6 @@ class JsonApiTest extends PHPUnit_Framework_TestCase
|
|||||||
new Controller;
|
new Controller;
|
||||||
$content = ob_get_contents();
|
$content = ob_get_contents();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
$this->assertContains('Error calling YOURLS.', $content, 'outputs error correctly');
|
$this->assertStringContainsString('Error calling YOURLS.', $content, 'outputs error correctly');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\Database;
|
use PrivateBin\Data\Database;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
|
|
||||||
class MigrateTest extends PHPUnit_Framework_TestCase
|
class MigrateTest extends TestCase
|
||||||
{
|
{
|
||||||
protected $_model_1;
|
protected $_model_1;
|
||||||
|
|
||||||
@ -14,7 +15,7 @@ class MigrateTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
protected $_path_instance_2;
|
protected $_path_instance_2;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -46,7 +47,7 @@ class MigrateTest extends PHPUnit_Framework_TestCase
|
|||||||
Helper::createIniFile($this->_path_instance_2 . DIRECTORY_SEPARATOR . 'cfg' . DIRECTORY_SEPARATOR . 'conf.php', $options);
|
Helper::createIniFile($this->_path_instance_2 . DIRECTORY_SEPARATOR . 'cfg' . DIRECTORY_SEPARATOR . 'conf.php', $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
Helper::rmDir($this->_path);
|
Helper::rmDir($this->_path);
|
||||||
@ -54,10 +55,6 @@ class MigrateTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
public function testMigrate()
|
public function testMigrate()
|
||||||
{
|
{
|
||||||
if (version_compare(PHP_VERSION, '7.1.0') < 0) {
|
|
||||||
return; // skip test on unsupported PHP versions
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->_model_1->delete(Helper::getPasteId());
|
$this->_model_1->delete(Helper::getPasteId());
|
||||||
$this->_model_2->delete(Helper::getPasteId());
|
$this->_model_2->delete(Helper::getPasteId());
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Identicon\Identicon;
|
use Identicon\Identicon;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Configuration;
|
use PrivateBin\Configuration;
|
||||||
use PrivateBin\Data\Database;
|
use PrivateBin\Data\Database;
|
||||||
use PrivateBin\Model;
|
use PrivateBin\Model;
|
||||||
@ -10,7 +11,7 @@ use PrivateBin\Persistence\ServerSalt;
|
|||||||
use PrivateBin\Persistence\TrafficLimiter;
|
use PrivateBin\Persistence\TrafficLimiter;
|
||||||
use PrivateBin\Vizhash16x16;
|
use PrivateBin\Vizhash16x16;
|
||||||
|
|
||||||
class ModelTest extends PHPUnit_Framework_TestCase
|
class ModelTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_conf;
|
private $_conf;
|
||||||
|
|
||||||
@ -18,7 +19,7 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
protected $_path;
|
protected $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -44,7 +45,7 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$_SERVER['REMOTE_ADDR'] = '::1';
|
$_SERVER['REMOTE_ADDR'] = '::1';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
unlink(CONF);
|
unlink(CONF);
|
||||||
@ -167,10 +168,6 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals(Helper::getPasteId(), $comment->getParentId(), 'comment parent ID gets initialized to paste ID');
|
$this->assertEquals(Helper::getPasteId(), $comment->getParentId(), 'comment parent ID gets initialized to paste ID');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 75
|
|
||||||
*/
|
|
||||||
public function testPasteDuplicate()
|
public function testPasteDuplicate()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
@ -182,13 +179,11 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$paste = $this->_model->getPaste();
|
$paste = $this->_model->getPaste();
|
||||||
$paste->setData($pasteData);
|
$paste->setData($pasteData);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(75);
|
||||||
$paste->store();
|
$paste->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 76
|
|
||||||
*/
|
|
||||||
public function testStoreFail()
|
public function testStoreFail()
|
||||||
{
|
{
|
||||||
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-store-test.sq3';
|
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-store-test.sq3';
|
||||||
@ -225,13 +220,11 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$paste = $model->getPaste();
|
$paste = $model->getPaste();
|
||||||
$paste->setData($pasteData);
|
$paste->setData($pasteData);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(76);
|
||||||
$paste->store();
|
$paste->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 70
|
|
||||||
*/
|
|
||||||
public function testCommentStoreFail()
|
public function testCommentStoreFail()
|
||||||
{
|
{
|
||||||
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-test.sq3';
|
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-test.sq3';
|
||||||
@ -274,16 +267,11 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$statement->execute();
|
$statement->execute();
|
||||||
$statement->closeCursor();
|
$statement->closeCursor();
|
||||||
|
|
||||||
if (version_compare(PHP_VERSION, '7.2.0') < 0) {
|
$this->expectException(Exception::class);
|
||||||
throw new Exception('For some reason, this test stopped working in PHP < 7.2', 70);
|
$this->expectExceptionCode(70);
|
||||||
}
|
|
||||||
$comment->store();
|
$comment->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 69
|
|
||||||
*/
|
|
||||||
public function testCommentDuplicate()
|
public function testCommentDuplicate()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
@ -300,6 +288,8 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$comment = $paste->getComment(Helper::getPasteId());
|
$comment = $paste->getComment(Helper::getPasteId());
|
||||||
$comment->setData($commentData);
|
$comment->setData($commentData);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(69);
|
||||||
$comment->store();
|
$comment->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -331,52 +321,40 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertFalse(Paste::isValidId('../bar/baz'), 'path attack');
|
$this->assertFalse(Paste::isValidId('../bar/baz'), 'path attack');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 64
|
|
||||||
*/
|
|
||||||
public function testInvalidPaste()
|
public function testInvalidPaste()
|
||||||
{
|
{
|
||||||
$this->_model->getPaste(Helper::getPasteId())->delete();
|
$this->_model->getPaste(Helper::getPasteId())->delete();
|
||||||
$paste = $this->_model->getPaste(Helper::getPasteId());
|
$paste = $this->_model->getPaste(Helper::getPasteId());
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(64);
|
||||||
$paste->get();
|
$paste->get();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 75
|
|
||||||
*/
|
|
||||||
public function testInvalidPasteFormat()
|
public function testInvalidPasteFormat()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
$pasteData['adata'][1] = 'format does not exist';
|
$pasteData['adata'][1] = 'format does not exist';
|
||||||
$paste = $this->_model->getPaste();
|
$paste = $this->_model->getPaste();
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(75);
|
||||||
$paste->setData($pasteData);
|
$paste->setData($pasteData);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 60
|
|
||||||
*/
|
|
||||||
public function testInvalidPasteId()
|
public function testInvalidPasteId()
|
||||||
{
|
{
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(60);
|
||||||
$this->_model->getPaste('');
|
$this->_model->getPaste('');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 62
|
|
||||||
*/
|
|
||||||
public function testInvalidComment()
|
public function testInvalidComment()
|
||||||
{
|
{
|
||||||
$paste = $this->_model->getPaste();
|
$paste = $this->_model->getPaste();
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(62);
|
||||||
$paste->getComment(Helper::getPasteId());
|
$paste->getComment(Helper::getPasteId());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 67
|
|
||||||
*/
|
|
||||||
public function testInvalidCommentDeletedPaste()
|
public function testInvalidCommentDeletedPaste()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
@ -386,13 +364,11 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$comment = $paste->getComment(Helper::getPasteId());
|
$comment = $paste->getComment(Helper::getPasteId());
|
||||||
$paste->delete();
|
$paste->delete();
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(67);
|
||||||
$comment->store();
|
$comment->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 68
|
|
||||||
*/
|
|
||||||
public function testInvalidCommentData()
|
public function testInvalidCommentData()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
@ -402,18 +378,17 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$paste->store();
|
$paste->store();
|
||||||
|
|
||||||
$comment = $paste->getComment(Helper::getPasteId());
|
$comment = $paste->getComment(Helper::getPasteId());
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(68);
|
||||||
$comment->store();
|
$comment->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 65
|
|
||||||
*/
|
|
||||||
public function testInvalidCommentParent()
|
public function testInvalidCommentParent()
|
||||||
{
|
{
|
||||||
$paste = $this->_model->getPaste(Helper::getPasteId());
|
$paste = $this->_model->getPaste(Helper::getPasteId());
|
||||||
$comment = $paste->getComment('');
|
$this->expectException(Exception::class);
|
||||||
$comment->store();
|
$this->expectExceptionCode(65);
|
||||||
|
$paste->getComment('');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testExpiration()
|
public function testExpiration()
|
||||||
@ -431,10 +406,6 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals((float) 300, (float) $paste['meta']['time_to_live'], 'remaining time is set correctly', 1.0);
|
$this->assertEquals((float) 300, (float) $paste['meta']['time_to_live'], 'remaining time is set correctly', 1.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 64
|
|
||||||
*/
|
|
||||||
public function testCommentDeletion()
|
public function testCommentDeletion()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
@ -443,6 +414,8 @@ class ModelTest extends PHPUnit_Framework_TestCase
|
|||||||
$paste = $this->_model->getPaste();
|
$paste = $this->_model->getPaste();
|
||||||
$paste->setData($pasteData);
|
$paste->setData($pasteData);
|
||||||
$paste->store();
|
$paste->store();
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(64);
|
||||||
$paste->getComment(Helper::getPasteId())->delete();
|
$paste->getComment(Helper::getPasteId())->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\PurgeLimiter;
|
use PrivateBin\Persistence\PurgeLimiter;
|
||||||
|
|
||||||
class PurgeLimiterTest extends PHPUnit_Framework_TestCase
|
class PurgeLimiterTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_path;
|
private $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -19,7 +20,7 @@ class PurgeLimiterTest extends PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
Helper::rmDir($this->_path);
|
Helper::rmDir($this->_path);
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
|
|
||||||
class ServerSaltTest extends PHPUnit_Framework_TestCase
|
class ServerSaltTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_path;
|
private $_path;
|
||||||
|
|
||||||
@ -13,7 +14,7 @@ class ServerSaltTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
private $_invalidFile;
|
private $_invalidFile;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -33,7 +34,7 @@ class ServerSaltTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->_invalidFile = $this->_invalidPath . DIRECTORY_SEPARATOR . 'salt.php';
|
$this->_invalidFile = $this->_invalidPath . DIRECTORY_SEPARATOR . 'salt.php';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
chmod($this->_invalidPath, 0700);
|
chmod($this->_invalidPath, 0700);
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
use PrivateBin\Persistence\TrafficLimiter;
|
use PrivateBin\Persistence\TrafficLimiter;
|
||||||
|
|
||||||
class TrafficLimiterTest extends PHPUnit_Framework_TestCase
|
class TrafficLimiterTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_path;
|
private $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'trafficlimit';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'trafficlimit';
|
||||||
@ -17,7 +18,7 @@ class TrafficLimiterTest extends PHPUnit_Framework_TestCase
|
|||||||
TrafficLimiter::setStore($store);
|
TrafficLimiter::setStore($store);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
Helper::rmDir($this->_path . DIRECTORY_SEPARATOR);
|
Helper::rmDir($this->_path . DIRECTORY_SEPARATOR);
|
||||||
|
@ -1,19 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Request;
|
use PrivateBin\Request;
|
||||||
|
|
||||||
class RequestTest extends PHPUnit_Framework_TestCase
|
class RequestTest extends TestCase
|
||||||
{
|
{
|
||||||
public function setUp()
|
|
||||||
{
|
|
||||||
/* Setup Routine */
|
|
||||||
}
|
|
||||||
|
|
||||||
public function tearDown()
|
|
||||||
{
|
|
||||||
/* Tear Down Routine */
|
|
||||||
}
|
|
||||||
|
|
||||||
public function reset()
|
public function reset()
|
||||||
{
|
{
|
||||||
$_SERVER = array();
|
$_SERVER = array();
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\I18n;
|
use PrivateBin\I18n;
|
||||||
use PrivateBin\View;
|
use PrivateBin\View;
|
||||||
|
|
||||||
class ViewTest extends PHPUnit_Framework_TestCase
|
class ViewTest extends TestCase
|
||||||
{
|
{
|
||||||
private static $error = 'foo bar';
|
private static $error = 'foo bar';
|
||||||
|
|
||||||
@ -29,7 +30,7 @@ class ViewTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
private $_content = array();
|
private $_content = array();
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$page = new View;
|
$page = new View;
|
||||||
@ -93,15 +94,10 @@ class ViewTest extends PHPUnit_Framework_TestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
|
||||||
{
|
|
||||||
/* Tear Down Routine */
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testTemplateRendersCorrectly()
|
public function testTemplateRendersCorrectly()
|
||||||
{
|
{
|
||||||
foreach ($this->_content as $template => $content) {
|
foreach ($this->_content as $template => $content) {
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<div[^>]+id="errormessage"[^>]*>.*' . self::$error . '#s',
|
'#<div[^>]+id="errormessage"[^>]*>.*' . self::$error . '#s',
|
||||||
$content,
|
$content,
|
||||||
$template . ': outputs error correctly'
|
$template . ': outputs error correctly'
|
||||||
@ -110,23 +106,23 @@ class ViewTest extends PHPUnit_Framework_TestCase
|
|||||||
// yourlsproxy template only displays error message
|
// yourlsproxy template only displays error message
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<[^>]+id="password"[^>]*>#',
|
'#<[^>]+id="password"[^>]*>#',
|
||||||
$content,
|
$content,
|
||||||
$template . ': password available if configured'
|
$template . ': password available if configured'
|
||||||
);
|
);
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<input[^>]+id="opendiscussion"[^>]*checked="checked"[^>]*>#',
|
'#<input[^>]+id="opendiscussion"[^>]*checked="checked"[^>]*>#',
|
||||||
$content,
|
$content,
|
||||||
$template . ': checked discussion if configured'
|
$template . ': checked discussion if configured'
|
||||||
);
|
);
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<[^>]+id="opendiscussionoption"[^>]*>#',
|
'#<[^>]+id="opendiscussionoption"[^>]*>#',
|
||||||
$content,
|
$content,
|
||||||
$template . ': discussions available if configured'
|
$template . ': discussions available if configured'
|
||||||
);
|
);
|
||||||
// testing version number in JS address, since other instances may not be present in different templates
|
// testing version number in JS address, since other instances may not be present in different templates
|
||||||
$this->assertRegExp(
|
$this->assertMatchesRegularExpression(
|
||||||
'#<script[^>]+src="js/privatebin.js\\?' . rawurlencode(self::$version) . '"[^>]*>#',
|
'#<script[^>]+src="js/privatebin.js\\?' . rawurlencode(self::$version) . '"[^>]*>#',
|
||||||
$content,
|
$content,
|
||||||
$template . ': outputs version correctly'
|
$template . ': outputs version correctly'
|
||||||
@ -134,13 +130,11 @@ class ViewTest extends PHPUnit_Framework_TestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 80
|
|
||||||
*/
|
|
||||||
public function testMissingTemplate()
|
public function testMissingTemplate()
|
||||||
{
|
{
|
||||||
$test = new View;
|
$test = new View;
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(80);
|
||||||
$test->draw('123456789 does not exist!');
|
$test->draw('123456789 does not exist!');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Data\Filesystem;
|
use PrivateBin\Data\Filesystem;
|
||||||
use PrivateBin\Persistence\ServerSalt;
|
use PrivateBin\Persistence\ServerSalt;
|
||||||
use PrivateBin\Vizhash16x16;
|
use PrivateBin\Vizhash16x16;
|
||||||
|
|
||||||
class Vizhash16x16Test extends PHPUnit_Framework_TestCase
|
class Vizhash16x16Test extends TestCase
|
||||||
{
|
{
|
||||||
private $_file;
|
private $_file;
|
||||||
|
|
||||||
private $_path;
|
private $_path;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -21,7 +22,7 @@ class Vizhash16x16Test extends PHPUnit_Framework_TestCase
|
|||||||
ServerSalt::setStore(new Filesystem(array('dir' => $this->_path)));
|
ServerSalt::setStore(new Filesystem(array('dir' => $this->_path)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
chmod($this->_path, 0700);
|
chmod($this->_path, 0700);
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
use PrivateBin\Configuration;
|
use PrivateBin\Configuration;
|
||||||
use PrivateBin\YourlsProxy;
|
use PrivateBin\YourlsProxy;
|
||||||
|
|
||||||
class YourlsProxyTest extends PHPUnit_Framework_TestCase
|
class YourlsProxyTest extends TestCase
|
||||||
{
|
{
|
||||||
private $_conf;
|
private $_conf;
|
||||||
|
|
||||||
@ -11,7 +12,7 @@ class YourlsProxyTest extends PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
private $_mock_yourls_service;
|
private $_mock_yourls_service;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
/* Setup Routine */
|
/* Setup Routine */
|
||||||
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'privatebin_data';
|
||||||
@ -28,7 +29,7 @@ class YourlsProxyTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->_conf = new Configuration;
|
$this->_conf = new Configuration;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
/* Tear Down Routine */
|
/* Tear Down Routine */
|
||||||
unlink(CONF);
|
unlink(CONF);
|
||||||
|
@ -1,18 +1,21 @@
|
|||||||
<phpunit bootstrap="Bootstrap.php" colors="true">
|
<?xml version="1.0"?>
|
||||||
<testsuite name="PrivateBin Test Suite">
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="Bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
||||||
<directory suffix=".php">./</directory>
|
<coverage>
|
||||||
</testsuite>
|
<include>
|
||||||
<filter>
|
<directory suffix=".php">../lib</directory>
|
||||||
<whitelist>
|
</include>
|
||||||
<directory suffix=".php">../lib</directory>
|
<exclude>
|
||||||
<exclude>
|
<file>../lib/Data/AbstractData.php</file>
|
||||||
<file>../lib/Data/AbstractData.php</file>
|
</exclude>
|
||||||
</exclude>
|
<report>
|
||||||
</whitelist>
|
<clover outputFile="log/coverage-clover.xml"/>
|
||||||
</filter>
|
<html outputDirectory="log/php-coverage-report" lowUpperBound="50" highLowerBound="80"/>
|
||||||
<logging>
|
</report>
|
||||||
<log type="coverage-clover" target="log/coverage-clover.xml" />
|
</coverage>
|
||||||
<log type="coverage-html" target="log/php-coverage-report" lowUpperBound="50" highLowerBound="80" />
|
<testsuite name="PrivateBin Test Suite">
|
||||||
<log type="testdox-html" target="log/testdox.html" />
|
<directory suffix=".php">./</directory>
|
||||||
</logging>
|
</testsuite>
|
||||||
|
<logging>
|
||||||
|
<testdoxHtml outputFile="log/testdox.html"/>
|
||||||
|
</logging>
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
18
vendor/autoload.php
vendored
18
vendor/autoload.php
vendored
@ -2,6 +2,24 @@
|
|||||||
|
|
||||||
// autoload.php @generated by Composer
|
// autoload.php @generated by Composer
|
||||||
|
|
||||||
|
if (PHP_VERSION_ID < 50600) {
|
||||||
|
if (!headers_sent()) {
|
||||||
|
header('HTTP/1.1 500 Internal Server Error');
|
||||||
|
}
|
||||||
|
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||||
|
if (!ini_get('display_errors')) {
|
||||||
|
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||||
|
fwrite(STDERR, $err);
|
||||||
|
} elseif (!headers_sent()) {
|
||||||
|
echo $err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
trigger_error(
|
||||||
|
$err,
|
||||||
|
E_USER_ERROR
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
require_once __DIR__ . '/composer/autoload_real.php';
|
require_once __DIR__ . '/composer/autoload_real.php';
|
||||||
|
|
||||||
return ComposerAutoloaderInitDontChange::getLoader();
|
return ComposerAutoloaderInitDontChange::getLoader();
|
||||||
|
156
vendor/composer/ClassLoader.php
vendored
156
vendor/composer/ClassLoader.php
vendored
@ -42,30 +42,79 @@ namespace Composer\Autoload;
|
|||||||
*/
|
*/
|
||||||
class ClassLoader
|
class ClassLoader
|
||||||
{
|
{
|
||||||
|
/** @var \Closure(string):void */
|
||||||
|
private static $includeFile;
|
||||||
|
|
||||||
|
/** @var ?string */
|
||||||
private $vendorDir;
|
private $vendorDir;
|
||||||
|
|
||||||
// PSR-4
|
// PSR-4
|
||||||
|
/**
|
||||||
|
* @var array[]
|
||||||
|
* @psalm-var array<string, array<string, int>>
|
||||||
|
*/
|
||||||
private $prefixLengthsPsr4 = array();
|
private $prefixLengthsPsr4 = array();
|
||||||
|
/**
|
||||||
|
* @var array[]
|
||||||
|
* @psalm-var array<string, array<int, string>>
|
||||||
|
*/
|
||||||
private $prefixDirsPsr4 = array();
|
private $prefixDirsPsr4 = array();
|
||||||
|
/**
|
||||||
|
* @var array[]
|
||||||
|
* @psalm-var array<string, string>
|
||||||
|
*/
|
||||||
private $fallbackDirsPsr4 = array();
|
private $fallbackDirsPsr4 = array();
|
||||||
|
|
||||||
// PSR-0
|
// PSR-0
|
||||||
|
/**
|
||||||
|
* @var array[]
|
||||||
|
* @psalm-var array<string, array<string, string[]>>
|
||||||
|
*/
|
||||||
private $prefixesPsr0 = array();
|
private $prefixesPsr0 = array();
|
||||||
|
/**
|
||||||
|
* @var array[]
|
||||||
|
* @psalm-var array<string, string>
|
||||||
|
*/
|
||||||
private $fallbackDirsPsr0 = array();
|
private $fallbackDirsPsr0 = array();
|
||||||
|
|
||||||
|
/** @var bool */
|
||||||
private $useIncludePath = false;
|
private $useIncludePath = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string[]
|
||||||
|
* @psalm-var array<string, string>
|
||||||
|
*/
|
||||||
private $classMap = array();
|
private $classMap = array();
|
||||||
|
|
||||||
|
/** @var bool */
|
||||||
private $classMapAuthoritative = false;
|
private $classMapAuthoritative = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var bool[]
|
||||||
|
* @psalm-var array<string, bool>
|
||||||
|
*/
|
||||||
private $missingClasses = array();
|
private $missingClasses = array();
|
||||||
|
|
||||||
|
/** @var ?string */
|
||||||
private $apcuPrefix;
|
private $apcuPrefix;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var self[]
|
||||||
|
*/
|
||||||
private static $registeredLoaders = array();
|
private static $registeredLoaders = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param ?string $vendorDir
|
||||||
|
*/
|
||||||
public function __construct($vendorDir = null)
|
public function __construct($vendorDir = null)
|
||||||
{
|
{
|
||||||
$this->vendorDir = $vendorDir;
|
$this->vendorDir = $vendorDir;
|
||||||
|
self::initializeIncludeClosure();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string[]
|
||||||
|
*/
|
||||||
public function getPrefixes()
|
public function getPrefixes()
|
||||||
{
|
{
|
||||||
if (!empty($this->prefixesPsr0)) {
|
if (!empty($this->prefixesPsr0)) {
|
||||||
@ -75,28 +124,47 @@ class ClassLoader
|
|||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array[]
|
||||||
|
* @psalm-return array<string, array<int, string>>
|
||||||
|
*/
|
||||||
public function getPrefixesPsr4()
|
public function getPrefixesPsr4()
|
||||||
{
|
{
|
||||||
return $this->prefixDirsPsr4;
|
return $this->prefixDirsPsr4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array[]
|
||||||
|
* @psalm-return array<string, string>
|
||||||
|
*/
|
||||||
public function getFallbackDirs()
|
public function getFallbackDirs()
|
||||||
{
|
{
|
||||||
return $this->fallbackDirsPsr0;
|
return $this->fallbackDirsPsr0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array[]
|
||||||
|
* @psalm-return array<string, string>
|
||||||
|
*/
|
||||||
public function getFallbackDirsPsr4()
|
public function getFallbackDirsPsr4()
|
||||||
{
|
{
|
||||||
return $this->fallbackDirsPsr4;
|
return $this->fallbackDirsPsr4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string[] Array of classname => path
|
||||||
|
* @psalm-return array<string, string>
|
||||||
|
*/
|
||||||
public function getClassMap()
|
public function getClassMap()
|
||||||
{
|
{
|
||||||
return $this->classMap;
|
return $this->classMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $classMap Class to filename map
|
* @param string[] $classMap Class to filename map
|
||||||
|
* @psalm-param array<string, string> $classMap
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function addClassMap(array $classMap)
|
public function addClassMap(array $classMap)
|
||||||
{
|
{
|
||||||
@ -111,9 +179,11 @@ class ClassLoader
|
|||||||
* Registers a set of PSR-0 directories for a given prefix, either
|
* Registers a set of PSR-0 directories for a given prefix, either
|
||||||
* appending or prepending to the ones previously set for this prefix.
|
* appending or prepending to the ones previously set for this prefix.
|
||||||
*
|
*
|
||||||
* @param string $prefix The prefix
|
* @param string $prefix The prefix
|
||||||
* @param array|string $paths The PSR-0 root directories
|
* @param string[]|string $paths The PSR-0 root directories
|
||||||
* @param bool $prepend Whether to prepend the directories
|
* @param bool $prepend Whether to prepend the directories
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function add($prefix, $paths, $prepend = false)
|
public function add($prefix, $paths, $prepend = false)
|
||||||
{
|
{
|
||||||
@ -156,11 +226,13 @@ class ClassLoader
|
|||||||
* Registers a set of PSR-4 directories for a given namespace, either
|
* Registers a set of PSR-4 directories for a given namespace, either
|
||||||
* appending or prepending to the ones previously set for this namespace.
|
* appending or prepending to the ones previously set for this namespace.
|
||||||
*
|
*
|
||||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||||
* @param array|string $paths The PSR-4 base directories
|
* @param string[]|string $paths The PSR-4 base directories
|
||||||
* @param bool $prepend Whether to prepend the directories
|
* @param bool $prepend Whether to prepend the directories
|
||||||
*
|
*
|
||||||
* @throws \InvalidArgumentException
|
* @throws \InvalidArgumentException
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function addPsr4($prefix, $paths, $prepend = false)
|
public function addPsr4($prefix, $paths, $prepend = false)
|
||||||
{
|
{
|
||||||
@ -204,8 +276,10 @@ class ClassLoader
|
|||||||
* Registers a set of PSR-0 directories for a given prefix,
|
* Registers a set of PSR-0 directories for a given prefix,
|
||||||
* replacing any others previously set for this prefix.
|
* replacing any others previously set for this prefix.
|
||||||
*
|
*
|
||||||
* @param string $prefix The prefix
|
* @param string $prefix The prefix
|
||||||
* @param array|string $paths The PSR-0 base directories
|
* @param string[]|string $paths The PSR-0 base directories
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function set($prefix, $paths)
|
public function set($prefix, $paths)
|
||||||
{
|
{
|
||||||
@ -220,10 +294,12 @@ class ClassLoader
|
|||||||
* Registers a set of PSR-4 directories for a given namespace,
|
* Registers a set of PSR-4 directories for a given namespace,
|
||||||
* replacing any others previously set for this namespace.
|
* replacing any others previously set for this namespace.
|
||||||
*
|
*
|
||||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||||
* @param array|string $paths The PSR-4 base directories
|
* @param string[]|string $paths The PSR-4 base directories
|
||||||
*
|
*
|
||||||
* @throws \InvalidArgumentException
|
* @throws \InvalidArgumentException
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setPsr4($prefix, $paths)
|
public function setPsr4($prefix, $paths)
|
||||||
{
|
{
|
||||||
@ -243,6 +319,8 @@ class ClassLoader
|
|||||||
* Turns on searching the include path for class files.
|
* Turns on searching the include path for class files.
|
||||||
*
|
*
|
||||||
* @param bool $useIncludePath
|
* @param bool $useIncludePath
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setUseIncludePath($useIncludePath)
|
public function setUseIncludePath($useIncludePath)
|
||||||
{
|
{
|
||||||
@ -265,6 +343,8 @@ class ClassLoader
|
|||||||
* that have not been registered with the class map.
|
* that have not been registered with the class map.
|
||||||
*
|
*
|
||||||
* @param bool $classMapAuthoritative
|
* @param bool $classMapAuthoritative
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
public function setClassMapAuthoritative($classMapAuthoritative)
|
||||||
{
|
{
|
||||||
@ -285,6 +365,8 @@ class ClassLoader
|
|||||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
||||||
*
|
*
|
||||||
* @param string|null $apcuPrefix
|
* @param string|null $apcuPrefix
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setApcuPrefix($apcuPrefix)
|
public function setApcuPrefix($apcuPrefix)
|
||||||
{
|
{
|
||||||
@ -305,14 +387,18 @@ class ClassLoader
|
|||||||
* Registers this instance as an autoloader.
|
* Registers this instance as an autoloader.
|
||||||
*
|
*
|
||||||
* @param bool $prepend Whether to prepend the autoloader or not
|
* @param bool $prepend Whether to prepend the autoloader or not
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function register($prepend = false)
|
public function register($prepend = false)
|
||||||
{
|
{
|
||||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||||
|
|
||||||
if (null === $this->vendorDir) {
|
if (null === $this->vendorDir) {
|
||||||
//no-op
|
return;
|
||||||
} elseif ($prepend) {
|
}
|
||||||
|
|
||||||
|
if ($prepend) {
|
||||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
||||||
} else {
|
} else {
|
||||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||||
@ -322,6 +408,8 @@ class ClassLoader
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Unregisters this instance as an autoloader.
|
* Unregisters this instance as an autoloader.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function unregister()
|
public function unregister()
|
||||||
{
|
{
|
||||||
@ -336,15 +424,18 @@ class ClassLoader
|
|||||||
* Loads the given class or interface.
|
* Loads the given class or interface.
|
||||||
*
|
*
|
||||||
* @param string $class The name of the class
|
* @param string $class The name of the class
|
||||||
* @return bool|null True if loaded, null otherwise
|
* @return true|null True if loaded, null otherwise
|
||||||
*/
|
*/
|
||||||
public function loadClass($class)
|
public function loadClass($class)
|
||||||
{
|
{
|
||||||
if ($file = $this->findFile($class)) {
|
if ($file = $this->findFile($class)) {
|
||||||
includeFile($file);
|
$includeFile = self::$includeFile;
|
||||||
|
$includeFile($file);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -399,6 +490,11 @@ class ClassLoader
|
|||||||
return self::$registeredLoaders;
|
return self::$registeredLoaders;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $class
|
||||||
|
* @param string $ext
|
||||||
|
* @return string|false
|
||||||
|
*/
|
||||||
private function findFileWithExtension($class, $ext)
|
private function findFileWithExtension($class, $ext)
|
||||||
{
|
{
|
||||||
// PSR-4 lookup
|
// PSR-4 lookup
|
||||||
@ -464,14 +560,26 @@ class ClassLoader
|
|||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Scope isolated include.
|
* @return void
|
||||||
*
|
*/
|
||||||
* Prevents access to $this/self from included files.
|
private static function initializeIncludeClosure()
|
||||||
*/
|
{
|
||||||
function includeFile($file)
|
if (self::$includeFile !== null) {
|
||||||
{
|
return;
|
||||||
include $file;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scope isolated include.
|
||||||
|
*
|
||||||
|
* Prevents access to $this/self from included files.
|
||||||
|
*
|
||||||
|
* @param string $file
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
self::$includeFile = \Closure::bind(static function($file) {
|
||||||
|
include $file;
|
||||||
|
}, null, null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
189
vendor/composer/InstalledVersions.php
vendored
189
vendor/composer/InstalledVersions.php
vendored
@ -18,71 +18,29 @@ use Composer\Semver\VersionParser;
|
|||||||
/**
|
/**
|
||||||
* This class is copied in every Composer installed project and available to all
|
* This class is copied in every Composer installed project and available to all
|
||||||
*
|
*
|
||||||
* To require it's presence, you can require `composer-runtime-api ^2.0`
|
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
||||||
|
*
|
||||||
|
* To require its presence, you can require `composer-runtime-api ^2.0`
|
||||||
|
*
|
||||||
|
* @final
|
||||||
*/
|
*/
|
||||||
class InstalledVersions
|
class InstalledVersions
|
||||||
{
|
{
|
||||||
private static $installed = array (
|
/**
|
||||||
'root' =>
|
* @var mixed[]|null
|
||||||
array (
|
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
||||||
'pretty_version' => 'dev-master',
|
*/
|
||||||
'version' => 'dev-master',
|
private static $installed;
|
||||||
'aliases' =>
|
|
||||||
array (
|
/**
|
||||||
),
|
* @var bool|null
|
||||||
'reference' => 'f840cccb743ce7b66c811712f754210e71a67183',
|
*/
|
||||||
'name' => 'privatebin/privatebin',
|
|
||||||
),
|
|
||||||
'versions' =>
|
|
||||||
array (
|
|
||||||
'jdenticon/jdenticon' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => '1.0.2',
|
|
||||||
'version' => '1.0.2.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'cabb7a44c413c318392a341c5d3ca30fcdd57a6f',
|
|
||||||
),
|
|
||||||
'mlocati/ip-lib' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => '1.18.0',
|
|
||||||
'version' => '1.18.0.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'c77bd0b1f3e3956c7e9661e75cb1f54ed67d95d2',
|
|
||||||
),
|
|
||||||
'paragonie/random_compat' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => 'v2.0.21',
|
|
||||||
'version' => '2.0.21.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => '96c132c7f2f7bc3230723b66e89f8f150b29d5ae',
|
|
||||||
),
|
|
||||||
'privatebin/privatebin' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => 'dev-master',
|
|
||||||
'version' => 'dev-master',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'f840cccb743ce7b66c811712f754210e71a67183',
|
|
||||||
),
|
|
||||||
'yzalis/identicon' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => '2.0.0',
|
|
||||||
'version' => '2.0.0.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'ff5ed090129cab9bfa2a322857d4a01d107aa0ae',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
private static $canGetVendors;
|
private static $canGetVendors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array[]
|
||||||
|
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||||
|
*/
|
||||||
private static $installedByVendor = array();
|
private static $installedByVendor = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -98,7 +56,6 @@ class InstalledVersions
|
|||||||
$packages[] = array_keys($installed['versions']);
|
$packages[] = array_keys($installed['versions']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (1 === \count($packages)) {
|
if (1 === \count($packages)) {
|
||||||
return $packages[0];
|
return $packages[0];
|
||||||
}
|
}
|
||||||
@ -106,19 +63,42 @@ class InstalledVersions
|
|||||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
|
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a list of all package names with a specific type e.g. 'library'
|
||||||
|
*
|
||||||
|
* @param string $type
|
||||||
|
* @return string[]
|
||||||
|
* @psalm-return list<string>
|
||||||
|
*/
|
||||||
|
public static function getInstalledPackagesByType($type)
|
||||||
|
{
|
||||||
|
$packagesByType = array();
|
||||||
|
|
||||||
|
foreach (self::getInstalled() as $installed) {
|
||||||
|
foreach ($installed['versions'] as $name => $package) {
|
||||||
|
if (isset($package['type']) && $package['type'] === $type) {
|
||||||
|
$packagesByType[] = $name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $packagesByType;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks whether the given package is installed
|
* Checks whether the given package is installed
|
||||||
*
|
*
|
||||||
* This also returns true if the package name is provided or replaced by another package
|
* This also returns true if the package name is provided or replaced by another package
|
||||||
*
|
*
|
||||||
* @param string $packageName
|
* @param string $packageName
|
||||||
|
* @param bool $includeDevRequirements
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public static function isInstalled($packageName)
|
public static function isInstalled($packageName, $includeDevRequirements = true)
|
||||||
{
|
{
|
||||||
foreach (self::getInstalled() as $installed) {
|
foreach (self::getInstalled() as $installed) {
|
||||||
if (isset($installed['versions'][$packageName])) {
|
if (isset($installed['versions'][$packageName])) {
|
||||||
return true;
|
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,15 +112,14 @@ class InstalledVersions
|
|||||||
*
|
*
|
||||||
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
|
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
|
||||||
*
|
*
|
||||||
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
|
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
|
||||||
* @param string $packageName
|
* @param string $packageName
|
||||||
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
|
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
|
||||||
*
|
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
||||||
{
|
{
|
||||||
$constraint = $parser->parseConstraints($constraint);
|
$constraint = $parser->parseConstraints((string) $constraint);
|
||||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
||||||
|
|
||||||
return $provided->matches($constraint);
|
return $provided->matches($constraint);
|
||||||
@ -245,9 +224,26 @@ class InstalledVersions
|
|||||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $packageName
|
||||||
|
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
|
||||||
|
*/
|
||||||
|
public static function getInstallPath($packageName)
|
||||||
|
{
|
||||||
|
foreach (self::getInstalled() as $installed) {
|
||||||
|
if (!isset($installed['versions'][$packageName])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array
|
||||||
* @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[]}
|
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
|
||||||
*/
|
*/
|
||||||
public static function getRootPackage()
|
public static function getRootPackage()
|
||||||
{
|
{
|
||||||
@ -259,14 +255,38 @@ class InstalledVersions
|
|||||||
/**
|
/**
|
||||||
* Returns the raw installed.php data for custom implementations
|
* Returns the raw installed.php data for custom implementations
|
||||||
*
|
*
|
||||||
|
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
|
||||||
* @return array[]
|
* @return array[]
|
||||||
* @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[]}, versions: list<string, array{pretty_version: ?string, version: ?string, aliases: ?string[], reference: ?string, replaced: ?string[], provided: ?string[]}>}
|
* @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
|
||||||
*/
|
*/
|
||||||
public static function getRawData()
|
public static function getRawData()
|
||||||
{
|
{
|
||||||
|
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
|
||||||
|
|
||||||
|
if (null === self::$installed) {
|
||||||
|
// only require the installed.php file if this file is loaded from its dumped location,
|
||||||
|
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||||
|
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||||
|
self::$installed = include __DIR__ . '/installed.php';
|
||||||
|
} else {
|
||||||
|
self::$installed = array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return self::$installed;
|
return self::$installed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the raw data of all installed.php which are currently loaded for custom implementations
|
||||||
|
*
|
||||||
|
* @return array[]
|
||||||
|
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||||
|
*/
|
||||||
|
public static function getAllRawData()
|
||||||
|
{
|
||||||
|
return self::getInstalled();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lets you reload the static array from another file
|
* Lets you reload the static array from another file
|
||||||
*
|
*
|
||||||
@ -283,7 +303,7 @@ class InstalledVersions
|
|||||||
* @param array[] $data A vendor/composer/installed.php data set
|
* @param array[] $data A vendor/composer/installed.php data set
|
||||||
* @return void
|
* @return void
|
||||||
*
|
*
|
||||||
* @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[]}, versions: list<string, array{pretty_version: ?string, version: ?string, aliases: ?string[], reference: ?string, replaced: ?string[], provided: ?string[]}>} $data
|
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
|
||||||
*/
|
*/
|
||||||
public static function reload($data)
|
public static function reload($data)
|
||||||
{
|
{
|
||||||
@ -293,6 +313,7 @@ class InstalledVersions
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array[]
|
* @return array[]
|
||||||
|
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||||
*/
|
*/
|
||||||
private static function getInstalled()
|
private static function getInstalled()
|
||||||
{
|
{
|
||||||
@ -303,17 +324,35 @@ class InstalledVersions
|
|||||||
$installed = array();
|
$installed = array();
|
||||||
|
|
||||||
if (self::$canGetVendors) {
|
if (self::$canGetVendors) {
|
||||||
// @phpstan-ignore-next-line
|
|
||||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
||||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||||
$installed[] = self::$installedByVendor[$vendorDir];
|
$installed[] = self::$installedByVendor[$vendorDir];
|
||||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||||
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
|
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||||
|
$required = require $vendorDir.'/composer/installed.php';
|
||||||
|
$installed[] = self::$installedByVendor[$vendorDir] = $required;
|
||||||
|
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
|
||||||
|
self::$installed = $installed[count($installed) - 1];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$installed[] = self::$installed;
|
if (null === self::$installed) {
|
||||||
|
// only require the installed.php file if this file is loaded from its dumped location,
|
||||||
|
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||||
|
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||||
|
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||||
|
$required = require __DIR__ . '/installed.php';
|
||||||
|
self::$installed = $required;
|
||||||
|
} else {
|
||||||
|
self::$installed = array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (self::$installed !== array()) {
|
||||||
|
$installed[] = self::$installed;
|
||||||
|
}
|
||||||
|
|
||||||
return $installed;
|
return $installed;
|
||||||
}
|
}
|
||||||
|
2
vendor/composer/autoload_classmap.php
vendored
2
vendor/composer/autoload_classmap.php
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_classmap.php @generated by Composer
|
// autoload_classmap.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
10
vendor/composer/autoload_files.php
vendored
10
vendor/composer/autoload_files.php
vendored
@ -1,10 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// autoload_files.php @generated by Composer
|
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
|
||||||
$baseDir = dirname($vendorDir);
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php',
|
|
||||||
);
|
|
2
vendor/composer/autoload_namespaces.php
vendored
2
vendor/composer/autoload_namespaces.php
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_namespaces.php @generated by Composer
|
// autoload_namespaces.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
2
vendor/composer/autoload_psr4.php
vendored
2
vendor/composer/autoload_psr4.php
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_psr4.php @generated by Composer
|
// autoload_psr4.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
43
vendor/composer/autoload_real.php
vendored
43
vendor/composer/autoload_real.php
vendored
@ -25,51 +25,14 @@ class ComposerAutoloaderInitDontChange
|
|||||||
require __DIR__ . '/platform_check.php';
|
require __DIR__ . '/platform_check.php';
|
||||||
|
|
||||||
spl_autoload_register(array('ComposerAutoloaderInitDontChange', 'loadClassLoader'), true, true);
|
spl_autoload_register(array('ComposerAutoloaderInitDontChange', 'loadClassLoader'), true, true);
|
||||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||||
spl_autoload_unregister(array('ComposerAutoloaderInitDontChange', 'loadClassLoader'));
|
spl_autoload_unregister(array('ComposerAutoloaderInitDontChange', 'loadClassLoader'));
|
||||||
|
|
||||||
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
require __DIR__ . '/autoload_static.php';
|
||||||
if ($useStaticLoader) {
|
call_user_func(\Composer\Autoload\ComposerStaticInitDontChange::getInitializer($loader));
|
||||||
require __DIR__ . '/autoload_static.php';
|
|
||||||
|
|
||||||
call_user_func(\Composer\Autoload\ComposerStaticInitDontChange::getInitializer($loader));
|
|
||||||
} else {
|
|
||||||
$map = require __DIR__ . '/autoload_namespaces.php';
|
|
||||||
foreach ($map as $namespace => $path) {
|
|
||||||
$loader->set($namespace, $path);
|
|
||||||
}
|
|
||||||
|
|
||||||
$map = require __DIR__ . '/autoload_psr4.php';
|
|
||||||
foreach ($map as $namespace => $path) {
|
|
||||||
$loader->setPsr4($namespace, $path);
|
|
||||||
}
|
|
||||||
|
|
||||||
$classMap = require __DIR__ . '/autoload_classmap.php';
|
|
||||||
if ($classMap) {
|
|
||||||
$loader->addClassMap($classMap);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$loader->register(true);
|
$loader->register(true);
|
||||||
|
|
||||||
if ($useStaticLoader) {
|
|
||||||
$includeFiles = Composer\Autoload\ComposerStaticInitDontChange::$files;
|
|
||||||
} else {
|
|
||||||
$includeFiles = require __DIR__ . '/autoload_files.php';
|
|
||||||
}
|
|
||||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
|
||||||
composerRequireDontChange($fileIdentifier, $file);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $loader;
|
return $loader;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function composerRequireDontChange($fileIdentifier, $file)
|
|
||||||
{
|
|
||||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
||||||
require $file;
|
|
||||||
|
|
||||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
4
vendor/composer/autoload_static.php
vendored
4
vendor/composer/autoload_static.php
vendored
@ -6,10 +6,6 @@ namespace Composer\Autoload;
|
|||||||
|
|
||||||
class ComposerStaticInitDontChange
|
class ComposerStaticInitDontChange
|
||||||
{
|
{
|
||||||
public static $files = array (
|
|
||||||
'5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php',
|
|
||||||
);
|
|
||||||
|
|
||||||
public static $prefixLengthsPsr4 = array (
|
public static $prefixLengthsPsr4 = array (
|
||||||
'P' =>
|
'P' =>
|
||||||
array (
|
array (
|
||||||
|
104
vendor/composer/installed.php
vendored
104
vendor/composer/installed.php
vendored
@ -1,60 +1,50 @@
|
|||||||
<?php return array (
|
<?php return array(
|
||||||
'root' =>
|
'root' => array(
|
||||||
array (
|
'name' => 'privatebin/privatebin',
|
||||||
'pretty_version' => 'dev-master',
|
'pretty_version' => 'dev-master',
|
||||||
'version' => 'dev-master',
|
'version' => 'dev-master',
|
||||||
'aliases' =>
|
'reference' => 'c1b3bffe8c5214f69f663b6fb59736a6f5fafa86',
|
||||||
array (
|
'type' => 'project',
|
||||||
|
'install_path' => __DIR__ . '/../../',
|
||||||
|
'aliases' => array(),
|
||||||
|
'dev' => false,
|
||||||
),
|
),
|
||||||
'reference' => 'f840cccb743ce7b66c811712f754210e71a67183',
|
'versions' => array(
|
||||||
'name' => 'privatebin/privatebin',
|
'jdenticon/jdenticon' => array(
|
||||||
),
|
'pretty_version' => '1.0.2',
|
||||||
'versions' =>
|
'version' => '1.0.2.0',
|
||||||
array (
|
'reference' => 'cabb7a44c413c318392a341c5d3ca30fcdd57a6f',
|
||||||
'jdenticon/jdenticon' =>
|
'type' => 'library',
|
||||||
array (
|
'install_path' => __DIR__ . '/../jdenticon/jdenticon',
|
||||||
'pretty_version' => '1.0.2',
|
'aliases' => array(),
|
||||||
'version' => '1.0.2.0',
|
'dev_requirement' => false,
|
||||||
'aliases' =>
|
),
|
||||||
array (
|
'mlocati/ip-lib' => array(
|
||||||
),
|
'pretty_version' => '1.18.0',
|
||||||
'reference' => 'cabb7a44c413c318392a341c5d3ca30fcdd57a6f',
|
'version' => '1.18.0.0',
|
||||||
|
'reference' => 'c77bd0b1f3e3956c7e9661e75cb1f54ed67d95d2',
|
||||||
|
'type' => 'library',
|
||||||
|
'install_path' => __DIR__ . '/../mlocati/ip-lib',
|
||||||
|
'aliases' => array(),
|
||||||
|
'dev_requirement' => false,
|
||||||
|
),
|
||||||
|
'privatebin/privatebin' => array(
|
||||||
|
'pretty_version' => 'dev-master',
|
||||||
|
'version' => 'dev-master',
|
||||||
|
'reference' => 'c1b3bffe8c5214f69f663b6fb59736a6f5fafa86',
|
||||||
|
'type' => 'project',
|
||||||
|
'install_path' => __DIR__ . '/../../',
|
||||||
|
'aliases' => array(),
|
||||||
|
'dev_requirement' => false,
|
||||||
|
),
|
||||||
|
'yzalis/identicon' => array(
|
||||||
|
'pretty_version' => '2.0.0',
|
||||||
|
'version' => '2.0.0.0',
|
||||||
|
'reference' => 'ff5ed090129cab9bfa2a322857d4a01d107aa0ae',
|
||||||
|
'type' => 'library',
|
||||||
|
'install_path' => __DIR__ . '/../yzalis/identicon',
|
||||||
|
'aliases' => array(),
|
||||||
|
'dev_requirement' => false,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
'mlocati/ip-lib' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => '1.18.0',
|
|
||||||
'version' => '1.18.0.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'c77bd0b1f3e3956c7e9661e75cb1f54ed67d95d2',
|
|
||||||
),
|
|
||||||
'paragonie/random_compat' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => 'v2.0.21',
|
|
||||||
'version' => '2.0.21.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => '96c132c7f2f7bc3230723b66e89f8f150b29d5ae',
|
|
||||||
),
|
|
||||||
'privatebin/privatebin' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => 'dev-master',
|
|
||||||
'version' => 'dev-master',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'f840cccb743ce7b66c811712f754210e71a67183',
|
|
||||||
),
|
|
||||||
'yzalis/identicon' =>
|
|
||||||
array (
|
|
||||||
'pretty_version' => '2.0.0',
|
|
||||||
'version' => '2.0.0.0',
|
|
||||||
'aliases' =>
|
|
||||||
array (
|
|
||||||
),
|
|
||||||
'reference' => 'ff5ed090129cab9bfa2a322857d4a01d107aa0ae',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
|
4
vendor/composer/platform_check.php
vendored
4
vendor/composer/platform_check.php
vendored
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
$issues = array();
|
$issues = array();
|
||||||
|
|
||||||
if (!(PHP_VERSION_ID >= 50600)) {
|
if (!(PHP_VERSION_ID >= 70300)) {
|
||||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running ' . PHP_VERSION . '.';
|
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.3.0". You are running ' . PHP_VERSION . '.';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($issues) {
|
if ($issues) {
|
||||||
|
@ -1,195 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!is_callable('RandomCompat_strlen')) {
|
|
||||||
if (
|
|
||||||
defined('MB_OVERLOAD_STRING')
|
|
||||||
&&
|
|
||||||
((int) ini_get('mbstring.func_overload')) & MB_OVERLOAD_STRING
|
|
||||||
) {
|
|
||||||
/**
|
|
||||||
* strlen() implementation that isn't brittle to mbstring.func_overload
|
|
||||||
*
|
|
||||||
* This version uses mb_strlen() in '8bit' mode to treat strings as raw
|
|
||||||
* binary rather than UTF-8, ISO-8859-1, etc
|
|
||||||
*
|
|
||||||
* @param string $binary_string
|
|
||||||
*
|
|
||||||
* @throws TypeError
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
function RandomCompat_strlen($binary_string)
|
|
||||||
{
|
|
||||||
if (!is_string($binary_string)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_strlen() expects a string'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (int) mb_strlen($binary_string, '8bit');
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
/**
|
|
||||||
* strlen() implementation that isn't brittle to mbstring.func_overload
|
|
||||||
*
|
|
||||||
* This version just used the default strlen()
|
|
||||||
*
|
|
||||||
* @param string $binary_string
|
|
||||||
*
|
|
||||||
* @throws TypeError
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
function RandomCompat_strlen($binary_string)
|
|
||||||
{
|
|
||||||
if (!is_string($binary_string)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_strlen() expects a string'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return (int) strlen($binary_string);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_callable('RandomCompat_substr')) {
|
|
||||||
|
|
||||||
if (
|
|
||||||
defined('MB_OVERLOAD_STRING')
|
|
||||||
&&
|
|
||||||
((int) ini_get('mbstring.func_overload')) & MB_OVERLOAD_STRING
|
|
||||||
) {
|
|
||||||
/**
|
|
||||||
* substr() implementation that isn't brittle to mbstring.func_overload
|
|
||||||
*
|
|
||||||
* This version uses mb_substr() in '8bit' mode to treat strings as raw
|
|
||||||
* binary rather than UTF-8, ISO-8859-1, etc
|
|
||||||
*
|
|
||||||
* @param string $binary_string
|
|
||||||
* @param int $start
|
|
||||||
* @param int|null $length (optional)
|
|
||||||
*
|
|
||||||
* @throws TypeError
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function RandomCompat_substr($binary_string, $start, $length = null)
|
|
||||||
{
|
|
||||||
if (!is_string($binary_string)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_substr(): First argument should be a string'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_int($start)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_substr(): Second argument should be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($length === null) {
|
|
||||||
/**
|
|
||||||
* mb_substr($str, 0, NULL, '8bit') returns an empty string on
|
|
||||||
* PHP 5.3, so we have to find the length ourselves.
|
|
||||||
*/
|
|
||||||
/** @var int $length */
|
|
||||||
$length = RandomCompat_strlen($binary_string) - $start;
|
|
||||||
} elseif (!is_int($length)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_substr(): Third argument should be an integer, or omitted'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Consistency with PHP's behavior
|
|
||||||
if ($start === RandomCompat_strlen($binary_string) && $length === 0) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
if ($start > RandomCompat_strlen($binary_string)) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) mb_substr(
|
|
||||||
(string) $binary_string,
|
|
||||||
(int) $start,
|
|
||||||
(int) $length,
|
|
||||||
'8bit'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* substr() implementation that isn't brittle to mbstring.func_overload
|
|
||||||
*
|
|
||||||
* This version just uses the default substr()
|
|
||||||
*
|
|
||||||
* @param string $binary_string
|
|
||||||
* @param int $start
|
|
||||||
* @param int|null $length (optional)
|
|
||||||
*
|
|
||||||
* @throws TypeError
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function RandomCompat_substr($binary_string, $start, $length = null)
|
|
||||||
{
|
|
||||||
if (!is_string($binary_string)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_substr(): First argument should be a string'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_int($start)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_substr(): Second argument should be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($length !== null) {
|
|
||||||
if (!is_int($length)) {
|
|
||||||
throw new TypeError(
|
|
||||||
'RandomCompat_substr(): Third argument should be an integer, or omitted'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) substr(
|
|
||||||
(string )$binary_string,
|
|
||||||
(int) $start,
|
|
||||||
(int) $length
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (string) substr(
|
|
||||||
(string) $binary_string,
|
|
||||||
(int) $start
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,77 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!is_callable('RandomCompat_intval')) {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Cast to an integer if we can, safely.
|
|
||||||
*
|
|
||||||
* If you pass it a float in the range (~PHP_INT_MAX, PHP_INT_MAX)
|
|
||||||
* (non-inclusive), it will sanely cast it to an int. If you it's equal to
|
|
||||||
* ~PHP_INT_MAX or PHP_INT_MAX, we let it fail as not an integer. Floats
|
|
||||||
* lose precision, so the <= and => operators might accidentally let a float
|
|
||||||
* through.
|
|
||||||
*
|
|
||||||
* @param int|float $number The number we want to convert to an int
|
|
||||||
* @param bool $fail_open Set to true to not throw an exception
|
|
||||||
*
|
|
||||||
* @return float|int
|
|
||||||
* @psalm-suppress InvalidReturnType
|
|
||||||
*
|
|
||||||
* @throws TypeError
|
|
||||||
*/
|
|
||||||
function RandomCompat_intval($number, $fail_open = false)
|
|
||||||
{
|
|
||||||
if (is_int($number) || is_float($number)) {
|
|
||||||
$number += 0;
|
|
||||||
} elseif (is_numeric($number)) {
|
|
||||||
/** @psalm-suppress InvalidOperand */
|
|
||||||
$number += 0;
|
|
||||||
}
|
|
||||||
/** @var int|float $number */
|
|
||||||
|
|
||||||
if (
|
|
||||||
is_float($number)
|
|
||||||
&&
|
|
||||||
$number > ~PHP_INT_MAX
|
|
||||||
&&
|
|
||||||
$number < PHP_INT_MAX
|
|
||||||
) {
|
|
||||||
$number = (int) $number;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_int($number)) {
|
|
||||||
return (int) $number;
|
|
||||||
} elseif (!$fail_open) {
|
|
||||||
throw new TypeError(
|
|
||||||
'Expected an integer.'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return $number;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!class_exists('Error', false)) {
|
|
||||||
// We can't really avoid making this extend Exception in PHP 5.
|
|
||||||
class Error extends Exception
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!class_exists('TypeError', false)) {
|
|
||||||
if (is_subclass_of('Error', 'Exception')) {
|
|
||||||
class TypeError extends Error
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
class TypeError extends Exception
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
226
vendor/paragonie/random_compat/lib/random.php
vendored
226
vendor/paragonie/random_compat/lib/random.php
vendored
@ -1,226 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* @version 2.0.17
|
|
||||||
* @released 2018-07-04
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!defined('PHP_VERSION_ID')) {
|
|
||||||
// This constant was introduced in PHP 5.2.7
|
|
||||||
$RandomCompatversion = array_map('intval', explode('.', PHP_VERSION));
|
|
||||||
define(
|
|
||||||
'PHP_VERSION_ID',
|
|
||||||
$RandomCompatversion[0] * 10000
|
|
||||||
+ $RandomCompatversion[1] * 100
|
|
||||||
+ $RandomCompatversion[2]
|
|
||||||
);
|
|
||||||
$RandomCompatversion = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* PHP 7.0.0 and newer have these functions natively.
|
|
||||||
*/
|
|
||||||
if (PHP_VERSION_ID >= 70000) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!defined('RANDOM_COMPAT_READ_BUFFER')) {
|
|
||||||
define('RANDOM_COMPAT_READ_BUFFER', 8);
|
|
||||||
}
|
|
||||||
|
|
||||||
$RandomCompatDIR = dirname(__FILE__);
|
|
||||||
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'byte_safe_strings.php';
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'cast_to_int.php';
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'error_polyfill.php';
|
|
||||||
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* PHP 5.2.0 - 5.6.x way to implement random_bytes()
|
|
||||||
*
|
|
||||||
* We use conditional statements here to define the function in accordance
|
|
||||||
* to the operating environment. It's a micro-optimization.
|
|
||||||
*
|
|
||||||
* In order of preference:
|
|
||||||
* 1. Use libsodium if available.
|
|
||||||
* 2. fread() /dev/urandom if available (never on Windows)
|
|
||||||
* 3. mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM)
|
|
||||||
* 4. COM('CAPICOM.Utilities.1')->GetRandom()
|
|
||||||
*
|
|
||||||
* See RATIONALE.md for our reasoning behind this particular order
|
|
||||||
*/
|
|
||||||
if (extension_loaded('libsodium')) {
|
|
||||||
// See random_bytes_libsodium.php
|
|
||||||
if (PHP_VERSION_ID >= 50300 && is_callable('\\Sodium\\randombytes_buf')) {
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'random_bytes_libsodium.php';
|
|
||||||
} elseif (method_exists('Sodium', 'randombytes_buf')) {
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'random_bytes_libsodium_legacy.php';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reading directly from /dev/urandom:
|
|
||||||
*/
|
|
||||||
if (DIRECTORY_SEPARATOR === '/') {
|
|
||||||
// DIRECTORY_SEPARATOR === '/' on Unix-like OSes -- this is a fast
|
|
||||||
// way to exclude Windows.
|
|
||||||
$RandomCompatUrandom = true;
|
|
||||||
$RandomCompat_basedir = ini_get('open_basedir');
|
|
||||||
|
|
||||||
if (!empty($RandomCompat_basedir)) {
|
|
||||||
$RandomCompat_open_basedir = explode(
|
|
||||||
PATH_SEPARATOR,
|
|
||||||
strtolower($RandomCompat_basedir)
|
|
||||||
);
|
|
||||||
$RandomCompatUrandom = (array() !== array_intersect(
|
|
||||||
array('/dev', '/dev/', '/dev/urandom'),
|
|
||||||
$RandomCompat_open_basedir
|
|
||||||
));
|
|
||||||
$RandomCompat_open_basedir = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
!is_callable('random_bytes')
|
|
||||||
&&
|
|
||||||
$RandomCompatUrandom
|
|
||||||
&&
|
|
||||||
@is_readable('/dev/urandom')
|
|
||||||
) {
|
|
||||||
// Error suppression on is_readable() in case of an open_basedir
|
|
||||||
// or safe_mode failure. All we care about is whether or not we
|
|
||||||
// can read it at this point. If the PHP environment is going to
|
|
||||||
// panic over trying to see if the file can be read in the first
|
|
||||||
// place, that is not helpful to us here.
|
|
||||||
|
|
||||||
// See random_bytes_dev_urandom.php
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'random_bytes_dev_urandom.php';
|
|
||||||
}
|
|
||||||
// Unset variables after use
|
|
||||||
$RandomCompat_basedir = null;
|
|
||||||
} else {
|
|
||||||
$RandomCompatUrandom = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* mcrypt_create_iv()
|
|
||||||
*
|
|
||||||
* We only want to use mcypt_create_iv() if:
|
|
||||||
*
|
|
||||||
* - random_bytes() hasn't already been defined
|
|
||||||
* - the mcrypt extensions is loaded
|
|
||||||
* - One of these two conditions is true:
|
|
||||||
* - We're on Windows (DIRECTORY_SEPARATOR !== '/')
|
|
||||||
* - We're not on Windows and /dev/urandom is readabale
|
|
||||||
* (i.e. we're not in a chroot jail)
|
|
||||||
* - Special case:
|
|
||||||
* - If we're not on Windows, but the PHP version is between
|
|
||||||
* 5.6.10 and 5.6.12, we don't want to use mcrypt. It will
|
|
||||||
* hang indefinitely. This is bad.
|
|
||||||
* - If we're on Windows, we want to use PHP >= 5.3.7 or else
|
|
||||||
* we get insufficient entropy errors.
|
|
||||||
*/
|
|
||||||
if (
|
|
||||||
!is_callable('random_bytes')
|
|
||||||
&&
|
|
||||||
// Windows on PHP < 5.3.7 is broken, but non-Windows is not known to be.
|
|
||||||
(DIRECTORY_SEPARATOR === '/' || PHP_VERSION_ID >= 50307)
|
|
||||||
&&
|
|
||||||
// Prevent this code from hanging indefinitely on non-Windows;
|
|
||||||
// see https://bugs.php.net/bug.php?id=69833
|
|
||||||
(
|
|
||||||
DIRECTORY_SEPARATOR !== '/' ||
|
|
||||||
(PHP_VERSION_ID <= 50609 || PHP_VERSION_ID >= 50613)
|
|
||||||
)
|
|
||||||
&&
|
|
||||||
extension_loaded('mcrypt')
|
|
||||||
) {
|
|
||||||
// See random_bytes_mcrypt.php
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'random_bytes_mcrypt.php';
|
|
||||||
}
|
|
||||||
$RandomCompatUrandom = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This is a Windows-specific fallback, for when the mcrypt extension
|
|
||||||
* isn't loaded.
|
|
||||||
*/
|
|
||||||
if (
|
|
||||||
!is_callable('random_bytes')
|
|
||||||
&&
|
|
||||||
extension_loaded('com_dotnet')
|
|
||||||
&&
|
|
||||||
class_exists('COM')
|
|
||||||
) {
|
|
||||||
$RandomCompat_disabled_classes = preg_split(
|
|
||||||
'#\s*,\s*#',
|
|
||||||
strtolower(ini_get('disable_classes'))
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!in_array('com', $RandomCompat_disabled_classes)) {
|
|
||||||
try {
|
|
||||||
$RandomCompatCOMtest = new COM('CAPICOM.Utilities.1');
|
|
||||||
/** @psalm-suppress TypeDoesNotContainType */
|
|
||||||
if (is_callable(array($RandomCompatCOMtest, 'GetRandom'))) {
|
|
||||||
// See random_bytes_com_dotnet.php
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'random_bytes_com_dotnet.php';
|
|
||||||
}
|
|
||||||
} catch (com_exception $e) {
|
|
||||||
// Don't try to use it.
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$RandomCompat_disabled_classes = null;
|
|
||||||
$RandomCompatCOMtest = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* throw new Exception
|
|
||||||
*/
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* We don't have any more options, so let's throw an exception right now
|
|
||||||
* and hope the developer won't let it fail silently.
|
|
||||||
*
|
|
||||||
* @param mixed $length
|
|
||||||
* @psalm-suppress InvalidReturnType
|
|
||||||
* @throws Exception
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function random_bytes($length)
|
|
||||||
{
|
|
||||||
unset($length); // Suppress "variable not used" warnings.
|
|
||||||
throw new Exception(
|
|
||||||
'There is no suitable CSPRNG installed on your system'
|
|
||||||
);
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_callable('random_int')) {
|
|
||||||
require_once $RandomCompatDIR.DIRECTORY_SEPARATOR.'random_int.php';
|
|
||||||
}
|
|
||||||
|
|
||||||
$RandomCompatDIR = null;
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* Windows with PHP < 5.3.0 will not have the function
|
|
||||||
* openssl_random_pseudo_bytes() available, so let's use
|
|
||||||
* CAPICOM to work around this deficiency.
|
|
||||||
*
|
|
||||||
* @param int $bytes
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function random_bytes($bytes)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
/** @var int $bytes */
|
|
||||||
$bytes = RandomCompat_intval($bytes);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_bytes(): $bytes must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($bytes < 1) {
|
|
||||||
throw new Error(
|
|
||||||
'Length must be greater than 0'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @var string $buf */
|
|
||||||
$buf = '';
|
|
||||||
if (!class_exists('COM')) {
|
|
||||||
throw new Error(
|
|
||||||
'COM does not exist'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
/** @var COM $util */
|
|
||||||
$util = new COM('CAPICOM.Utilities.1');
|
|
||||||
$execCount = 0;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Let's not let it loop forever. If we run N times and fail to
|
|
||||||
* get N bytes of random data, then CAPICOM has failed us.
|
|
||||||
*/
|
|
||||||
do {
|
|
||||||
$buf .= base64_decode((string) $util->GetRandom($bytes, 0));
|
|
||||||
if (RandomCompat_strlen($buf) >= $bytes) {
|
|
||||||
/**
|
|
||||||
* Return our random entropy buffer here:
|
|
||||||
*/
|
|
||||||
return (string) RandomCompat_substr($buf, 0, $bytes);
|
|
||||||
}
|
|
||||||
++$execCount;
|
|
||||||
} while ($execCount < $bytes);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If we reach here, PHP has failed us.
|
|
||||||
*/
|
|
||||||
throw new Exception(
|
|
||||||
'Could not gather sufficient random data'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,190 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!defined('RANDOM_COMPAT_READ_BUFFER')) {
|
|
||||||
define('RANDOM_COMPAT_READ_BUFFER', 8);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* Unless open_basedir is enabled, use /dev/urandom for
|
|
||||||
* random numbers in accordance with best practices
|
|
||||||
*
|
|
||||||
* Why we use /dev/urandom and not /dev/random
|
|
||||||
* @ref https://www.2uo.de/myths-about-urandom
|
|
||||||
* @ref http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers
|
|
||||||
*
|
|
||||||
* @param int $bytes
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function random_bytes($bytes)
|
|
||||||
{
|
|
||||||
/** @var resource $fp */
|
|
||||||
static $fp = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This block should only be run once
|
|
||||||
*/
|
|
||||||
if (empty($fp)) {
|
|
||||||
/**
|
|
||||||
* We don't want to ever read C:\dev\random, only /dev/urandom on
|
|
||||||
* Unix-like operating systems. While we guard against this
|
|
||||||
* condition in random.php, it doesn't hurt to be defensive in depth
|
|
||||||
* here.
|
|
||||||
*
|
|
||||||
* To that end, we only try to open /dev/urandom if we're on a Unix-
|
|
||||||
* like operating system (which means the directory separator is set
|
|
||||||
* to "/" not "\".
|
|
||||||
*/
|
|
||||||
if (DIRECTORY_SEPARATOR === '/') {
|
|
||||||
if (!is_readable('/dev/urandom')) {
|
|
||||||
throw new Exception(
|
|
||||||
'Environment misconfiguration: ' .
|
|
||||||
'/dev/urandom cannot be read.'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* We use /dev/urandom if it is a char device.
|
|
||||||
* We never fall back to /dev/random
|
|
||||||
*/
|
|
||||||
/** @var resource|bool $fp */
|
|
||||||
$fp = fopen('/dev/urandom', 'rb');
|
|
||||||
if (is_resource($fp)) {
|
|
||||||
/** @var array<string, int> $st */
|
|
||||||
$st = fstat($fp);
|
|
||||||
if (($st['mode'] & 0170000) !== 020000) {
|
|
||||||
fclose($fp);
|
|
||||||
$fp = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_resource($fp)) {
|
|
||||||
/**
|
|
||||||
* stream_set_read_buffer() does not exist in HHVM
|
|
||||||
*
|
|
||||||
* If we don't set the stream's read buffer to 0, PHP will
|
|
||||||
* internally buffer 8192 bytes, which can waste entropy
|
|
||||||
*
|
|
||||||
* stream_set_read_buffer returns 0 on success
|
|
||||||
*/
|
|
||||||
if (is_callable('stream_set_read_buffer')) {
|
|
||||||
stream_set_read_buffer($fp, RANDOM_COMPAT_READ_BUFFER);
|
|
||||||
}
|
|
||||||
if (is_callable('stream_set_chunk_size')) {
|
|
||||||
stream_set_chunk_size($fp, RANDOM_COMPAT_READ_BUFFER);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
/** @var int $bytes */
|
|
||||||
$bytes = RandomCompat_intval($bytes);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_bytes(): $bytes must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($bytes < 1) {
|
|
||||||
throw new Error(
|
|
||||||
'Length must be greater than 0'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This if() block only runs if we managed to open a file handle
|
|
||||||
*
|
|
||||||
* It does not belong in an else {} block, because the above
|
|
||||||
* if (empty($fp)) line is logic that should only be run once per
|
|
||||||
* page load.
|
|
||||||
*/
|
|
||||||
if (is_resource($fp)) {
|
|
||||||
/**
|
|
||||||
* @var int
|
|
||||||
*/
|
|
||||||
$remaining = $bytes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string|bool
|
|
||||||
*/
|
|
||||||
$buf = '';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* We use fread() in a loop to protect against partial reads
|
|
||||||
*/
|
|
||||||
do {
|
|
||||||
/**
|
|
||||||
* @var string|bool
|
|
||||||
*/
|
|
||||||
$read = fread($fp, $remaining);
|
|
||||||
if (!is_string($read)) {
|
|
||||||
/**
|
|
||||||
* We cannot safely read from the file. Exit the
|
|
||||||
* do-while loop and trigger the exception condition
|
|
||||||
*
|
|
||||||
* @var string|bool
|
|
||||||
*/
|
|
||||||
$buf = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Decrease the number of bytes returned from remaining
|
|
||||||
*/
|
|
||||||
$remaining -= RandomCompat_strlen($read);
|
|
||||||
/**
|
|
||||||
* @var string $buf
|
|
||||||
*/
|
|
||||||
$buf .= $read;
|
|
||||||
} while ($remaining > 0);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Is our result valid?
|
|
||||||
* @var string|bool $buf
|
|
||||||
*/
|
|
||||||
if (is_string($buf)) {
|
|
||||||
if (RandomCompat_strlen($buf) === $bytes) {
|
|
||||||
/**
|
|
||||||
* Return our random entropy buffer here:
|
|
||||||
*/
|
|
||||||
return $buf;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If we reach here, PHP has failed us.
|
|
||||||
*/
|
|
||||||
throw new Exception(
|
|
||||||
'Error reading from source device'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* If the libsodium PHP extension is loaded, we'll use it above any other
|
|
||||||
* solution.
|
|
||||||
*
|
|
||||||
* libsodium-php project:
|
|
||||||
* @ref https://github.com/jedisct1/libsodium-php
|
|
||||||
*
|
|
||||||
* @param int $bytes
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function random_bytes($bytes)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
/** @var int $bytes */
|
|
||||||
$bytes = RandomCompat_intval($bytes);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_bytes(): $bytes must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($bytes < 1) {
|
|
||||||
throw new Error(
|
|
||||||
'Length must be greater than 0'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be
|
|
||||||
* generated in one invocation.
|
|
||||||
*/
|
|
||||||
/** @var string|bool $buf */
|
|
||||||
if ($bytes > 2147483647) {
|
|
||||||
$buf = '';
|
|
||||||
for ($i = 0; $i < $bytes; $i += 1073741824) {
|
|
||||||
$n = ($bytes - $i) > 1073741824
|
|
||||||
? 1073741824
|
|
||||||
: $bytes - $i;
|
|
||||||
$buf .= \Sodium\randombytes_buf($n);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/** @var string|bool $buf */
|
|
||||||
$buf = \Sodium\randombytes_buf($bytes);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_string($buf)) {
|
|
||||||
if (RandomCompat_strlen($buf) === $bytes) {
|
|
||||||
return $buf;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If we reach here, PHP has failed us.
|
|
||||||
*/
|
|
||||||
throw new Exception(
|
|
||||||
'Could not gather sufficient random data'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,93 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* If the libsodium PHP extension is loaded, we'll use it above any other
|
|
||||||
* solution.
|
|
||||||
*
|
|
||||||
* libsodium-php project:
|
|
||||||
* @ref https://github.com/jedisct1/libsodium-php
|
|
||||||
*
|
|
||||||
* @param int $bytes
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function random_bytes($bytes)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
/** @var int $bytes */
|
|
||||||
$bytes = RandomCompat_intval($bytes);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_bytes(): $bytes must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($bytes < 1) {
|
|
||||||
throw new Error(
|
|
||||||
'Length must be greater than 0'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
$buf = '';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* \Sodium\randombytes_buf() doesn't allow more than 2147483647 bytes to be
|
|
||||||
* generated in one invocation.
|
|
||||||
*/
|
|
||||||
if ($bytes > 2147483647) {
|
|
||||||
for ($i = 0; $i < $bytes; $i += 1073741824) {
|
|
||||||
$n = ($bytes - $i) > 1073741824
|
|
||||||
? 1073741824
|
|
||||||
: $bytes - $i;
|
|
||||||
$buf .= Sodium::randombytes_buf((int) $n);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$buf .= Sodium::randombytes_buf((int) $bytes);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_string($buf)) {
|
|
||||||
if (RandomCompat_strlen($buf) === $bytes) {
|
|
||||||
return $buf;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If we reach here, PHP has failed us.
|
|
||||||
*/
|
|
||||||
throw new Exception(
|
|
||||||
'Could not gather sufficient random data'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,79 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!is_callable('random_bytes')) {
|
|
||||||
/**
|
|
||||||
* Powered by ext/mcrypt (and thankfully NOT libmcrypt)
|
|
||||||
*
|
|
||||||
* @ref https://bugs.php.net/bug.php?id=55169
|
|
||||||
* @ref https://github.com/php/php-src/blob/c568ffe5171d942161fc8dda066bce844bdef676/ext/mcrypt/mcrypt.c#L1321-L1386
|
|
||||||
*
|
|
||||||
* @param int $bytes
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function random_bytes($bytes)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
/** @var int $bytes */
|
|
||||||
$bytes = RandomCompat_intval($bytes);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_bytes(): $bytes must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($bytes < 1) {
|
|
||||||
throw new Error(
|
|
||||||
'Length must be greater than 0'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @var string|bool $buf */
|
|
||||||
$buf = @mcrypt_create_iv((int) $bytes, (int) MCRYPT_DEV_URANDOM);
|
|
||||||
if (
|
|
||||||
is_string($buf)
|
|
||||||
&&
|
|
||||||
RandomCompat_strlen($buf) === $bytes
|
|
||||||
) {
|
|
||||||
/**
|
|
||||||
* Return our random entropy buffer here:
|
|
||||||
*/
|
|
||||||
return $buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If we reach here, PHP has failed us.
|
|
||||||
*/
|
|
||||||
throw new Exception(
|
|
||||||
'Could not gather sufficient random data'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
204
vendor/paragonie/random_compat/lib/random_int.php
vendored
204
vendor/paragonie/random_compat/lib/random_int.php
vendored
@ -1,204 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
if (!is_callable('random_int')) {
|
|
||||||
/**
|
|
||||||
* Random_* Compatibility Library
|
|
||||||
* for using the new PHP 7 random_* API in PHP 5 projects
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2015 - 2018 Paragon Initiative Enterprises
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetch a random integer between $min and $max inclusive
|
|
||||||
*
|
|
||||||
* @param int $min
|
|
||||||
* @param int $max
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
function random_int($min, $max)
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Type and input logic checks
|
|
||||||
*
|
|
||||||
* If you pass it a float in the range (~PHP_INT_MAX, PHP_INT_MAX)
|
|
||||||
* (non-inclusive), it will sanely cast it to an int. If you it's equal to
|
|
||||||
* ~PHP_INT_MAX or PHP_INT_MAX, we let it fail as not an integer. Floats
|
|
||||||
* lose precision, so the <= and => operators might accidentally let a float
|
|
||||||
* through.
|
|
||||||
*/
|
|
||||||
|
|
||||||
try {
|
|
||||||
/** @var int $min */
|
|
||||||
$min = RandomCompat_intval($min);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_int(): $min must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
/** @var int $max */
|
|
||||||
$max = RandomCompat_intval($max);
|
|
||||||
} catch (TypeError $ex) {
|
|
||||||
throw new TypeError(
|
|
||||||
'random_int(): $max must be an integer'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Now that we've verified our weak typing system has given us an integer,
|
|
||||||
* let's validate the logic then we can move forward with generating random
|
|
||||||
* integers along a given range.
|
|
||||||
*/
|
|
||||||
if ($min > $max) {
|
|
||||||
throw new Error(
|
|
||||||
'Minimum value must be less than or equal to the maximum value'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($max === $min) {
|
|
||||||
return (int) $min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialize variables to 0
|
|
||||||
*
|
|
||||||
* We want to store:
|
|
||||||
* $bytes => the number of random bytes we need
|
|
||||||
* $mask => an integer bitmask (for use with the &) operator
|
|
||||||
* so we can minimize the number of discards
|
|
||||||
*/
|
|
||||||
$attempts = $bits = $bytes = $mask = $valueShift = 0;
|
|
||||||
/** @var int $attempts */
|
|
||||||
/** @var int $bits */
|
|
||||||
/** @var int $bytes */
|
|
||||||
/** @var int $mask */
|
|
||||||
/** @var int $valueShift */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* At this point, $range is a positive number greater than 0. It might
|
|
||||||
* overflow, however, if $max - $min > PHP_INT_MAX. PHP will cast it to
|
|
||||||
* a float and we will lose some precision.
|
|
||||||
*
|
|
||||||
* @var int|float $range
|
|
||||||
*/
|
|
||||||
$range = $max - $min;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test for integer overflow:
|
|
||||||
*/
|
|
||||||
if (!is_int($range)) {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Still safely calculate wider ranges.
|
|
||||||
* Provided by @CodesInChaos, @oittaa
|
|
||||||
*
|
|
||||||
* @ref https://gist.github.com/CodesInChaos/03f9ea0b58e8b2b8d435
|
|
||||||
*
|
|
||||||
* We use ~0 as a mask in this case because it generates all 1s
|
|
||||||
*
|
|
||||||
* @ref https://eval.in/400356 (32-bit)
|
|
||||||
* @ref http://3v4l.org/XX9r5 (64-bit)
|
|
||||||
*/
|
|
||||||
$bytes = PHP_INT_SIZE;
|
|
||||||
/** @var int $mask */
|
|
||||||
$mask = ~0;
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* $bits is effectively ceil(log($range, 2)) without dealing with
|
|
||||||
* type juggling
|
|
||||||
*/
|
|
||||||
while ($range > 0) {
|
|
||||||
if ($bits % 8 === 0) {
|
|
||||||
++$bytes;
|
|
||||||
}
|
|
||||||
++$bits;
|
|
||||||
$range >>= 1;
|
|
||||||
/** @var int $mask */
|
|
||||||
$mask = $mask << 1 | 1;
|
|
||||||
}
|
|
||||||
$valueShift = $min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @var int $val */
|
|
||||||
$val = 0;
|
|
||||||
/**
|
|
||||||
* Now that we have our parameters set up, let's begin generating
|
|
||||||
* random integers until one falls between $min and $max
|
|
||||||
*/
|
|
||||||
/** @psalm-suppress RedundantCondition */
|
|
||||||
do {
|
|
||||||
/**
|
|
||||||
* The rejection probability is at most 0.5, so this corresponds
|
|
||||||
* to a failure probability of 2^-128 for a working RNG
|
|
||||||
*/
|
|
||||||
if ($attempts > 128) {
|
|
||||||
throw new Exception(
|
|
||||||
'random_int: RNG is broken - too many rejections'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Let's grab the necessary number of random bytes
|
|
||||||
*/
|
|
||||||
$randomByteString = random_bytes($bytes);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Let's turn $randomByteString into an integer
|
|
||||||
*
|
|
||||||
* This uses bitwise operators (<< and |) to build an integer
|
|
||||||
* out of the values extracted from ord()
|
|
||||||
*
|
|
||||||
* Example: [9F] | [6D] | [32] | [0C] =>
|
|
||||||
* 159 + 27904 + 3276800 + 201326592 =>
|
|
||||||
* 204631455
|
|
||||||
*/
|
|
||||||
$val &= 0;
|
|
||||||
for ($i = 0; $i < $bytes; ++$i) {
|
|
||||||
$val |= ord($randomByteString[$i]) << ($i * 8);
|
|
||||||
}
|
|
||||||
/** @var int $val */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Apply mask
|
|
||||||
*/
|
|
||||||
$val &= $mask;
|
|
||||||
$val += $valueShift;
|
|
||||||
|
|
||||||
++$attempts;
|
|
||||||
/**
|
|
||||||
* If $val overflows to a floating point number,
|
|
||||||
* ... or is larger than $max,
|
|
||||||
* ... or smaller than $min,
|
|
||||||
* then try again.
|
|
||||||
*/
|
|
||||||
} while (!is_int($val) || $val > $max || $val < $min);
|
|
||||||
|
|
||||||
return (int) $val;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user