vendor
15
niucloud/vendor/composer/InstalledVersions.php
vendored
@ -98,7 +98,7 @@ class InstalledVersions
|
|||||||
{
|
{
|
||||||
foreach (self::getInstalled() as $installed) {
|
foreach (self::getInstalled() as $installed) {
|
||||||
if (isset($installed['versions'][$packageName])) {
|
if (isset($installed['versions'][$packageName])) {
|
||||||
return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
|
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -119,7 +119,7 @@ class InstalledVersions
|
|||||||
*/
|
*/
|
||||||
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);
|
||||||
@ -328,7 +328,9 @@ class InstalledVersions
|
|||||||
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__, '\\', '/')) {
|
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
|
||||||
self::$installed = $installed[count($installed) - 1];
|
self::$installed = $installed[count($installed) - 1];
|
||||||
}
|
}
|
||||||
@ -340,12 +342,17 @@ class InstalledVersions
|
|||||||
// only require the installed.php file if this file is loaded from its dumped location,
|
// 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
|
// 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') {
|
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||||
self::$installed = require __DIR__ . '/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 __DIR__ . '/installed.php';
|
||||||
|
self::$installed = $required;
|
||||||
} else {
|
} else {
|
||||||
self::$installed = array();
|
self::$installed = array();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (self::$installed !== array()) {
|
||||||
$installed[] = self::$installed;
|
$installed[] = self::$installed;
|
||||||
|
}
|
||||||
|
|
||||||
return $installed;
|
return $installed;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -12,7 +12,7 @@ return array(
|
|||||||
'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
|
'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
|
||||||
'QcloudApi' => $vendorDir . '/tencentcloud/tencentcloud-sdk-php/src/QcloudApi/QcloudApi.php',
|
'QcloudApi' => $vendorDir . '/tencentcloud/tencentcloud-sdk-php/src/QcloudApi/QcloudApi.php',
|
||||||
'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php',
|
'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php',
|
||||||
'Stringable' => $vendorDir . '/myclabs/php-enum/stubs/Stringable.php',
|
'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
|
||||||
'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
|
'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
|
||||||
'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
|
'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
|
||||||
);
|
);
|
||||||
|
|||||||
5
niucloud/vendor/composer/autoload_psr4.php
vendored
@ -12,10 +12,11 @@ return array(
|
|||||||
'think\\captcha\\' => array($vendorDir . '/topthink/think-captcha/src'),
|
'think\\captcha\\' => array($vendorDir . '/topthink/think-captcha/src'),
|
||||||
'think\\app\\' => array($vendorDir . '/topthink/think-multi-app/src'),
|
'think\\app\\' => array($vendorDir . '/topthink/think-multi-app/src'),
|
||||||
'think\\' => array($vendorDir . '/topthink/framework/src/think', $vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-image/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/think-queue/src', $vendorDir . '/topthink/think-template/src'),
|
'think\\' => array($vendorDir . '/topthink/framework/src/think', $vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-image/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/think-queue/src', $vendorDir . '/topthink/think-template/src'),
|
||||||
'extend\\' => array($baseDir . '/extend'),
|
|
||||||
'dh2y\\qrcode\\' => array($vendorDir . '/dh2y/think-qrcode/src'),
|
'dh2y\\qrcode\\' => array($vendorDir . '/dh2y/think-qrcode/src'),
|
||||||
|
'core\\' => array($baseDir . '/core'),
|
||||||
'clagiordano\\weblibs\\configmanager\\' => array($vendorDir . '/clagiordano/weblibs-configmanager/src'),
|
'clagiordano\\weblibs\\configmanager\\' => array($vendorDir . '/clagiordano/weblibs-configmanager/src'),
|
||||||
'app\\' => array($baseDir . '/app'),
|
'app\\' => array($baseDir . '/app'),
|
||||||
|
'addon\\' => array($baseDir . '/addon'),
|
||||||
'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'),
|
'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'),
|
||||||
'Yansongda\\Supports\\' => array($vendorDir . '/yansongda/supports/src'),
|
'Yansongda\\Supports\\' => array($vendorDir . '/yansongda/supports/src'),
|
||||||
'Yansongda\\Pay\\' => array($vendorDir . '/yansongda/pay/src'),
|
'Yansongda\\Pay\\' => array($vendorDir . '/yansongda/pay/src'),
|
||||||
@ -57,6 +58,7 @@ return array(
|
|||||||
'Laravel\\SerializableClosure\\' => array($vendorDir . '/laravel/serializable-closure/src'),
|
'Laravel\\SerializableClosure\\' => array($vendorDir . '/laravel/serializable-closure/src'),
|
||||||
'JmesPath\\' => array($vendorDir . '/mtdowling/jmespath.php/src'),
|
'JmesPath\\' => array($vendorDir . '/mtdowling/jmespath.php/src'),
|
||||||
'Invoker\\' => array($vendorDir . '/php-di/invoker/src'),
|
'Invoker\\' => array($vendorDir . '/php-di/invoker/src'),
|
||||||
|
'Intervention\\Image\\' => array($vendorDir . '/intervention/image/src/Intervention/Image'),
|
||||||
'GuzzleHttp\\UriTemplate\\' => array($vendorDir . '/guzzlehttp/uri-template/src'),
|
'GuzzleHttp\\UriTemplate\\' => array($vendorDir . '/guzzlehttp/uri-template/src'),
|
||||||
'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
|
'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
|
||||||
'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
|
'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
|
||||||
@ -64,6 +66,7 @@ return array(
|
|||||||
'GuzzleHttp\\Command\\' => array($vendorDir . '/guzzlehttp/command/src'),
|
'GuzzleHttp\\Command\\' => array($vendorDir . '/guzzlehttp/command/src'),
|
||||||
'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
|
'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
|
||||||
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
|
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
|
||||||
|
'Fastknife\\' => array($vendorDir . '/fastknife/ajcaptcha/src'),
|
||||||
'EasyWeChat\\' => array($vendorDir . '/overtrue/wechat/src'),
|
'EasyWeChat\\' => array($vendorDir . '/overtrue/wechat/src'),
|
||||||
'EasyWeChatComposer\\' => array($vendorDir . '/easywechat-composer/easywechat-composer/src'),
|
'EasyWeChatComposer\\' => array($vendorDir . '/easywechat-composer/easywechat-composer/src'),
|
||||||
'DI\\' => array($vendorDir . '/php-di/php-di/src'),
|
'DI\\' => array($vendorDir . '/php-di/php-di/src'),
|
||||||
|
|||||||
30
niucloud/vendor/composer/autoload_static.php
vendored
@ -51,21 +51,19 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
'think\\app\\' => 10,
|
'think\\app\\' => 10,
|
||||||
'think\\' => 6,
|
'think\\' => 6,
|
||||||
),
|
),
|
||||||
'e' =>
|
|
||||||
array (
|
|
||||||
'extend\\' => 7,
|
|
||||||
),
|
|
||||||
'd' =>
|
'd' =>
|
||||||
array (
|
array (
|
||||||
'dh2y\\qrcode\\' => 12,
|
'dh2y\\qrcode\\' => 12,
|
||||||
),
|
),
|
||||||
'c' =>
|
'c' =>
|
||||||
array (
|
array (
|
||||||
|
'core\\' => 5,
|
||||||
'clagiordano\\weblibs\\configmanager\\' => 34,
|
'clagiordano\\weblibs\\configmanager\\' => 34,
|
||||||
),
|
),
|
||||||
'a' =>
|
'a' =>
|
||||||
array (
|
array (
|
||||||
'app\\' => 4,
|
'app\\' => 4,
|
||||||
|
'addon\\' => 6,
|
||||||
),
|
),
|
||||||
'Z' =>
|
'Z' =>
|
||||||
array (
|
array (
|
||||||
@ -143,6 +141,7 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
'I' =>
|
'I' =>
|
||||||
array (
|
array (
|
||||||
'Invoker\\' => 8,
|
'Invoker\\' => 8,
|
||||||
|
'Intervention\\Image\\' => 19,
|
||||||
),
|
),
|
||||||
'G' =>
|
'G' =>
|
||||||
array (
|
array (
|
||||||
@ -156,6 +155,7 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
'F' =>
|
'F' =>
|
||||||
array (
|
array (
|
||||||
'Firebase\\JWT\\' => 13,
|
'Firebase\\JWT\\' => 13,
|
||||||
|
'Fastknife\\' => 10,
|
||||||
),
|
),
|
||||||
'E' =>
|
'E' =>
|
||||||
array (
|
array (
|
||||||
@ -209,14 +209,14 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
4 => __DIR__ . '/..' . '/topthink/think-queue/src',
|
4 => __DIR__ . '/..' . '/topthink/think-queue/src',
|
||||||
5 => __DIR__ . '/..' . '/topthink/think-template/src',
|
5 => __DIR__ . '/..' . '/topthink/think-template/src',
|
||||||
),
|
),
|
||||||
'extend\\' =>
|
|
||||||
array (
|
|
||||||
0 => __DIR__ . '/../..' . '/extend',
|
|
||||||
),
|
|
||||||
'dh2y\\qrcode\\' =>
|
'dh2y\\qrcode\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/dh2y/think-qrcode/src',
|
0 => __DIR__ . '/..' . '/dh2y/think-qrcode/src',
|
||||||
),
|
),
|
||||||
|
'core\\' =>
|
||||||
|
array (
|
||||||
|
0 => __DIR__ . '/../..' . '/core',
|
||||||
|
),
|
||||||
'clagiordano\\weblibs\\configmanager\\' =>
|
'clagiordano\\weblibs\\configmanager\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/clagiordano/weblibs-configmanager/src',
|
0 => __DIR__ . '/..' . '/clagiordano/weblibs-configmanager/src',
|
||||||
@ -225,6 +225,10 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/../..' . '/app',
|
0 => __DIR__ . '/../..' . '/app',
|
||||||
),
|
),
|
||||||
|
'addon\\' =>
|
||||||
|
array (
|
||||||
|
0 => __DIR__ . '/../..' . '/addon',
|
||||||
|
),
|
||||||
'ZipStream\\' =>
|
'ZipStream\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/maennchen/zipstream-php/src',
|
0 => __DIR__ . '/..' . '/maennchen/zipstream-php/src',
|
||||||
@ -390,6 +394,10 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/php-di/invoker/src',
|
0 => __DIR__ . '/..' . '/php-di/invoker/src',
|
||||||
),
|
),
|
||||||
|
'Intervention\\Image\\' =>
|
||||||
|
array (
|
||||||
|
0 => __DIR__ . '/..' . '/intervention/image/src/Intervention/Image',
|
||||||
|
),
|
||||||
'GuzzleHttp\\UriTemplate\\' =>
|
'GuzzleHttp\\UriTemplate\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/guzzlehttp/uri-template/src',
|
0 => __DIR__ . '/..' . '/guzzlehttp/uri-template/src',
|
||||||
@ -418,6 +426,10 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
|
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
|
||||||
),
|
),
|
||||||
|
'Fastknife\\' =>
|
||||||
|
array (
|
||||||
|
0 => __DIR__ . '/..' . '/fastknife/ajcaptcha/src',
|
||||||
|
),
|
||||||
'EasyWeChat\\' =>
|
'EasyWeChat\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/overtrue/wechat/src',
|
0 => __DIR__ . '/..' . '/overtrue/wechat/src',
|
||||||
@ -480,7 +492,7 @@ class ComposerStaticInitf082efa3600aae2b847c3e8b4e641a4e
|
|||||||
'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
|
'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
|
||||||
'QcloudApi' => __DIR__ . '/..' . '/tencentcloud/tencentcloud-sdk-php/src/QcloudApi/QcloudApi.php',
|
'QcloudApi' => __DIR__ . '/..' . '/tencentcloud/tencentcloud-sdk-php/src/QcloudApi/QcloudApi.php',
|
||||||
'Requests' => __DIR__ . '/..' . '/rmccue/requests/library/Requests.php',
|
'Requests' => __DIR__ . '/..' . '/rmccue/requests/library/Requests.php',
|
||||||
'Stringable' => __DIR__ . '/..' . '/myclabs/php-enum/stubs/Stringable.php',
|
'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
|
||||||
'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
|
'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
|
||||||
'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
|
'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
|
||||||
);
|
);
|
||||||
|
|||||||
1969
niucloud/vendor/composer/installed.json
vendored
106
niucloud/vendor/composer/installed.php
vendored
@ -3,7 +3,7 @@
|
|||||||
'name' => 'topthink/think',
|
'name' => 'topthink/think',
|
||||||
'pretty_version' => 'dev-master',
|
'pretty_version' => 'dev-master',
|
||||||
'version' => 'dev-master',
|
'version' => 'dev-master',
|
||||||
'reference' => '79f3e3ee8c4e2653ed013397a10712a24eae2565',
|
'reference' => '7939a59b413ebc73af2f7f44540d15df3ad38d1a',
|
||||||
'type' => 'project',
|
'type' => 'project',
|
||||||
'install_path' => __DIR__ . '/../../',
|
'install_path' => __DIR__ . '/../../',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -56,9 +56,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'dragonmantank/cron-expression' => array(
|
'dragonmantank/cron-expression' => array(
|
||||||
'pretty_version' => 'v3.3.2',
|
'pretty_version' => 'v3.3.1',
|
||||||
'version' => '3.3.2.0',
|
'version' => '3.3.1.0',
|
||||||
'reference' => '782ca5968ab8b954773518e9e49a6f892a34b2a8',
|
'reference' => 'be85b3f05b46c39bbc0d95f6c071ddff669510fa',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../dragonmantank/cron-expression',
|
'install_path' => __DIR__ . '/../dragonmantank/cron-expression',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -82,6 +82,15 @@
|
|||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
|
'fastknife/ajcaptcha' => array(
|
||||||
|
'pretty_version' => 'v1.2.1',
|
||||||
|
'version' => '1.2.1.0',
|
||||||
|
'reference' => '836c5a3177bc622a245734aef421085955d0b2cb',
|
||||||
|
'type' => 'library',
|
||||||
|
'install_path' => __DIR__ . '/../fastknife/ajcaptcha',
|
||||||
|
'aliases' => array(),
|
||||||
|
'dev_requirement' => false,
|
||||||
|
),
|
||||||
'firebase/php-jwt' => array(
|
'firebase/php-jwt' => array(
|
||||||
'pretty_version' => 'v5.5.1',
|
'pretty_version' => 'v5.5.1',
|
||||||
'version' => '5.5.1.0',
|
'version' => '5.5.1.0',
|
||||||
@ -128,9 +137,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'guzzlehttp/psr7' => array(
|
'guzzlehttp/psr7' => array(
|
||||||
'pretty_version' => '2.4.3',
|
'pretty_version' => '2.5.0',
|
||||||
'version' => '2.4.3.0',
|
'version' => '2.5.0.0',
|
||||||
'reference' => '67c26b443f348a51926030c83481b85718457d3d',
|
'reference' => 'b635f279edd83fc275f822a1188157ffea568ff6',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
|
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -145,6 +154,15 @@
|
|||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
|
'intervention/image' => array(
|
||||||
|
'pretty_version' => '2.7.2',
|
||||||
|
'version' => '2.7.2.0',
|
||||||
|
'reference' => '04be355f8d6734c826045d02a1079ad658322dad',
|
||||||
|
'type' => 'library',
|
||||||
|
'install_path' => __DIR__ . '/../intervention/image',
|
||||||
|
'aliases' => array(),
|
||||||
|
'dev_requirement' => false,
|
||||||
|
),
|
||||||
'laravel/serializable-closure' => array(
|
'laravel/serializable-closure' => array(
|
||||||
'pretty_version' => 'v1.2.2',
|
'pretty_version' => 'v1.2.2',
|
||||||
'version' => '1.2.2.0',
|
'version' => '1.2.2.0',
|
||||||
@ -182,9 +200,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'monolog/monolog' => array(
|
'monolog/monolog' => array(
|
||||||
'pretty_version' => '2.9.1',
|
'pretty_version' => '2.9.0',
|
||||||
'version' => '2.9.1.0',
|
'version' => '2.9.0.0',
|
||||||
'reference' => 'f259e2b15fb95494c83f52d3caad003bbf5ffaa1',
|
'reference' => 'e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../monolog/monolog',
|
'install_path' => __DIR__ . '/../monolog/monolog',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -206,9 +224,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'myclabs/php-enum' => array(
|
'myclabs/php-enum' => array(
|
||||||
'pretty_version' => '1.8.4',
|
'pretty_version' => '1.8.3',
|
||||||
'version' => '1.8.4.0',
|
'version' => '1.8.3.0',
|
||||||
'reference' => 'a867478eae49c9f59ece437ae7f9506bfaa27483',
|
'reference' => 'b942d263c641ddb5190929ff840c68f78713e937',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../myclabs/php-enum',
|
'install_path' => __DIR__ . '/../myclabs/php-enum',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -233,9 +251,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'overtrue/wechat' => array(
|
'overtrue/wechat' => array(
|
||||||
'pretty_version' => '5.32.0',
|
'pretty_version' => '5.30.0',
|
||||||
'version' => '5.32.0.0',
|
'version' => '5.30.0.0',
|
||||||
'reference' => '379de8a3e80d57a1e75f8e03540d0c7e5fe4c7d5',
|
'reference' => '245d1e821bc5a4609625c3244b111f570692cfc2',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../overtrue/wechat',
|
'install_path' => __DIR__ . '/../overtrue/wechat',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -260,9 +278,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'phpoffice/phpspreadsheet' => array(
|
'phpoffice/phpspreadsheet' => array(
|
||||||
'pretty_version' => '1.27.1',
|
'pretty_version' => '1.28.0',
|
||||||
'version' => '1.27.1.0',
|
'version' => '1.28.0.0',
|
||||||
'reference' => 'ef4e6ef74990239946d3983451a9bbed5ef1be5d',
|
'reference' => '6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../phpoffice/phpspreadsheet',
|
'install_path' => __DIR__ . '/../phpoffice/phpspreadsheet',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -338,9 +356,9 @@
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
'psr/http-factory' => array(
|
'psr/http-factory' => array(
|
||||||
'pretty_version' => '1.0.1',
|
'pretty_version' => '1.0.2',
|
||||||
'version' => '1.0.1.0',
|
'version' => '1.0.2.0',
|
||||||
'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be',
|
'reference' => 'e616d01114759c4c489f93b099585439f795fe35',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../psr/http-factory',
|
'install_path' => __DIR__ . '/../psr/http-factory',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -353,9 +371,9 @@
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
'psr/http-message' => array(
|
'psr/http-message' => array(
|
||||||
'pretty_version' => '1.0.1',
|
'pretty_version' => '1.1',
|
||||||
'version' => '1.0.1.0',
|
'version' => '1.1.0.0',
|
||||||
'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
|
'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../psr/http-message',
|
'install_path' => __DIR__ . '/../psr/http-message',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -398,9 +416,9 @@
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
'qcloud/cos-sdk-v5' => array(
|
'qcloud/cos-sdk-v5' => array(
|
||||||
'pretty_version' => 'v2.6.1',
|
'pretty_version' => 'v2.6.2',
|
||||||
'version' => '2.6.1.0',
|
'version' => '2.6.2.0',
|
||||||
'reference' => 'd367ba8d0305b83364b64055594a0ac22b1cefd8',
|
'reference' => '92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../qcloud/cos-sdk-v5',
|
'install_path' => __DIR__ . '/../qcloud/cos-sdk-v5',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -443,9 +461,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'symfony/cache' => array(
|
'symfony/cache' => array(
|
||||||
'pretty_version' => 'v5.4.19',
|
'pretty_version' => 'v5.4.23',
|
||||||
'version' => '5.4.19.0',
|
'version' => '5.4.23.0',
|
||||||
'reference' => 'e9147c89fdfdc5d5ef798bb7193f23726ad609f5',
|
'reference' => '983c79ff28612cdfd66d8e44e1a06e5afc87e107',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../symfony/cache',
|
'install_path' => __DIR__ . '/../symfony/cache',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -554,9 +572,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'symfony/psr-http-message-bridge' => array(
|
'symfony/psr-http-message-bridge' => array(
|
||||||
'pretty_version' => 'v2.1.3',
|
'pretty_version' => 'v2.2.0',
|
||||||
'version' => '2.1.3.0',
|
'version' => '2.2.0.0',
|
||||||
'reference' => 'd444f85dddf65c7e57c58d8e5b3a4dbb593b1840',
|
'reference' => '28a732c05bbad801304ad5a5c674cf2970508993',
|
||||||
'type' => 'symfony-bridge',
|
'type' => 'symfony-bridge',
|
||||||
'install_path' => __DIR__ . '/../symfony/psr-http-message-bridge',
|
'install_path' => __DIR__ . '/../symfony/psr-http-message-bridge',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -614,9 +632,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'tencentcloud/tencentcloud-sdk-php' => array(
|
'tencentcloud/tencentcloud-sdk-php' => array(
|
||||||
'pretty_version' => '3.0.831',
|
'pretty_version' => '3.0.885',
|
||||||
'version' => '3.0.831.0',
|
'version' => '3.0.885.0',
|
||||||
'reference' => 'b8a774522788b3b380e449f9acf927b83291a2ae',
|
'reference' => '0e7905b882c574e1eb305105c4307847d78a0464',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../tencentcloud/tencentcloud-sdk-php',
|
'install_path' => __DIR__ . '/../tencentcloud/tencentcloud-sdk-php',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -634,16 +652,16 @@
|
|||||||
'topthink/think' => array(
|
'topthink/think' => array(
|
||||||
'pretty_version' => 'dev-master',
|
'pretty_version' => 'dev-master',
|
||||||
'version' => 'dev-master',
|
'version' => 'dev-master',
|
||||||
'reference' => '79f3e3ee8c4e2653ed013397a10712a24eae2565',
|
'reference' => '7939a59b413ebc73af2f7f44540d15df3ad38d1a',
|
||||||
'type' => 'project',
|
'type' => 'project',
|
||||||
'install_path' => __DIR__ . '/../../',
|
'install_path' => __DIR__ . '/../../',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'topthink/think-captcha' => array(
|
'topthink/think-captcha' => array(
|
||||||
'pretty_version' => 'v3.0.8',
|
'pretty_version' => 'v3.0.9',
|
||||||
'version' => '3.0.8.0',
|
'version' => '3.0.9.0',
|
||||||
'reference' => '52fba122c953995bec3013c635025172491ae299',
|
'reference' => 'b1ef360670578214edeebcf824aaf6ab7ee0528b',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../topthink/think-captcha',
|
'install_path' => __DIR__ . '/../topthink/think-captcha',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
@ -677,9 +695,9 @@
|
|||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'topthink/think-orm' => array(
|
'topthink/think-orm' => array(
|
||||||
'pretty_version' => 'v2.0.58',
|
'pretty_version' => 'v2.0.61',
|
||||||
'version' => '2.0.58.0',
|
'version' => '2.0.61.0',
|
||||||
'reference' => 'fae96ca60891ae82df5d8050af959711354898a5',
|
'reference' => '10528ebf4a5106b19c3bac9c6deae7a67ff49de6',
|
||||||
'type' => 'library',
|
'type' => 'library',
|
||||||
'install_path' => __DIR__ . '/../topthink/think-orm',
|
'install_path' => __DIR__ . '/../topthink/think-orm',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
|
|||||||
@ -1,16 +1,5 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## [3.3.2] - 2022-09-19
|
|
||||||
|
|
||||||
### Added
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
- Skip some daylight savings time tests for PHP 8.1 daylight savings time weirdness (#146)
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- Changed string interpolations to work better with PHP 8.2 (#142)
|
|
||||||
|
|
||||||
## [3.3.1] - 2022-01-18
|
## [3.3.1] - 2022-01-18
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@ -37,11 +37,5 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"phpstan": "./vendor/bin/phpstan analyze",
|
"phpstan": "./vendor/bin/phpstan analyze",
|
||||||
"test": "phpunit"
|
"test": "phpunit"
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"allow-plugins": {
|
|
||||||
"ocramius/package-versions": true,
|
|
||||||
"phpstan/extension-installer": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,7 +49,7 @@ class DayOfMonthField extends AbstractField
|
|||||||
private static function getNearestWeekday(int $currentYear, int $currentMonth, int $targetDay): ?DateTime
|
private static function getNearestWeekday(int $currentYear, int $currentMonth, int $targetDay): ?DateTime
|
||||||
{
|
{
|
||||||
$tday = str_pad((string) $targetDay, 2, '0', STR_PAD_LEFT);
|
$tday = str_pad((string) $targetDay, 2, '0', STR_PAD_LEFT);
|
||||||
$target = DateTime::createFromFormat('Y-m-d', "{$currentYear}-{$currentMonth}-{$tday}");
|
$target = DateTime::createFromFormat('Y-m-d', "${currentYear}-${currentMonth}-${tday}");
|
||||||
|
|
||||||
if ($target === false) {
|
if ($target === false) {
|
||||||
return null;
|
return null;
|
||||||
@ -94,9 +94,9 @@ class DayOfMonthField extends AbstractField
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check to see if this is the nearest weekday to a particular value
|
// Check to see if this is the nearest weekday to a particular value
|
||||||
if ($wPosition = strpos($value, 'W')) {
|
if (strpos($value, 'W')) {
|
||||||
// Parse the target day
|
// Parse the target day
|
||||||
$targetDay = (int) substr($value, 0, $wPosition);
|
$targetDay = (int) substr($value, 0, strpos($value, 'W'));
|
||||||
// Find out if the current day is the nearest day of the week
|
// Find out if the current day is the nearest day of the week
|
||||||
$nearest = self::getNearestWeekday(
|
$nearest = self::getNearestWeekday(
|
||||||
(int) $date->format('Y'),
|
(int) $date->format('Y'),
|
||||||
|
|||||||
@ -68,8 +68,8 @@ class DayOfWeekField extends AbstractField
|
|||||||
$lastDayOfMonth = (int) $date->format('t');
|
$lastDayOfMonth = (int) $date->format('t');
|
||||||
|
|
||||||
// Find out if this is the last specific weekday of the month
|
// Find out if this is the last specific weekday of the month
|
||||||
if ($lPosition = strpos($value, 'L')) {
|
if (strpos($value, 'L')) {
|
||||||
$weekday = $this->convertLiterals(substr($value, 0, $lPosition));
|
$weekday = $this->convertLiterals(substr($value, 0, strpos($value, 'L')));
|
||||||
$weekday %= 7;
|
$weekday %= 7;
|
||||||
|
|
||||||
$daysInMonth = (int) $date->format('t');
|
$daysInMonth = (int) $date->format('t');
|
||||||
|
|||||||
@ -25,7 +25,7 @@ class HoursField extends AbstractField
|
|||||||
/**
|
/**
|
||||||
* @var array|null Transitions returned by DateTimeZone::getTransitions()
|
* @var array|null Transitions returned by DateTimeZone::getTransitions()
|
||||||
*/
|
*/
|
||||||
protected $transitions = [];
|
protected $transitions = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int|null Timestamp of the start of the transitions range
|
* @var int|null Timestamp of the start of the transitions range
|
||||||
@ -92,7 +92,7 @@ class HoursField extends AbstractField
|
|||||||
$dtLimitStart->getTimestamp(),
|
$dtLimitStart->getTimestamp(),
|
||||||
$dtLimitEnd->getTimestamp()
|
$dtLimitEnd->getTimestamp()
|
||||||
);
|
);
|
||||||
if (empty($this->transitions)) {
|
if ($this->transitions === false) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
$this->transitionsStart = $dtLimitStart->getTimestamp();
|
$this->transitionsStart = $dtLimitStart->getTimestamp();
|
||||||
|
|||||||
16
niucloud/vendor/fastknife/ajcaptcha/.gitignore
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
.env
|
||||||
|
.git
|
||||||
|
.svn
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
.htaccess
|
||||||
|
*.log
|
||||||
|
nginx.htaccess
|
||||||
|
vendor/*
|
||||||
|
runtime/*
|
||||||
|
composer.lock
|
||||||
|
test/html
|
||||||
|
test/nginx.htaccess
|
||||||
|
test/.htaccess
|
||||||
|
test/runtime
|
||||||
|
|
||||||
674
niucloud/vendor/fastknife/ajcaptcha/LICENSE
vendored
Normal file
@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||||
26
niucloud/vendor/fastknife/ajcaptcha/changelog.md
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# aj-captcha迭代文档
|
||||||
|
## v1.1.2 2021-12-15
|
||||||
|
* server 增加`verificationByEncryptCode` 方法,兼容前端二次验证`captchaVerification`值
|
||||||
|
|
||||||
|
## v1.1.1 2021-12-13
|
||||||
|
* 去除多余代码、注释
|
||||||
|
|
||||||
|
## v1.1.0 2021-12-9
|
||||||
|
* 重构工厂类与领域层
|
||||||
|
* 永久缓存图片像素值,增加响应性能
|
||||||
|
|
||||||
|
## v1.0.7 2021-11-24
|
||||||
|
* 增强缓存冗错
|
||||||
|
* 自定义缓存配置
|
||||||
|
|
||||||
|
## v1.0.3 2021-10-11
|
||||||
|
* 新增二次验证
|
||||||
|
|
||||||
|
|
||||||
|
## v1.0.0 2021-7-16
|
||||||
|
* 初步实现滑动验证码与文字点选验证码
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
26
niucloud/vendor/fastknife/ajcaptcha/composer.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "fastknife/ajcaptcha",
|
||||||
|
"description": "This is a behavior verification code PHP back-end implementation package",
|
||||||
|
"type": "library",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "bruce",
|
||||||
|
"email": "2777314125@qq.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"php": ">=7.1",
|
||||||
|
"ext-gd": "*",
|
||||||
|
"ext-openssl": "*",
|
||||||
|
"intervention/image": "^2.5",
|
||||||
|
"ext-iconv": "*",
|
||||||
|
"ext-json": "*"
|
||||||
|
},
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"license": "GPL-3.0-only",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Fastknife\\": "src"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
239
niucloud/vendor/fastknife/ajcaptcha/demo.md
vendored
Normal file
@ -0,0 +1,239 @@
|
|||||||
|
### 范例
|
||||||
|
|
||||||
|
详情请查看test目录的PHP源码
|
||||||
|
|
||||||
|
#### 配置说明
|
||||||
|
|
||||||
|
```php
|
||||||
|
return [
|
||||||
|
'font_file' => '', //自定义字体包路径, 不填使用默认值
|
||||||
|
//文字验证码
|
||||||
|
'click_world' => [
|
||||||
|
'backgrounds' => []
|
||||||
|
],
|
||||||
|
//滑动验证码
|
||||||
|
'block_puzzle' => [
|
||||||
|
'backgrounds' => [], //背景图片路径, 不填使用默认值
|
||||||
|
'templates' => [], //模板图
|
||||||
|
|
||||||
|
'offset' => 10, //容错偏移量
|
||||||
|
|
||||||
|
'is_cache_pixel' => true, //是否开启缓存图片像素值,开启后能提升服务端响应性能(但要注意更换图片时,需要清除缓存)
|
||||||
|
],
|
||||||
|
//水印
|
||||||
|
'watermark' => [
|
||||||
|
'fontsize' => 12,
|
||||||
|
'color' => '#ffffff',
|
||||||
|
'text' => '我的水印'
|
||||||
|
],
|
||||||
|
'cache' => [
|
||||||
|
'constructor' => \Fastknife\Utils\CacheUtils::class,//若您使用了框架,并且想使用类似于redis这样的缓存驱动,则应换成框架的中的缓存驱动
|
||||||
|
'method' => [
|
||||||
|
// 遵守PSR-16规范不需要设置此项(tp6, laravel,hyperf)。如tp5就不支持(tp5缓存方法是rm,所以要配置为"delete" => "rm"),
|
||||||
|
'get' => 'get', //获取
|
||||||
|
'set' => 'set', //设置
|
||||||
|
'delete' => 'delete',//删除
|
||||||
|
'has' => 'has' //key是否存在
|
||||||
|
],
|
||||||
|
'options' => [
|
||||||
|
//如果您依然使用\Fastknife\Utils\CacheUtils做为您的缓存驱动,那么您可以自定义缓存配置。
|
||||||
|
'expire' => 300,//缓存有效期 (默认为0 表示永久缓存)
|
||||||
|
'prefix' => '', //缓存前缀
|
||||||
|
'path' => '', //缓存目录
|
||||||
|
'serialize' => [], //缓存序列化和反序列化方法
|
||||||
|
]
|
||||||
|
]
|
||||||
|
];
|
||||||
|
```
|
||||||
|
##### 缓存配置
|
||||||
|
|
||||||
|
> config.cache.constructor类型为string|array|function 使用以访问回调的方式获得缓存实例;
|
||||||
|
|
||||||
|
+ laravel 配置:
|
||||||
|
|
||||||
|
```
|
||||||
|
'constructor' => [Illuminate\Support\Facades\Cache::class, 'store']
|
||||||
|
```
|
||||||
|
|
||||||
|
+ tp6(tp5.1) 配置
|
||||||
|
|
||||||
|
```php
|
||||||
|
'constructor' => [think\Facade\Cache::class, 'instance']
|
||||||
|
```
|
||||||
|
|
||||||
|
> 无论配置写成`[think\Facade\Cache::class, 'instance']` 还是写成 `[think\Facade\Cache::class, 'store']` 目的都是为了获取缓存实例,具体情况视框架而定
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
+ 灵活自定义:
|
||||||
|
1. 如果您的需要使用类似以下命令打包配置文件(ThinkPHP,Laravel 命令)
|
||||||
|
- php think optimize:config
|
||||||
|
- php artisan optimize
|
||||||
|
则需要写成下面这样:
|
||||||
|
```php
|
||||||
|
$instance = \think\facade\Cache::store();//获取缓存想实例
|
||||||
|
//省略分部代码
|
||||||
|
'constructor' => serialize($instance);
|
||||||
|
```
|
||||||
|
|
||||||
|
因为在执行optimize打包命令时,会尝试将对象进行序列化。
|
||||||
|
|
||||||
|
2. 如果您不需要使用打包压缩命令,或者使用了像hyperf这样的框架,除了上述的写法,还可以写成这样:
|
||||||
|
|
||||||
|
```php
|
||||||
|
'constructor' => function () {
|
||||||
|
$container = \Hyperf\Utils\ApplicationContext::getContainer();
|
||||||
|
//在构造函数中传入自已的配置
|
||||||
|
return $container->get(\Psr\SimpleCache\CacheInterface::class);
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
除此之处,您传入的缓存实例应遵守psr-16规范
|
||||||
|
|
||||||
|
##### 背景图与滑动图
|
||||||
|
> 配置中的backgrounds与templates项均支持,Array, String两种格式
|
||||||
|
+ 使用Array(索引数组)格式时,表明它每一项都是一张图片。可以是本地图片路径,也可以是网络图片路径。
|
||||||
|
示例:
|
||||||
|
```php
|
||||||
|
'backgrounds' => [
|
||||||
|
'/public/images/xxx.jpg',
|
||||||
|
'http://www.image.xx.jpg'
|
||||||
|
]
|
||||||
|
```
|
||||||
|
+ 使用String格式时,表明它是一个图片所在位置的目录
|
||||||
|
示例:
|
||||||
|
```php
|
||||||
|
'backgrounds' => ROOT_PATH . '/resources/defaultImages/jigsaw/original/'
|
||||||
|
```
|
||||||
|
当配置中的backgrounds与templates项为空时,会将`/resources/defaultImages/`目录内所有图片做为默认图片。
|
||||||
|
|
||||||
|
下面是社区人员一起维护的图片库,这些图片可以与本程序无缝衔接。
|
||||||
|
https://gitee.com/anji-plus/AJ-Captcha-Images
|
||||||
|
|
||||||
|
##### 字体配置
|
||||||
|
字体配置在水印与文字点击验证功能中使用,其配置格式化String, 指向字体库。为空时会以`/resources/fonts`下的字体文件为默认值。
|
||||||
|
示例:
|
||||||
|
```php
|
||||||
|
'font_file' => ROOT_PATH . '/resources/fonts/WenQuanZhengHei.ttf'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 获取滑动验证码
|
||||||
|
|
||||||
|
```php
|
||||||
|
public function get(){
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new BlockPuzzleCaptchaService($config);
|
||||||
|
$data = $service->get();
|
||||||
|
echo json_encode([
|
||||||
|
'error' => false,
|
||||||
|
'repCode' => '0000',
|
||||||
|
'repData' => $data,
|
||||||
|
'repMsg' => null,
|
||||||
|
'success' => true,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 滑动验证
|
||||||
|
|
||||||
|
```php
|
||||||
|
public function check()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new BlockPuzzleCaptchaService($config);
|
||||||
|
$data = $_REQUEST;
|
||||||
|
$msg = null;
|
||||||
|
$error = false;
|
||||||
|
$repCode = '0000';
|
||||||
|
try {
|
||||||
|
$service->check($data['token'], $data['pointJson']);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$msg = $e->getMessage();
|
||||||
|
$error = true;
|
||||||
|
$repCode = '6111';
|
||||||
|
}
|
||||||
|
echo json_encode([
|
||||||
|
'error' => $error,
|
||||||
|
'repCode' => $repCode,
|
||||||
|
'repData' => null,
|
||||||
|
'repMsg' => $msg,
|
||||||
|
'success' => ! $error,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 获取文字验证码
|
||||||
|
|
||||||
|
```php
|
||||||
|
public function get()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new ClickWordCaptchaService($config);
|
||||||
|
$data = $service->get();
|
||||||
|
echo json_encode([
|
||||||
|
'error' => false,
|
||||||
|
'repCode' => '0000',
|
||||||
|
'repData' => $data,
|
||||||
|
'repMsg' => null,
|
||||||
|
'success' => true,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 文字验证
|
||||||
|
|
||||||
|
```php
|
||||||
|
public function check()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new ClickWordCaptchaService($config);
|
||||||
|
$data = $_REQUEST;
|
||||||
|
$msg = null;
|
||||||
|
$error = false;
|
||||||
|
$repCode = '0000';
|
||||||
|
try {
|
||||||
|
$service->check($data['token'], $data['pointJson']);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$msg = $e->getMessage();
|
||||||
|
$error = true;
|
||||||
|
$repCode = '6111';
|
||||||
|
}
|
||||||
|
echo json_encode([
|
||||||
|
'error' => $error,
|
||||||
|
'repCode' => $repCode,
|
||||||
|
'repData' => null,
|
||||||
|
'repMsg' => $msg,
|
||||||
|
'success' => ! $error,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 前端请求头修改示例
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
import axios from 'axios';
|
||||||
|
import qs from 'qs';
|
||||||
|
|
||||||
|
axios.defaults.baseURL = 'https://captcha.anji-plus.com/captcha-api';
|
||||||
|
|
||||||
|
const service = axios.create({
|
||||||
|
timeout: 40000,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
|
||||||
|
},
|
||||||
|
})
|
||||||
|
service.interceptors.request.use(
|
||||||
|
config => {
|
||||||
|
if (config.hasOwnProperty('data')) {
|
||||||
|
config.data = qs.stringify(config.data)
|
||||||
|
}
|
||||||
|
return config
|
||||||
|
},
|
||||||
|
error => {
|
||||||
|
Promise.reject(error)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
本包后续更新 ThinkPHP、Hyperf 等框架的demo,请持续关注
|
||||||
|
https://gitee.com/fastknife/aj-captcha
|
||||||
69
niucloud/vendor/fastknife/ajcaptcha/readme.md
vendored
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
AJ-Captcha · php
|
||||||
|
----
|
||||||
|
|
||||||
|
#### 介绍
|
||||||
|
|
||||||
|
这个类库使用 PHP实现了行为验证码。基于gd扩展生成滑动验证码和文字验证码。允许 phper定制验证码规则,并且不再使用 curl来请求第三方验证。
|
||||||
|
|
||||||
|
Java实现: https://gitee.com/anji-plus/captcha
|
||||||
|
|
||||||
|
PHP实现: https://gitee.com/fastknife/aj-captcha
|
||||||
|
|
||||||
|
##### 官方预览效果
|
||||||
|
|
||||||
|
   
|
||||||
|
|
||||||
|
#### 注意事项
|
||||||
|
* 你需要打开 gd、 openssl扩展
|
||||||
|
* PHP版本至少需要7.1
|
||||||
|
* 此软件包自带缓存,如有需要请自行更换
|
||||||
|
* anji-plus/captcha前端默认请求头是 application/json 需替换为 application/x-www-form-urlencode
|
||||||
|
|
||||||
|
* 滑动验证图响应时间慢?
|
||||||
|
> 性能慢的主要原因是受php GD库的imagecolorat函数与imagesetpixel函数性能的影响
|
||||||
|
1. 您可以尝试将修改内存`ini_set('memory_limit', '256M')`
|
||||||
|
2. 将本包升级到1.1.x版本,开启像素缓存`block_puzzle.is_cache_pixel = true`, 若还是性能还是慢,则将干扰图片关闭`block_puzzle.is_interfere => false`
|
||||||
|
#### 如何使用
|
||||||
|
test 目录下示例了三种使用方式,phper可以参考使用。[查看demo](./demo.md)
|
||||||
|
> 本软件包需要配合composer一起使用
|
||||||
|
1. 非框架使用的场景,直接使用git下载这个软件包。然后执行composer命令`composer install`安装本软件包依赖,接着手动引入对应的 service层文件即可(同test目录里的原生引用方式)。
|
||||||
|
|
||||||
|
2. 基于框架使用的场景,输入安装命令`composer require fastknife/ajcaptcha`(稳定版) 或者`composer require fastknife/ajcaptcha dev-master`(最新版) ,建议使用composer阿里源(`https://mirrors.aliyun.com/composer`)
|
||||||
|
* 支持各种前沿框架(ThinkPHP, YII, Laravel, Hyperf,IMI,Swoft,EasySwoole)
|
||||||
|
* 本软件包内,未使用单例、注册树(容器)模式,不含任何全局变量,基于swoole开发的同学不用担心内存泄露。
|
||||||
|
|
||||||
|
#### 项目结构
|
||||||
|
> 本软件包基于整洁架构理念,设计了下文的目录结构。Domain(领域层)作为内层同心圆承担所有业务逻辑功能,Service(服务层)并向最外层Controller(需自行实现)提供粗颗粒度服务。
|
||||||
|
区别于DDD(领域驱动设计),本软件包的领域层不含Entity(实体),以Logic(逻辑层)实现单元逻辑,为了方便管理作者将逻辑层的数据处理与图形处理分隔,以达到整洁效果。
|
||||||
|
```
|
||||||
|
AJ-Captcha for php
|
||||||
|
│
|
||||||
|
├─resources 资源
|
||||||
|
│ │
|
||||||
|
│ ├─defaultImages 图片资源
|
||||||
|
│ │
|
||||||
|
│ └─fonts 字体
|
||||||
|
│
|
||||||
|
├─src 源码
|
||||||
|
│ │
|
||||||
|
│ ├─Domian 领域层
|
||||||
|
│ │
|
||||||
|
│ ├─Exception 异常
|
||||||
|
│ │
|
||||||
|
│ ├─Service 服务层
|
||||||
|
│ │
|
||||||
|
│ ├─ Utils工具类
|
||||||
|
│ │
|
||||||
|
│ └─ config.php 配置参考
|
||||||
|
└─test 测试实例
|
||||||
|
│
|
||||||
|
├─thinkphp thinkphp框架测试示例
|
||||||
|
│
|
||||||
|
├─laravel laravel框架测试示例
|
||||||
|
│
|
||||||
|
└─*.php 原生测试文件 配置文件
|
||||||
|
```
|
||||||
|
|
||||||
|
#### [更新日志](./changelog.md)
|
||||||
|
|
||||||
|
若此软件对您有所帮助,您可以点右上角 💘Star💘支持
|
||||||
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/1.png
vendored
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/2.png
vendored
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/3.png
vendored
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/4.png
vendored
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/5.png
vendored
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/6.png
vendored
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/bg8.png
vendored
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/1.png
vendored
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/2.png
vendored
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/3.png
vendored
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/4.png
vendored
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/5.png
vendored
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/6.png
vendored
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/1.png
vendored
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/2.png
vendored
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/3.png
vendored
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/4.png
vendored
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/5.png
vendored
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/6.png
vendored
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg10.png
vendored
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg11.png
vendored
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg12.png
vendored
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg13.png
vendored
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg14.png
vendored
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg15.png
vendored
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg16.png
vendored
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg17.png
vendored
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg18.png
vendored
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg19.png
vendored
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
BIN
niucloud/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg20.png
vendored
Normal file
|
After Width: | Height: | Size: 58 KiB |
55
niucloud/vendor/fastknife/ajcaptcha/resources/fonts/license.txt
vendored
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
文泉驿是一个开源汉字字体项目
|
||||||
|
|
||||||
|
由旅美学者房骞骞(FangQ)
|
||||||
|
|
||||||
|
于2004年10月创建
|
||||||
|
|
||||||
|
集中力量解决GNU/Linux
|
||||||
|
|
||||||
|
高质量中文字体匮乏的状况
|
||||||
|
|
||||||
|
目前,文泉驿已经开发并发布了
|
||||||
|
|
||||||
|
第一个完整覆盖GB18030汉字
|
||||||
|
|
||||||
|
(包含27000多个汉字)
|
||||||
|
|
||||||
|
的多规格点阵汉字字型文件
|
||||||
|
|
||||||
|
第一个覆盖GBK字符集的
|
||||||
|
|
||||||
|
开源矢量字型文件(文泉驿正黑)
|
||||||
|
|
||||||
|
并提供了目前包含字符数目最多的
|
||||||
|
|
||||||
|
开源字体——GNU Unifont——中
|
||||||
|
|
||||||
|
绝大多数中日韩文相关的符号
|
||||||
|
|
||||||
|
这些字型文件已经逐渐成为
|
||||||
|
|
||||||
|
主流Linux/Unix发行版
|
||||||
|
|
||||||
|
中文桌面的首选中文字体
|
||||||
|
|
||||||
|
目前Ubuntu、Fedora、Slackware
|
||||||
|
|
||||||
|
Magic Linux、CDLinux
|
||||||
|
|
||||||
|
使用文泉驿作为默认中文字体
|
||||||
|
|
||||||
|
Debian、Gentoo、Mandriva
|
||||||
|
|
||||||
|
ArchLinux、Frugalware
|
||||||
|
|
||||||
|
则提供了官方源支持
|
||||||
|
|
||||||
|
而FreeBSD则在其ports中有提供
|
||||||
|
|
||||||
|
所以,今天我们所要分享的就是
|
||||||
|
|
||||||
|
文泉驿正黑体
|
||||||
|
|
||||||
|
可在Linux/UNIX,Windows
|
||||||
|
|
||||||
|
Mac OS和嵌入式操作系统中使用
|
||||||
179
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Factory.php
vendored
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain;
|
||||||
|
|
||||||
|
use Fastknife\Domain\Logic\BaseData;
|
||||||
|
use Fastknife\Domain\Logic\BaseImage;
|
||||||
|
use Fastknife\Domain\Logic\BlockImage;
|
||||||
|
use Fastknife\Domain\Logic\Cache;
|
||||||
|
use Fastknife\Domain\Logic\WordImage;
|
||||||
|
use Fastknife\Domain\Logic\BlockData;
|
||||||
|
use Fastknife\Domain\Logic\WordData;
|
||||||
|
use Fastknife\Domain\Vo\ImageVo;
|
||||||
|
use Intervention\Image\ImageManagerStatic;
|
||||||
|
|
||||||
|
class Factory
|
||||||
|
{
|
||||||
|
protected $config;
|
||||||
|
|
||||||
|
protected $cacheInstance;
|
||||||
|
|
||||||
|
public function __construct(array $config)
|
||||||
|
{
|
||||||
|
$this->config = $config;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return BlockImage
|
||||||
|
*/
|
||||||
|
public function makeBlockImage(): BlockImage
|
||||||
|
{
|
||||||
|
$data = new BlockData();
|
||||||
|
$image = new BlockImage();
|
||||||
|
$this->setCommon($image, $data);
|
||||||
|
$this->setBlock($image, $data);
|
||||||
|
return $image;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return WordImage
|
||||||
|
*/
|
||||||
|
public function makeWordImage(): WordImage
|
||||||
|
{
|
||||||
|
$data = new WordData();
|
||||||
|
$image = new WordImage();
|
||||||
|
$this->setCommon($image, $data);
|
||||||
|
$this->setWord($image, $data);
|
||||||
|
return $image;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置公共配置
|
||||||
|
* @param BaseImage $image
|
||||||
|
* @param BaseData $data
|
||||||
|
*/
|
||||||
|
protected function setCommon(BaseImage $image, BaseData $data)
|
||||||
|
{
|
||||||
|
//固定驱动,少量图片处理场景gd性能远远大于imagick
|
||||||
|
ImageManagerStatic::configure(['driver' => 'gd']);
|
||||||
|
|
||||||
|
//获得字体数据
|
||||||
|
$fontFile = $data->getFontFile($this->config['font_file']);
|
||||||
|
$image
|
||||||
|
->setFontFile($fontFile)
|
||||||
|
->setWatermark($this->config['watermark']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置滑动验证码的配置
|
||||||
|
* @param BlockImage $image
|
||||||
|
* @param BlockData $data
|
||||||
|
*/
|
||||||
|
protected function setBlock(BlockImage $image, BlockData $data)
|
||||||
|
{
|
||||||
|
//设置背景
|
||||||
|
$backgroundVo = $data->getBackgroundVo($this->config['block_puzzle']['backgrounds']);
|
||||||
|
$image->setBackgroundVo($backgroundVo);
|
||||||
|
|
||||||
|
$templateVo = $data->getTemplateVo($backgroundVo, $this->config['block_puzzle']['templates']);
|
||||||
|
|
||||||
|
$image->setTemplateVo($templateVo);
|
||||||
|
|
||||||
|
$pixelMaps = [$backgroundVo, $templateVo];
|
||||||
|
if (
|
||||||
|
isset($this->config['block_puzzle']['is_interfere']) &&
|
||||||
|
$this->config['block_puzzle']['is_interfere'] == true
|
||||||
|
) {
|
||||||
|
$interfereVo = $data->getInterfereVo($backgroundVo, $templateVo, $this->config['block_puzzle']['templates']);
|
||||||
|
$image->setInterfereVo($interfereVo);
|
||||||
|
$pixelMaps[] = $interfereVo;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
isset($this->config['block_puzzle']['is_cache_pixel']) &&
|
||||||
|
$this->config['block_puzzle']['is_cache_pixel'] === true
|
||||||
|
) {
|
||||||
|
$cache = $this->getCacheInstance();
|
||||||
|
foreach ($pixelMaps as $vo) {
|
||||||
|
/**@var ImageVo $vo * */
|
||||||
|
$key = 'image_pixel_map_' . $vo->src;
|
||||||
|
$result = $cache->get($key);
|
||||||
|
if (!empty($result) && is_array($result)) {
|
||||||
|
$vo->setPickMaps($result);
|
||||||
|
} else {
|
||||||
|
$vo->preparePickMaps();
|
||||||
|
$vo->setFinishCallback(function (ImageVo $imageVo) use ($cache, $key) {
|
||||||
|
$cache->set($key, $imageVo->getPickMaps(), 0);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置文字验证码的配置
|
||||||
|
* @param WordImage $image
|
||||||
|
* @param WordData $data
|
||||||
|
*/
|
||||||
|
protected function setWord(WordImage $image, WordData $data)
|
||||||
|
{
|
||||||
|
//设置背景
|
||||||
|
$backgroundVo = $data->getBackgroundVo($this->config['click_world']['backgrounds']);
|
||||||
|
$image->setBackgroundVo($backgroundVo);
|
||||||
|
|
||||||
|
$wordNum = $this->config['click_world']['word_num'] ?? 3;
|
||||||
|
if($wordNum > 5){
|
||||||
|
// 最多只能写5个字
|
||||||
|
$wordNum = 5;
|
||||||
|
}
|
||||||
|
if($wordNum < 2){
|
||||||
|
// 最少要写2个字
|
||||||
|
$wordNum = 2;
|
||||||
|
}
|
||||||
|
//随机文字坐标
|
||||||
|
$pointList = $data->getPointList(
|
||||||
|
$image->getBackgroundVo()->image->getWidth(),
|
||||||
|
$image->getBackgroundVo()->image->getHeight(),
|
||||||
|
$wordNum
|
||||||
|
);
|
||||||
|
$worldList = $data->getWordList(count($pointList));
|
||||||
|
$image
|
||||||
|
->setWordList($worldList)
|
||||||
|
->setWordList($worldList)
|
||||||
|
->setPoint($pointList);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建缓存实体
|
||||||
|
*/
|
||||||
|
public function getCacheInstance(): Cache
|
||||||
|
{
|
||||||
|
if (empty($this->cacheInstance)) {
|
||||||
|
$this->cacheInstance = new Cache($this->config['cache']);
|
||||||
|
}
|
||||||
|
return $this->cacheInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function makeWordData(): WordData
|
||||||
|
{
|
||||||
|
return new WordData();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function makeBlockData(): BlockData
|
||||||
|
{
|
||||||
|
return (new BlockData())->setFaultOffset($this->config['block_puzzle']['offset']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getConfig(): array
|
||||||
|
{
|
||||||
|
return $this->config;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
73
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/BaseData.php
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\BackgroundVo;
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
use Intervention\Image\ImageManagerStatic;
|
||||||
|
|
||||||
|
class BaseData
|
||||||
|
{
|
||||||
|
public const FONTSIZE = 25;
|
||||||
|
|
||||||
|
protected $defaultBackgroundPath;
|
||||||
|
|
||||||
|
protected $defaultFontPath = '/resources/fonts/WenQuanZhengHei.ttf';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取字体包文件
|
||||||
|
* @param string $file
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getFontFile(string $file = ''): string
|
||||||
|
{
|
||||||
|
return $file && is_file($file) ?
|
||||||
|
$file :
|
||||||
|
dirname(__DIR__, 3) . $this->defaultFontPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获得随机图片
|
||||||
|
* @param $images
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
protected function getRandImage($images): string
|
||||||
|
{
|
||||||
|
$index = RandomUtils::getRandomInt(0, count($images) - 1);
|
||||||
|
return $images[$index];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取默认图片
|
||||||
|
* @param $dir
|
||||||
|
* @param array|string $images
|
||||||
|
* @return array|false
|
||||||
|
*/
|
||||||
|
protected function getDefaultImage($dir, $images)
|
||||||
|
{
|
||||||
|
if (!empty($images)) {
|
||||||
|
if (is_array($images)) {
|
||||||
|
return $images;
|
||||||
|
}
|
||||||
|
if (is_string($images)) {
|
||||||
|
$dir = $images;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return glob($dir . '*.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取一张背景图地址
|
||||||
|
* @param null $backgrounds 背景图库
|
||||||
|
* @return BackgroundVo
|
||||||
|
*/
|
||||||
|
public function getBackgroundVo($backgrounds = null): BackgroundVo
|
||||||
|
{
|
||||||
|
$dir = dirname(__DIR__, 3). $this->defaultBackgroundPath;
|
||||||
|
$backgrounds = $this->getDefaultImage($dir, $backgrounds);
|
||||||
|
$src = $this->getRandImage($backgrounds);
|
||||||
|
return new BackgroundVo($src);
|
||||||
|
}
|
||||||
|
}
|
||||||
106
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/BaseImage.php
vendored
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\BackgroundVo;
|
||||||
|
use Intervention\Image\AbstractFont as Font;
|
||||||
|
use Intervention\Image\Image;
|
||||||
|
|
||||||
|
abstract class BaseImage
|
||||||
|
{
|
||||||
|
protected $watermark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var BackgroundVo
|
||||||
|
*/
|
||||||
|
protected $backgroundVo;
|
||||||
|
|
||||||
|
protected $fontFile;
|
||||||
|
protected $point;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function getPoint()
|
||||||
|
{
|
||||||
|
return $this->point;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $point
|
||||||
|
* @return WordImage
|
||||||
|
*/
|
||||||
|
public function setPoint($point):self
|
||||||
|
{
|
||||||
|
$this->point = $point;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected function makeWatermark(Image $image)
|
||||||
|
{
|
||||||
|
if (! empty($this->watermark)) {
|
||||||
|
$info = imagettfbbox($this->watermark['fontsize'], 0, $this->fontFile, $this->watermark['text']);
|
||||||
|
$minX = min($info[0], $info[2], $info[4], $info[6]);
|
||||||
|
$minY = min($info[1], $info[3], $info[5], $info[7]);
|
||||||
|
$maxY = max($info[1], $info[3], $info[5], $info[7]);
|
||||||
|
$x = $minX;
|
||||||
|
$y = abs($minY);
|
||||||
|
/* 计算文字初始坐标和尺寸 */
|
||||||
|
$h = $maxY - $minY;
|
||||||
|
$x += $image->getWidth() - $this->watermark['fontsize']/2; //留出半个单位字体像素的余白,不至于水印紧贴着右边
|
||||||
|
$y += $image->getHeight() - $h;
|
||||||
|
$image->text($this->watermark['text'], $x, $y, function (Font $font) {
|
||||||
|
$font->file($this->fontFile);
|
||||||
|
$font->size($this->watermark['fontsize']);
|
||||||
|
$font->color($this->watermark['color']);
|
||||||
|
$font->align('right');
|
||||||
|
$font->valign('bottom');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $watermark
|
||||||
|
* @return self
|
||||||
|
*/
|
||||||
|
public function setWatermark($watermark): self
|
||||||
|
{
|
||||||
|
$this->watermark = $watermark;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param BackgroundVo $backgroundVo
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function setBackgroundVo(BackgroundVo $backgroundVo):self
|
||||||
|
{
|
||||||
|
$this->backgroundVo = $backgroundVo;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return BackgroundVo
|
||||||
|
*/
|
||||||
|
public function getBackgroundVo(): BackgroundVo
|
||||||
|
{
|
||||||
|
return $this->backgroundVo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $file
|
||||||
|
* @return static
|
||||||
|
*/
|
||||||
|
public function setFontFile($file): self
|
||||||
|
{
|
||||||
|
$this->fontFile = $file;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract function run();
|
||||||
|
}
|
||||||
134
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/BlockData.php
vendored
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\BackgroundVo;
|
||||||
|
use Fastknife\Domain\Vo\OffsetVo;
|
||||||
|
use Fastknife\Domain\Vo\TemplateVo;
|
||||||
|
use Fastknife\Exception\BlockException;
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
|
||||||
|
class BlockData extends BaseData
|
||||||
|
{
|
||||||
|
|
||||||
|
protected $defaultBackgroundPath = '/resources/defaultImages/jigsaw/original/';
|
||||||
|
|
||||||
|
protected $faultOffset;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function getFaultOffset()
|
||||||
|
{
|
||||||
|
return $this->faultOffset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $faultOffset
|
||||||
|
*/
|
||||||
|
public function setFaultOffset($faultOffset): self
|
||||||
|
{
|
||||||
|
$this->faultOffset = $faultOffset;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取剪切模板Vo
|
||||||
|
* @param BackgroundVo $backgroundVo
|
||||||
|
* @param array | string $templates
|
||||||
|
* @return TemplateVo
|
||||||
|
*/
|
||||||
|
public function getTemplateVo(BackgroundVo $backgroundVo, $templates = []): TemplateVo
|
||||||
|
{
|
||||||
|
$background = $backgroundVo->image;
|
||||||
|
//初始偏移量,让模板图在背景的右1/2位置
|
||||||
|
$bgWidth = intval($background->getWidth() / 2);
|
||||||
|
//随机获取一张图片
|
||||||
|
$src = $this->getRandImage($this->getTemplateImages($templates));
|
||||||
|
|
||||||
|
$templateVo = new TemplateVo($src);
|
||||||
|
|
||||||
|
//随机获取偏移量
|
||||||
|
$offset = RandomUtils::getRandomInt(0, $bgWidth - $templateVo->image->getWidth() - 1);
|
||||||
|
|
||||||
|
$templateVo->setOffset(new OffsetVo($offset + $bgWidth, 0));
|
||||||
|
return $templateVo;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public function getInterfereVo(BackgroundVo $backgroundVo, TemplateVo $templateVo, $templates = []): TemplateVo
|
||||||
|
{
|
||||||
|
//背景
|
||||||
|
$background = $backgroundVo->image;
|
||||||
|
//模板库去重
|
||||||
|
$templates = $this->exclude($this->getTemplateImages($templates), $templateVo->src);
|
||||||
|
|
||||||
|
//随机获取一张模板图
|
||||||
|
$src = $this->getRandImage($templates);
|
||||||
|
|
||||||
|
$interfereVo = new TemplateVo($src);
|
||||||
|
|
||||||
|
$maxOffsetX = intval($templateVo->image->getWidth()/2);
|
||||||
|
do {
|
||||||
|
//随机获取偏移量
|
||||||
|
$offsetX = RandomUtils::getRandomInt(0, $background->getWidth() - $templateVo->image->getWidth() - 1);
|
||||||
|
|
||||||
|
//不与原模板重复
|
||||||
|
if (
|
||||||
|
abs($templateVo->offset->x - $offsetX) > $maxOffsetX
|
||||||
|
) {
|
||||||
|
$offsetVO = new OffsetVo($offsetX, 0);
|
||||||
|
$interfereVo->setOffset($offsetVO);
|
||||||
|
return $interfereVo;
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array|string $templates
|
||||||
|
* @return array|false
|
||||||
|
*/
|
||||||
|
protected function getTemplateImages($templates = [])
|
||||||
|
{
|
||||||
|
$dir = dirname(__DIR__, 3) . '/resources/defaultImages/jigsaw/slidingBlock/';
|
||||||
|
return $this->getDefaultImage($dir, $templates);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 排除
|
||||||
|
* @param $templates
|
||||||
|
* @param $exclude
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function exclude($templates, $exclude): array
|
||||||
|
{
|
||||||
|
if (false !== ($key = array_search($exclude, $templates))) {
|
||||||
|
array_splice($templates,$key,1);
|
||||||
|
}
|
||||||
|
return $templates;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $originPoint
|
||||||
|
* @param $targetPoint
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function check($originPoint, $targetPoint)
|
||||||
|
{
|
||||||
|
if (
|
||||||
|
abs($originPoint->x - $targetPoint->x) <= $this->faultOffset
|
||||||
|
&& $originPoint->y == $targetPoint->y
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
throw new BlockException('验证失败!');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
141
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/BlockImage.php
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\BackgroundVo;
|
||||||
|
use Fastknife\Domain\Vo\ImageVo;
|
||||||
|
use Fastknife\Domain\Vo\PointVo;
|
||||||
|
use Fastknife\Domain\Vo\TemplateVo;
|
||||||
|
|
||||||
|
class BlockImage extends BaseImage
|
||||||
|
{
|
||||||
|
const WHITE = [255, 255, 255, 1];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var TemplateVo
|
||||||
|
*/
|
||||||
|
protected $templateVo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var TemplateVo
|
||||||
|
*/
|
||||||
|
protected $interfereVo;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return TemplateVo
|
||||||
|
*/
|
||||||
|
public function getTemplateVo(): TemplateVo
|
||||||
|
{
|
||||||
|
return $this->templateVo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param TemplateVo $templateVo
|
||||||
|
* @return self
|
||||||
|
*/
|
||||||
|
public function setTemplateVo(TemplateVo $templateVo): self
|
||||||
|
{
|
||||||
|
$this->templateVo = $templateVo;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return TemplateVo
|
||||||
|
*/
|
||||||
|
public function getInterfereVo(): TemplateVo
|
||||||
|
{
|
||||||
|
return $this->interfereVo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param TemplateVo $interfereVo
|
||||||
|
* @return static
|
||||||
|
*/
|
||||||
|
public function setInterfereVo(TemplateVo $interfereVo): self
|
||||||
|
{
|
||||||
|
|
||||||
|
$this->interfereVo = $interfereVo;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function run()
|
||||||
|
{
|
||||||
|
$flag = false;
|
||||||
|
$this->cutByTemplate($this->templateVo, $this->backgroundVo, function ($param) use (&$flag) {
|
||||||
|
if (!$flag) {
|
||||||
|
//记录第一个点
|
||||||
|
$this->setPoint(new PointVo($param[0], 5));//前端已将y值写死
|
||||||
|
$flag = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (!empty($this->interfereVo)) {
|
||||||
|
$this->cutByTemplate($this->interfereVo, $this->backgroundVo);
|
||||||
|
}
|
||||||
|
$this->makeWatermark($this->backgroundVo->image);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function cutByTemplate(TemplateVo $templateVo, BackgroundVo $backgroundVo, $callable = null)
|
||||||
|
{
|
||||||
|
$template = $templateVo->image;
|
||||||
|
$width = $template->getWidth();
|
||||||
|
$height = $template->getHeight();
|
||||||
|
for ($x = 0; $x < $width; $x++) {
|
||||||
|
for ($y = 0; $y < $height; $y++) {
|
||||||
|
//背景图对应的坐标
|
||||||
|
$bgX = $x + $templateVo->offset->x;
|
||||||
|
$bgY = $y + $templateVo->offset->y;
|
||||||
|
//是否不透明
|
||||||
|
$isOpacity = $templateVo->isOpacity($x, $y);
|
||||||
|
if ($isOpacity) { //如果不透明
|
||||||
|
if ($callable instanceof \Closure) {
|
||||||
|
$callable([$bgX, $bgY]);
|
||||||
|
}
|
||||||
|
$backgroundVo->vagueImage($bgX, $bgY);//模糊背景图选区
|
||||||
|
|
||||||
|
$this->copyPickColor($backgroundVo, $bgX, $bgY, $templateVo, $x, $y);
|
||||||
|
}
|
||||||
|
if ($templateVo->isBoundary($isOpacity, $x, $y)) {
|
||||||
|
$backgroundVo->setPixel(self::WHITE, $bgX, $bgY);
|
||||||
|
$templateVo->setPixel(self::WHITE, $x, $y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 把$source的颜色复制到$target上
|
||||||
|
* @param ImageVo $source
|
||||||
|
* @param ImageVo $target
|
||||||
|
*/
|
||||||
|
|
||||||
|
protected function copyPickColor(ImageVo $source, $sourceX, $sourceY, ImageVo $target, $targetX, $targetY)
|
||||||
|
{
|
||||||
|
$bgRgba = $source->getPickColor($sourceX, $sourceY);
|
||||||
|
$target->setPixel($bgRgba, $targetX, $targetY);//复制背景图片给模板
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回前端需要的格式
|
||||||
|
* @return false|string[]
|
||||||
|
*/
|
||||||
|
public function response($type = 'background')
|
||||||
|
{
|
||||||
|
$image = $type == 'background' ? $this->backgroundVo->image : $this->templateVo->image;
|
||||||
|
$result = $image->encode('data-url')->getEncoded();
|
||||||
|
//返回图片base64的第二部分
|
||||||
|
return explode(',', $result)[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用来调试
|
||||||
|
*/
|
||||||
|
public function echo($type = 'background')
|
||||||
|
{
|
||||||
|
$image = $type == 'background' ? $this->backgroundVo->image : $this->templateVo->image;
|
||||||
|
die($image->response());
|
||||||
|
}
|
||||||
|
}
|
||||||
114
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/Cache.php
vendored
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
use Fastknife\Utils\CacheUtils;
|
||||||
|
|
||||||
|
class Cache
|
||||||
|
{
|
||||||
|
protected $config;
|
||||||
|
|
||||||
|
protected $driver;
|
||||||
|
|
||||||
|
protected $methodMap = [
|
||||||
|
'get' => 'get',
|
||||||
|
'set' => 'set',
|
||||||
|
'delete' => 'delete',
|
||||||
|
'has' => 'has'
|
||||||
|
];
|
||||||
|
|
||||||
|
public function __construct($config)
|
||||||
|
{
|
||||||
|
if (isset($config['method'])) {
|
||||||
|
$this->methodMap = array_merge($this->methodMap, $config['method']);
|
||||||
|
}
|
||||||
|
$this->driver = $this->getDriver($config['constructor'], $config['options']??[]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDriver($callback, $options)
|
||||||
|
{
|
||||||
|
if ($callback instanceof \Closure) {
|
||||||
|
$result = $callback($options);
|
||||||
|
} else if (is_object($callback)) {
|
||||||
|
$result = $callback;
|
||||||
|
} else if (is_array($callback)) {
|
||||||
|
$result = call_user_func($callback, $options);
|
||||||
|
} else if ($this->isSerialized($callback)) {
|
||||||
|
$result = unserialize($callback);
|
||||||
|
} else if (is_string($callback) && class_exists($callback)) {
|
||||||
|
$result = new $callback($options);
|
||||||
|
} else {
|
||||||
|
$result = new CacheUtils($options);
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否可以被反序列化
|
||||||
|
* @param $data
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isSerialized($data): bool
|
||||||
|
{
|
||||||
|
if (!is_string($data)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$data = trim($data);
|
||||||
|
if ('N;' == $data) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (!preg_match('/^([adObis]):/', $data, $badions)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
switch ($badions[1]) {
|
||||||
|
case 'a' :
|
||||||
|
case 'O' :
|
||||||
|
case 's' :
|
||||||
|
if (preg_match("/^{$badions[1]}:[0-9]+:.*[;}]\$/s", $data))
|
||||||
|
return true;
|
||||||
|
break;
|
||||||
|
case 'b' :
|
||||||
|
case 'i' :
|
||||||
|
case 'd' :
|
||||||
|
if (preg_match("/^{$badions[1]}:[0-9.E-]+;\$/", $data))
|
||||||
|
return true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDriverMethod($name)
|
||||||
|
{
|
||||||
|
return $this->methodMap[$name];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function get($key, $default = null)
|
||||||
|
{
|
||||||
|
$method = $this->getDriverMethod('get');
|
||||||
|
return $this->execute($method, [$key,$default]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function set($key, $value, $ttl = null)
|
||||||
|
{
|
||||||
|
$method = $this->getDriverMethod('set');
|
||||||
|
return $this->execute($method, [$key, $value, $ttl]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete($key)
|
||||||
|
{
|
||||||
|
$method = $this->getDriverMethod('delete');
|
||||||
|
return $this->execute($method, [$key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function has($key)
|
||||||
|
{
|
||||||
|
$method = $this->getDriverMethod('has');
|
||||||
|
return $this->execute($method, [$key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function execute(string $method, array $params){
|
||||||
|
return $this->driver->$method(...$params);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
95
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/WordData.php
vendored
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\PointVo;
|
||||||
|
use Fastknife\Exception\WordException;
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文字码数据处理
|
||||||
|
* Class WordDataEntity
|
||||||
|
* @package Fastknife\Domain\Entity
|
||||||
|
*/
|
||||||
|
class WordData extends BaseData
|
||||||
|
{
|
||||||
|
protected $defaultBackgroundPath = '/resources/defaultImages/pic-click/';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $width
|
||||||
|
* @param $height
|
||||||
|
* @param $index
|
||||||
|
* @param $wordCount
|
||||||
|
* @return PointVo
|
||||||
|
*/
|
||||||
|
protected function getPoint($width, $height, $index, $wordCount)
|
||||||
|
{
|
||||||
|
$avgWidth = $width / ($wordCount + 1);
|
||||||
|
if ($avgWidth < self::FONTSIZE) {
|
||||||
|
$x = RandomUtils::getRandomInt(1 + self::FONTSIZE, $width);
|
||||||
|
} else {
|
||||||
|
if ($index == 0) {
|
||||||
|
$x = RandomUtils::getRandomInt(1 + self::FONTSIZE, $avgWidth * ($index + 1) - self::FONTSIZE);
|
||||||
|
} else {
|
||||||
|
$x = RandomUtils::getRandomInt($avgWidth * $index + self::FONTSIZE, $avgWidth * ($index + 1) - self::FONTSIZE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$y = RandomUtils::getRandomInt(self::FONTSIZE, $height - self::FONTSIZE);
|
||||||
|
return new PointVo($x, $y);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $width
|
||||||
|
* @param $height
|
||||||
|
* @param int $number
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getPointList($width, $height, $number = 3): array
|
||||||
|
{
|
||||||
|
$pointList = [];
|
||||||
|
for ($i = 0; $i < $number; $i++) {
|
||||||
|
$pointList[] = $this->getPoint($width, $height, $i, $number);
|
||||||
|
}
|
||||||
|
shuffle($pointList); //随机排序
|
||||||
|
return $pointList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $list
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function array2Point($list): array
|
||||||
|
{
|
||||||
|
$result = [];
|
||||||
|
foreach ($list as $item) {
|
||||||
|
$result[] = new PointVo($item['x'], $item['y']);
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getWordList($number): array
|
||||||
|
{
|
||||||
|
return RandomUtils::getRandomChar($number);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验
|
||||||
|
* @param array $originPointList
|
||||||
|
* @param array $targetPointList
|
||||||
|
*/
|
||||||
|
public function check(array $originPointList, array $targetPointList)
|
||||||
|
{
|
||||||
|
foreach ($originPointList as $key => $originPoint) {
|
||||||
|
$targetPoint = $targetPointList[$key];
|
||||||
|
if ($targetPoint->x - self::FONTSIZE > $originPoint->x
|
||||||
|
|| $targetPoint->x > $originPoint->x + self::FONTSIZE
|
||||||
|
|| $targetPoint->y - self::FONTSIZE > $originPoint->y
|
||||||
|
|| $targetPoint->y > $originPoint->y + self::FONTSIZE) {
|
||||||
|
throw new WordException('验证失败!');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
83
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Logic/WordImage.php
vendored
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Logic;
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\PointVo;
|
||||||
|
use Intervention\Image\ImageManagerStatic as ImageManager;
|
||||||
|
use Intervention\Image\AbstractFont as Font;
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文字码图片处理
|
||||||
|
* Class WordCaptchaEntity
|
||||||
|
* @package Fastknife\Domain\Entity
|
||||||
|
*/
|
||||||
|
class WordImage extends BaseImage
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $wordList;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return self
|
||||||
|
*/
|
||||||
|
public function setWordList(array $wordList)
|
||||||
|
{
|
||||||
|
$this->wordList = $wordList;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getWordList()
|
||||||
|
{
|
||||||
|
return $this->wordList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public function run()
|
||||||
|
{
|
||||||
|
$this->inputWords();
|
||||||
|
$this->makeWatermark($this->backgroundVo->image);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 写入文字
|
||||||
|
*/
|
||||||
|
protected function inputWords(){
|
||||||
|
foreach ($this->wordList as $key => $word) {
|
||||||
|
$point = $this->point[$key];
|
||||||
|
$this->backgroundVo->image->text($word, $point->x, $point->y, function (Font $font) {
|
||||||
|
$font->file($this->fontFile);
|
||||||
|
$font->size(BaseData::FONTSIZE);
|
||||||
|
$font->color(RandomUtils::getRandomColor());
|
||||||
|
$font->angle(RandomUtils::getRandomAngle());
|
||||||
|
$font->align('center');
|
||||||
|
$font->valign('center');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 返回前端需要的格式
|
||||||
|
* @return false|string[]
|
||||||
|
*/
|
||||||
|
public function response()
|
||||||
|
{
|
||||||
|
$result = $this->getBackgroundVo()->image->encode('data-url')->getEncoded();
|
||||||
|
//返回图片base64的第二部分
|
||||||
|
return explode(',', $result)[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用来调试
|
||||||
|
*/
|
||||||
|
public function echo()
|
||||||
|
{
|
||||||
|
die($this->getBackgroundVo()->image->response());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
8
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Vo/BackgroundVo.php
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Vo;
|
||||||
|
|
||||||
|
class BackgroundVo extends ImageVo
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
179
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Vo/ImageVo.php
vendored
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Vo;
|
||||||
|
|
||||||
|
use Fastknife\Utils\MathUtils;
|
||||||
|
use Intervention\Image\Image;
|
||||||
|
use Intervention\Image\ImageManagerStatic;
|
||||||
|
|
||||||
|
abstract class ImageVo
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var Image
|
||||||
|
*/
|
||||||
|
public $image;
|
||||||
|
|
||||||
|
public $src;
|
||||||
|
|
||||||
|
private $pickMaps = [];
|
||||||
|
|
||||||
|
private $finishCallback;
|
||||||
|
|
||||||
|
public function __construct($src)
|
||||||
|
{
|
||||||
|
$this->src = $src;
|
||||||
|
$this->initImage($src);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function initImage($src)
|
||||||
|
{
|
||||||
|
$this->image = ImageManagerStatic::make($src);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取图片中某一个位置的rgba值
|
||||||
|
* @param $x
|
||||||
|
* @param $y
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getPickColor($x, $y): array
|
||||||
|
{
|
||||||
|
if (!isset($this->pickMaps[$x][$y])) {
|
||||||
|
$this->pickMaps[$x][$y] = $this->image->pickColor($x, $y);
|
||||||
|
}
|
||||||
|
return $this->pickMaps[$x][$y];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置图片指定位置的颜色值
|
||||||
|
*/
|
||||||
|
public function setPixel($color, $x, $y)
|
||||||
|
{
|
||||||
|
$this->image->pixel($color, $x, $y);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $x
|
||||||
|
* @param int $y
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getBlurValue(int $x, int $y): array
|
||||||
|
{
|
||||||
|
$image = $this->image;
|
||||||
|
$red = [];
|
||||||
|
$green = [];
|
||||||
|
$blue = [];
|
||||||
|
$alpha = [];
|
||||||
|
foreach ([
|
||||||
|
[0, 1], [0, -1],
|
||||||
|
[1, 0], [-1, 0],
|
||||||
|
[1, 1], [1, -1],
|
||||||
|
[-1, 1], [-1, -1],
|
||||||
|
] as $distance) //边框取5个点,4个角取3个点,其余取8个点
|
||||||
|
{
|
||||||
|
$pointX = $x + $distance[0];
|
||||||
|
$pointY = $y + $distance[1];
|
||||||
|
if ($pointX < 0 || $pointX >= $image->getWidth() || $pointY < 0 || $pointY >= $image->height()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
[$r, $g, $b, $a] = $this->getPickColor($pointX, $pointY);
|
||||||
|
$red[] = $r;
|
||||||
|
$green[] = $g;
|
||||||
|
$blue[] = $b;
|
||||||
|
$alpha[] = $a;
|
||||||
|
}
|
||||||
|
return [MathUtils::avg($red), MathUtils::avg($green), MathUtils::avg($blue), MathUtils::avg($alpha)];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否不透明
|
||||||
|
* @param $x
|
||||||
|
* @param $y
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isOpacity($x, $y): bool
|
||||||
|
{
|
||||||
|
return $this->getPickColor($x, $y)[3] > 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否为边框
|
||||||
|
* @param bool $isOpacity
|
||||||
|
* @param int $x
|
||||||
|
* @param int $y
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isBoundary(bool $isOpacity, int $x, int $y): bool
|
||||||
|
{
|
||||||
|
$image = $this->image;
|
||||||
|
if ($x >= $image->width() - 1 || $y >= $image->height() - 1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$right = [$x + 1, $y];
|
||||||
|
$down = [$x, $y + 1];
|
||||||
|
if (
|
||||||
|
$isOpacity && !$this->isOpacity(...$right)
|
||||||
|
|| !$isOpacity && $this->isOpacity(...$right)
|
||||||
|
|| $isOpacity && !$this->isOpacity(...$down)
|
||||||
|
|| !$isOpacity && $this->isOpacity(...$down)
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 模糊图片
|
||||||
|
* @param $targetX
|
||||||
|
* @param $targetY
|
||||||
|
*/
|
||||||
|
public function vagueImage($targetX, $targetY)
|
||||||
|
{
|
||||||
|
$blur = $this->getBlurValue($targetX, $targetY);
|
||||||
|
$this->setPixel($blur, $targetX, $targetY);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getPickMaps(): array
|
||||||
|
{
|
||||||
|
return $this->pickMaps;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $pickMaps
|
||||||
|
*/
|
||||||
|
public function setPickMaps(array $pickMaps): void
|
||||||
|
{
|
||||||
|
$this->pickMaps = $pickMaps;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 提前初始化像素
|
||||||
|
*/
|
||||||
|
public function preparePickMaps()
|
||||||
|
{
|
||||||
|
$width = $this->image->getWidth();
|
||||||
|
$height = $this->image->getHeight();
|
||||||
|
for ($x = 0; $x < $width; $x++) {
|
||||||
|
for ($y = 0; $y < $height; $y++) {
|
||||||
|
$this->getPickColor($x, $y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setFinishCallback($finishCallback){
|
||||||
|
$this->finishCallback = $finishCallback;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __destruct()
|
||||||
|
{
|
||||||
|
if(!empty($this->finishCallback) && $this->finishCallback instanceof \Closure){
|
||||||
|
($this->finishCallback)($this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
18
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Vo/OffsetVo.php
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Vo;
|
||||||
|
|
||||||
|
|
||||||
|
class OffsetVo
|
||||||
|
{
|
||||||
|
public $x;
|
||||||
|
public $y;
|
||||||
|
|
||||||
|
public function __construct($x, $y)
|
||||||
|
{
|
||||||
|
$this->x = $x;
|
||||||
|
$this->y = $y;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
22
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Vo/PointVo.php
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Vo;
|
||||||
|
|
||||||
|
|
||||||
|
class PointVo
|
||||||
|
{
|
||||||
|
public $x;
|
||||||
|
public $y;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PointDto constructor.
|
||||||
|
* @param $x
|
||||||
|
* @param $y
|
||||||
|
*/
|
||||||
|
public function __construct($x, $y)
|
||||||
|
{
|
||||||
|
$this->x = $x;
|
||||||
|
$this->y = $y;
|
||||||
|
}
|
||||||
|
}
|
||||||
32
niucloud/vendor/fastknife/ajcaptcha/src/Domain/Vo/TemplateVo.php
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Domain\Vo;
|
||||||
|
use Intervention\Image\Image;
|
||||||
|
class TemplateVo extends ImageVo
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var OffsetVo
|
||||||
|
*/
|
||||||
|
public $offset;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return OffsetVo
|
||||||
|
*/
|
||||||
|
public function getOffset(): OffsetVo
|
||||||
|
{
|
||||||
|
return $this->offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param OffsetVo $offset
|
||||||
|
*/
|
||||||
|
public function setOffset(OffsetVo $offset): void
|
||||||
|
{
|
||||||
|
$this->offset = $offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
10
niucloud/vendor/fastknife/ajcaptcha/src/Exception/BlockException.php
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Exception;
|
||||||
|
|
||||||
|
|
||||||
|
class BlockException extends \RuntimeException
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
12
niucloud/vendor/fastknife/ajcaptcha/src/Exception/ParamException.php
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Exception;
|
||||||
|
|
||||||
|
|
||||||
|
use \RuntimeException;
|
||||||
|
|
||||||
|
class ParamException extends RuntimeException
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
10
niucloud/vendor/fastknife/ajcaptcha/src/Exception/WordException.php
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Exception;
|
||||||
|
|
||||||
|
|
||||||
|
class WordException extends \RuntimeException
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
55
niucloud/vendor/fastknife/ajcaptcha/src/Service/BlockPuzzleCaptchaService.php
vendored
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Service;
|
||||||
|
|
||||||
|
use Fastknife\Domain\Vo\PointVo;
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
|
||||||
|
class BlockPuzzleCaptchaService extends Service
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 获取验证码图片信息
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function get(): array
|
||||||
|
{
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$blockImage = $this->factory->makeBlockImage();
|
||||||
|
$blockImage->run();
|
||||||
|
$data = [
|
||||||
|
'originalImageBase64' => $blockImage->response(),
|
||||||
|
'jigsawImageBase64' => $blockImage->response('template'),
|
||||||
|
'secretKey' => RandomUtils::getRandomCode(16, 3),
|
||||||
|
'token' => RandomUtils::getUUID(),
|
||||||
|
];
|
||||||
|
//缓存
|
||||||
|
$cacheEntity->set($data['token'], [
|
||||||
|
'secretKey' => $data['secretKey'],
|
||||||
|
'point' => $blockImage->getPoint()
|
||||||
|
], $this->factory->getConfig()['cache']['options']['expire'] ?? 300);
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 验证
|
||||||
|
* @param string $token
|
||||||
|
* @param string $pointJson
|
||||||
|
*/
|
||||||
|
public function validate($token, $pointJson)
|
||||||
|
{
|
||||||
|
//获取并设置 $this->originData
|
||||||
|
$this->setOriginData($token);
|
||||||
|
|
||||||
|
//数据处理类
|
||||||
|
$blockData = $this->factory->makeBlockData();
|
||||||
|
|
||||||
|
//解码出来的前端坐标
|
||||||
|
$targetPoint = $this->encodePoint($this->originData['secretKey'], $pointJson);;
|
||||||
|
$targetPoint = new PointVo($targetPoint['x'], $targetPoint['y']);
|
||||||
|
|
||||||
|
//检查
|
||||||
|
$blockData->check($this->originData['point'], $targetPoint);
|
||||||
|
}
|
||||||
|
}
|
||||||
60
niucloud/vendor/fastknife/ajcaptcha/src/Service/ClickWordCaptchaService.php
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Service;
|
||||||
|
|
||||||
|
use Fastknife\Exception\ParamException;
|
||||||
|
use Fastknife\Utils\AesUtils;
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
|
||||||
|
class ClickWordCaptchaService extends Service
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取文字验证码
|
||||||
|
*/
|
||||||
|
public function get(): array
|
||||||
|
{
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$wordImage = $this->factory->makeWordImage();
|
||||||
|
//执行创建
|
||||||
|
$wordImage->run();
|
||||||
|
$data = [
|
||||||
|
'originalImageBase64' => $wordImage->response(),
|
||||||
|
'secretKey' => RandomUtils::getRandomCode(16, 3),
|
||||||
|
'token' => RandomUtils::getUUID(),
|
||||||
|
'wordList' => $wordImage->getWordList()
|
||||||
|
];
|
||||||
|
//缓存
|
||||||
|
$cacheEntity->set($data['token'], [
|
||||||
|
'secretKey' => $data['secretKey'],
|
||||||
|
'point' => $wordImage->getPoint()
|
||||||
|
],$this->factory->getConfig()['cache']['options']['expire'] ?? 300);
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 验证
|
||||||
|
* @param $token
|
||||||
|
* @param $pointJson
|
||||||
|
*/
|
||||||
|
public function validate($token, $pointJson)
|
||||||
|
{
|
||||||
|
//获取并设置 $this->originData
|
||||||
|
$this->setOriginData($token);
|
||||||
|
|
||||||
|
//数据实例
|
||||||
|
$wordData = $this->factory->makeWordData();
|
||||||
|
//解码出来的前端坐标
|
||||||
|
$pointJson = $this->encodePoint($this->originData['secretKey'], $pointJson);
|
||||||
|
$targetPointList = $wordData->array2Point($pointJson);
|
||||||
|
|
||||||
|
//检查
|
||||||
|
$wordData->check($this->originData['point'], $targetPointList);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
121
niucloud/vendor/fastknife/ajcaptcha/src/Service/Service.php
vendored
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Service;
|
||||||
|
|
||||||
|
|
||||||
|
use Fastknife\Domain\Factory;
|
||||||
|
use Fastknife\Exception\ParamException;
|
||||||
|
use Fastknife\Utils\AesUtils;
|
||||||
|
|
||||||
|
abstract class Service
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var Factory 工厂
|
||||||
|
*/
|
||||||
|
protected $factory;
|
||||||
|
|
||||||
|
protected $originData;
|
||||||
|
|
||||||
|
public function __construct($config)
|
||||||
|
{
|
||||||
|
$defaultConfig = require dirname(__DIR__) . '/config.php';
|
||||||
|
$config = array_merge($defaultConfig, $config);
|
||||||
|
$this->factory = new Factory($config);
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract public function get();
|
||||||
|
|
||||||
|
|
||||||
|
abstract public function validate( $token, $pointJson);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 一次验证
|
||||||
|
* @param $token
|
||||||
|
* @param $pointJson
|
||||||
|
*/
|
||||||
|
public function check($token, $pointJson)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->validate($token, $pointJson);
|
||||||
|
}catch (\RuntimeException $e){
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$cacheEntity->delete($token);
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
|
$this->setEncryptCache($token, $pointJson);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function setEncryptCache($token, $pointJson){
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$pointStr = AesUtils::decrypt($pointJson, $this->originData['secretKey']);
|
||||||
|
$key = AesUtils::encrypt($token. '---'. $pointStr, $this->originData['secretKey']);
|
||||||
|
$cacheEntity->set($key,
|
||||||
|
[
|
||||||
|
'token' => $token,
|
||||||
|
'point' => $pointJson
|
||||||
|
],
|
||||||
|
$this->factory->getConfig()['cache']['options']['expire'] ?? 300
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二次验证
|
||||||
|
* @param $token
|
||||||
|
* @param $pointJson
|
||||||
|
*/
|
||||||
|
public function verification($token, $pointJson)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->validate($token, $pointJson);
|
||||||
|
} finally {
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$cacheEntity->delete($token);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二次验证,必须要先执行一次验证才能调用二次验证
|
||||||
|
* 兼容前端 captchaVerification 传值
|
||||||
|
* @param string $encryptCode
|
||||||
|
*/
|
||||||
|
public function verificationByEncryptCode(string $encryptCode)
|
||||||
|
{
|
||||||
|
$result = $this->factory->getCacheInstance()->get($encryptCode);
|
||||||
|
if(empty($result)){
|
||||||
|
throw new ParamException('参数错误!');
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->validate($result['token'], $result['point']);
|
||||||
|
} finally {
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$cacheEntity->delete($result['token']);
|
||||||
|
$cacheEntity->delete($encryptCode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解码坐标点
|
||||||
|
* @param $secretKey
|
||||||
|
* @param $point
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function encodePoint($secretKey, $point): array
|
||||||
|
{
|
||||||
|
$pointJson = AesUtils::decrypt($point, $secretKey);
|
||||||
|
if ($pointJson == false) {
|
||||||
|
throw new ParamException('aes验签失败!');
|
||||||
|
}
|
||||||
|
return json_decode($pointJson, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function setOriginData($token){
|
||||||
|
$cacheEntity = $this->factory->getCacheInstance();
|
||||||
|
$this->originData = $cacheEntity->get($token);
|
||||||
|
if (empty($this->originData)) {
|
||||||
|
throw new ParamException('参数校验失败:token');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
39
niucloud/vendor/fastknife/ajcaptcha/src/Utils/AesUtils.php
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class AesUtils
|
||||||
|
* @package Fastknife\Utils
|
||||||
|
*/
|
||||||
|
class AesUtils
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $str
|
||||||
|
* @param $secretKey string 只有长度等于16位才能与前端CryptoJS加密一致
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public static function encrypt($str, string $secretKey)
|
||||||
|
{
|
||||||
|
return base64_encode(openssl_encrypt($str, 'AES-128-ECB', $secretKey, OPENSSL_RAW_DATA));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解密
|
||||||
|
* @param $str
|
||||||
|
* @param $secretKey string 只有长度等于16位才能与前端CryptoJS加密一致
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public static function decrypt($str, string $secretKey): string
|
||||||
|
{
|
||||||
|
$ret = openssl_decrypt(base64_decode($str), 'AES-128-ECB', $secretKey,OPENSSL_RAW_DATA);
|
||||||
|
if($ret === false){
|
||||||
|
throw new \RuntimeException('请检查密钥是否正确!');
|
||||||
|
}
|
||||||
|
return $ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
331
niucloud/vendor/fastknife/ajcaptcha/src/Utils/CacheUtils.php
vendored
Normal file
@ -0,0 +1,331 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Utils;
|
||||||
|
|
||||||
|
|
||||||
|
class CacheUtils
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 配置参数
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $options = [
|
||||||
|
'expire' => 300,
|
||||||
|
'cache_subdir' => true,
|
||||||
|
'prefix' => '',
|
||||||
|
'path' => '',
|
||||||
|
'hash_type' => 'md5',
|
||||||
|
'data_compress' => false,
|
||||||
|
'tag_prefix' => 'tag:',
|
||||||
|
'serialize' => [],
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 缓存读取次数
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
protected $readTimes = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 缓存写入次数
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
protected $writeTimes = 0;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 架构函数
|
||||||
|
* @param array $options 参数
|
||||||
|
*/
|
||||||
|
public function __construct(array $options = [])
|
||||||
|
{
|
||||||
|
if (!empty($options)) {
|
||||||
|
$this->options = array_merge($this->options, $options);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($this->options['path'])) {
|
||||||
|
$root = isset($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['DOCUMENT_ROOT']) ?$_SERVER['DOCUMENT_ROOT'] : getcwd();
|
||||||
|
$this->options['path'] = $root. '/runtime/cache';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (substr($this->options['path'], -1) != DIRECTORY_SEPARATOR) {
|
||||||
|
$this->options['path'] .= DIRECTORY_SEPARATOR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取得变量的存储文件名
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getCacheKey(string $name): string
|
||||||
|
{
|
||||||
|
$name = hash($this->options['hash_type'], $name);
|
||||||
|
|
||||||
|
if ($this->options['cache_subdir']) {
|
||||||
|
// 使用子目录
|
||||||
|
$name = substr($name, 0, 2) . DIRECTORY_SEPARATOR . substr($name, 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->options['prefix']) {
|
||||||
|
$name = $this->options['prefix'] . DIRECTORY_SEPARATOR . $name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->options['path'] . $name . '.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取缓存数据
|
||||||
|
* @param string $name 缓存标识名
|
||||||
|
* @return array|null
|
||||||
|
*/
|
||||||
|
protected function getRaw(string $name)
|
||||||
|
{
|
||||||
|
$filename = $this->getCacheKey($name);
|
||||||
|
|
||||||
|
if (!is_file($filename)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$content = @file_get_contents($filename);
|
||||||
|
|
||||||
|
if (false !== $content) {
|
||||||
|
$expire = (int) substr($content, 8, 12);
|
||||||
|
if (0 != $expire && time() - $expire > filemtime($filename)) {
|
||||||
|
//缓存过期删除缓存文件
|
||||||
|
$this->unlink($filename);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$content = substr($content, 32);
|
||||||
|
|
||||||
|
return is_string($content) ? ['content' => $content, 'expire' => $expire] : null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断缓存是否存在
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function has($name): bool
|
||||||
|
{
|
||||||
|
return $this->getRaw($name) !== null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 读取缓存
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @param mixed $default 默认值
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function get($name, $default = null)
|
||||||
|
{
|
||||||
|
$this->readTimes++;
|
||||||
|
|
||||||
|
$raw = $this->getRaw($name);
|
||||||
|
|
||||||
|
return is_null($raw) ? $default : $this->unserialize($raw['content']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 写入缓存
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @param mixed $value 存储数据
|
||||||
|
* @param int $expire 有效时间 0为永久
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function set($name, $value, $expire = null): bool
|
||||||
|
{
|
||||||
|
$this->writeTimes++;
|
||||||
|
|
||||||
|
if (is_null($expire)) {
|
||||||
|
$expire = $this->options['expire'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$filename = $this->getCacheKey($name);
|
||||||
|
|
||||||
|
$dir = dirname($filename);
|
||||||
|
|
||||||
|
if (!is_dir($dir)) {
|
||||||
|
try {
|
||||||
|
mkdir($dir, 0755, true);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
// 创建失败
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = $this->serialize($value);
|
||||||
|
|
||||||
|
if ($this->options['data_compress'] && function_exists('gzcompress')) {
|
||||||
|
//数据压缩
|
||||||
|
$data = gzcompress($data, 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = "<?php\n//" . sprintf('%012d', $expire) . "\n exit();?>\n" . $data;
|
||||||
|
$result = file_put_contents($filename, $data);
|
||||||
|
|
||||||
|
if ($result) {
|
||||||
|
clearstatcache();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自增缓存(针对数值缓存)
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @param int $step 步长
|
||||||
|
* @return false|int
|
||||||
|
*/
|
||||||
|
public function inc(string $name, int $step = 1)
|
||||||
|
{
|
||||||
|
if ($raw = $this->getRaw($name)) {
|
||||||
|
$value = $this->unserialize($raw['content']) + $step;
|
||||||
|
$expire = $raw['expire'];
|
||||||
|
} else {
|
||||||
|
$value = $step;
|
||||||
|
$expire = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->set($name, $value, $expire) ? $value : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自减缓存(针对数值缓存)
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @param int $step 步长
|
||||||
|
* @return false|int
|
||||||
|
*/
|
||||||
|
public function dec(string $name, int $step = 1)
|
||||||
|
{
|
||||||
|
return $this->inc($name, -$step);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除缓存
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function delete($name): bool
|
||||||
|
{
|
||||||
|
$this->writeTimes++;
|
||||||
|
|
||||||
|
return $this->unlink($this->getCacheKey($name));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清除缓存
|
||||||
|
* @access public
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function clear(): bool
|
||||||
|
{
|
||||||
|
$this->writeTimes++;
|
||||||
|
|
||||||
|
$dirname = $this->options['path'] . $this->options['prefix'];
|
||||||
|
|
||||||
|
$this->rmdir($dirname);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除缓存标签
|
||||||
|
* @access public
|
||||||
|
* @param array $keys 缓存标识列表
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function clearTag(array $keys): void
|
||||||
|
{
|
||||||
|
foreach ($keys as $key) {
|
||||||
|
$this->unlink($key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断文件是否存在后,删除
|
||||||
|
* @access private
|
||||||
|
* @param string $path
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private function unlink(string $path): bool
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
return is_file($path) && unlink($path);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除文件夹
|
||||||
|
* @param $dirname
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private function rmdir($dirname)
|
||||||
|
{
|
||||||
|
if (!is_dir($dirname)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$items = new \FilesystemIterator($dirname);
|
||||||
|
|
||||||
|
foreach ($items as $item) {
|
||||||
|
if ($item->isDir() && !$item->isLink()) {
|
||||||
|
$this->rmdir($item->getPathname());
|
||||||
|
} else {
|
||||||
|
$this->unlink($item->getPathname());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@rmdir($dirname);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 序列化数据
|
||||||
|
* @access protected
|
||||||
|
* @param mixed $data 缓存数据
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
protected function serialize($data): string
|
||||||
|
{
|
||||||
|
if (is_numeric($data)) {
|
||||||
|
return (string) $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
$serialize = $this->options['serialize'][0] ?? "serialize";
|
||||||
|
|
||||||
|
return $serialize($data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 反序列化数据
|
||||||
|
* @access protected
|
||||||
|
* @param string $data 缓存数据
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
protected function unserialize(string $data)
|
||||||
|
{
|
||||||
|
if (is_numeric($data)) {
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
$unserialize = $this->options['serialize'][1] ?? "unserialize";
|
||||||
|
|
||||||
|
return $unserialize($data);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
16
niucloud/vendor/fastknife/ajcaptcha/src/Utils/MathUtils.php
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Fastknife\Utils;
|
||||||
|
|
||||||
|
class MathUtils
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 获取平均值
|
||||||
|
* @param array $array
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public static function avg(array $array): int
|
||||||
|
{
|
||||||
|
return intval(array_sum($array) / count($array));
|
||||||
|
}
|
||||||
|
}
|
||||||
109
niucloud/vendor/fastknife/ajcaptcha/src/Utils/RandomUtils.php
vendored
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Fastknife\Utils;
|
||||||
|
|
||||||
|
|
||||||
|
class RandomUtils
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 获取随机数
|
||||||
|
* @param $min
|
||||||
|
* @param $max
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public static function getRandomInt($min, $max): int
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
return random_int(intval($min), intval($max));
|
||||||
|
}catch (\Exception $e){
|
||||||
|
return mt_rand($min, $max);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 随机获取眼色值
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public static function getRandomColor(): array
|
||||||
|
{
|
||||||
|
return [self::getRandomInt(1, 255), self::getRandomInt(1, 255), self::getRandomInt(1, 255)];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 随机获取角度
|
||||||
|
* @param int $start
|
||||||
|
* @param int $end
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public static function getRandomAngle(int $start = -45, int $end = 45): int
|
||||||
|
{
|
||||||
|
return self::getRandomInt($start, $end);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 随机获取汉字
|
||||||
|
* @param $num int 生成汉字的数量
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public static function getRandomChar(int $num): array
|
||||||
|
{
|
||||||
|
$b = [];
|
||||||
|
for ($i=0; $i<$num; $i++) {
|
||||||
|
// 使用chr()函数拼接双字节汉字,前一个chr()为高位字节,后一个为低位字节
|
||||||
|
$a = chr(self::getRandomInt(0xB0,0xD0)).chr(self::getRandomInt(0xA1, 0xF0));
|
||||||
|
// 转码
|
||||||
|
$h = iconv('GB2312', 'UTF-8', $a);
|
||||||
|
if(!in_array($h, $b)){
|
||||||
|
$b[] = $h;
|
||||||
|
}else{
|
||||||
|
$i--; //去重
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $b;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类似java一样的uuid
|
||||||
|
* @param string $prefix
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public static function getUUID(string $prefix = ''): string
|
||||||
|
{
|
||||||
|
$chars = md5(uniqid((string) self::getRandomInt(1, 100), true));
|
||||||
|
$uuid = substr($chars,0,8) . '-';
|
||||||
|
$uuid .= substr($chars,8,4) . '-';
|
||||||
|
$uuid .= substr($chars,12,4) . '-';
|
||||||
|
$uuid .= substr($chars,16,4) . '-';
|
||||||
|
$uuid .= substr($chars,20,12);
|
||||||
|
return $prefix . $uuid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取随机字符串编码
|
||||||
|
* @param integer $length 字符串长度
|
||||||
|
* @param integer $type 字符串类型(1纯数字,2纯字母,3数字字母)
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public static function getRandomCode(int $length = 10, int $type = 1): string
|
||||||
|
{
|
||||||
|
$numbs = '0123456789';
|
||||||
|
$chars = "abcdefghilkmnopqrstuvwxyz";
|
||||||
|
$maps = '';
|
||||||
|
if ($type === 1){
|
||||||
|
$maps = $numbs;
|
||||||
|
}
|
||||||
|
if ($type === 2){
|
||||||
|
$maps = $chars;
|
||||||
|
}
|
||||||
|
if ($type === 3){
|
||||||
|
$maps = "{$numbs}{$chars}";
|
||||||
|
}
|
||||||
|
$string = $maps[self::getRandomInt(1, strlen($maps) - 1)];
|
||||||
|
while (strlen($string) < $length) {
|
||||||
|
$string .= $maps[self::getRandomInt(0, strlen($maps) - 1)];
|
||||||
|
}
|
||||||
|
return $string;
|
||||||
|
}
|
||||||
|
}
|
||||||
51
niucloud/vendor/fastknife/ajcaptcha/src/config.php
vendored
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return [
|
||||||
|
'font_file' => '', //自定义字体包路径, 不填使用默认值
|
||||||
|
//文字验证码
|
||||||
|
'click_world' => [
|
||||||
|
'backgrounds' => [],
|
||||||
|
'word_num' => 4, //写入多少字文字(2-5)
|
||||||
|
],
|
||||||
|
//滑动验证码
|
||||||
|
'block_puzzle' => [
|
||||||
|
/*背景图片路径, 不填使用默认值, 支持string与array两种数据结构。string为默认图片的目录,array索引数组则为具体图片的地址*/
|
||||||
|
'backgrounds' => [],
|
||||||
|
|
||||||
|
/*模板图,格式同上支持string与array*/
|
||||||
|
'templates' => [],
|
||||||
|
|
||||||
|
'offset' => 10, //容错偏移量
|
||||||
|
|
||||||
|
'is_cache_pixel' => true, //是否开启缓存图片像素值,开启后能提升服务端响应性能(但要注意更换图片时,需要清除缓存)
|
||||||
|
|
||||||
|
'is_interfere' => true, //开启干扰图
|
||||||
|
],
|
||||||
|
//水印
|
||||||
|
'watermark' => [
|
||||||
|
'fontsize' => 12,
|
||||||
|
'color' => '#000000',
|
||||||
|
'text' => '我的水印'
|
||||||
|
],
|
||||||
|
'cache' => [
|
||||||
|
//若您使用了框架,并且想使用类似于redis这样的缓存驱动,则应换成框架的中的缓存驱动
|
||||||
|
'constructor' => \Fastknife\Utils\CacheUtils::class,
|
||||||
|
'method' => [
|
||||||
|
//遵守PSR-16规范不需要设置此项(tp6, laravel,hyperf)。如tp5就不支持(tp5缓存方法是rm,所以要配置为"delete" => "rm")
|
||||||
|
/**
|
||||||
|
'get' => 'get', //获取
|
||||||
|
'set' => 'set', //设置
|
||||||
|
'delete' => 'delete',//删除
|
||||||
|
'has' => 'has' //key是否存在
|
||||||
|
*/
|
||||||
|
],
|
||||||
|
'options' => [
|
||||||
|
//如果您依然使用\Fastknife\Utils\CacheUtils做为您的缓存驱动,那么您可以自定义缓存配置。
|
||||||
|
'expire' => 300,//缓存有效期 (默认为0 表示永久缓存)
|
||||||
|
'prefix' => '', //缓存前缀
|
||||||
|
'path' => '', //缓存目录
|
||||||
|
'serialize' => [], //缓存序列化和反序列化方法
|
||||||
|
]
|
||||||
|
]
|
||||||
|
];
|
||||||
82
niucloud/vendor/fastknife/ajcaptcha/test/BlockPuzzleController.php
vendored
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
use \Fastknife\Service\BlockPuzzleCaptchaService;
|
||||||
|
|
||||||
|
class BlockPuzzleController
|
||||||
|
{
|
||||||
|
public function get(){
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new BlockPuzzleCaptchaService($config);
|
||||||
|
$data = $service->get();
|
||||||
|
echo json_encode([
|
||||||
|
'error' => false,
|
||||||
|
'repCode' => '0000',
|
||||||
|
'repData' => $data,
|
||||||
|
'repMsg' => null,
|
||||||
|
'success' => true,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 一次验证
|
||||||
|
*/
|
||||||
|
public function check()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new BlockPuzzleCaptchaService($config);
|
||||||
|
$data = $_REQUEST;
|
||||||
|
$msg = null;
|
||||||
|
$error = false;
|
||||||
|
$repCode = '0000';
|
||||||
|
try {
|
||||||
|
$service->check($data['token'], $data['pointJson']);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$msg = $e->getMessage();
|
||||||
|
$error = true;
|
||||||
|
$repCode = '6111';
|
||||||
|
}
|
||||||
|
echo json_encode([
|
||||||
|
'error' => $error,
|
||||||
|
'repCode' => $repCode,
|
||||||
|
'repData' => null,
|
||||||
|
'repMsg' => $msg,
|
||||||
|
'success' => ! $error,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二次验证
|
||||||
|
*/
|
||||||
|
public function verification()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new BlockPuzzleCaptchaService($config);
|
||||||
|
$data = $_REQUEST;
|
||||||
|
$msg = null;
|
||||||
|
$error = false;
|
||||||
|
$repCode = '0000';
|
||||||
|
|
||||||
|
try {
|
||||||
|
if(isset($data['captchaVerification'])){
|
||||||
|
$service->verificationByEncryptCode($data['captchaVerification']);
|
||||||
|
}else if (isset($data['token']) && isset($data['pointJson'])){
|
||||||
|
$service->verification($data['token'], $data['pointJson']);
|
||||||
|
} else {
|
||||||
|
throw new \Exception('参数错误!');
|
||||||
|
}
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$msg = $e->getMessage();
|
||||||
|
$error = true;
|
||||||
|
$repCode = '6111';
|
||||||
|
}
|
||||||
|
echo json_encode([
|
||||||
|
'error' => $error,
|
||||||
|
'repCode' => $repCode,
|
||||||
|
'repData' => null,
|
||||||
|
'repMsg' => $msg,
|
||||||
|
'success' => ! $error,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
90
niucloud/vendor/fastknife/ajcaptcha/test/ClickWordController.php
vendored
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
use Fastknife\Utils\RandomUtils;
|
||||||
|
use Fastknife\Service\ClickWordCaptchaService;
|
||||||
|
|
||||||
|
class ClickWordController
|
||||||
|
{
|
||||||
|
public function get()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new ClickWordCaptchaService($config);
|
||||||
|
$data = $service->get();
|
||||||
|
echo json_encode([
|
||||||
|
'error' => false,
|
||||||
|
'repCode' => '0000',
|
||||||
|
'repData' => $data,
|
||||||
|
'repMsg' => null,
|
||||||
|
'success' => true,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 一次验证
|
||||||
|
*/
|
||||||
|
public function check()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new ClickWordCaptchaService($config);
|
||||||
|
$data = $_REQUEST;
|
||||||
|
$msg = null;
|
||||||
|
$error = false;
|
||||||
|
$repCode = '0000';
|
||||||
|
try {
|
||||||
|
$service->check($data['token'], $data['pointJson']);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$msg = $e->getMessage();
|
||||||
|
$error = true;
|
||||||
|
$repCode = '6111';
|
||||||
|
}
|
||||||
|
echo json_encode([
|
||||||
|
'error' => $error,
|
||||||
|
'repCode' => $repCode,
|
||||||
|
'repData' => null,
|
||||||
|
'repMsg' => $msg,
|
||||||
|
'success' => ! $error,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二次验证
|
||||||
|
*/
|
||||||
|
public function verification()
|
||||||
|
{
|
||||||
|
$config = require '../src/config.php';
|
||||||
|
$service = new ClickWordCaptchaService($config);
|
||||||
|
$data = $_REQUEST;
|
||||||
|
$msg = null;
|
||||||
|
$error = false;
|
||||||
|
$repCode = '0000';
|
||||||
|
try {
|
||||||
|
if(isset($data['captchaVerification'])){
|
||||||
|
$service->verificationByEncryptCode($data['captchaVerification']);
|
||||||
|
}else if (isset($data['token']) && isset($data['pointJson'])){
|
||||||
|
$service->verification($data['token'], $data['pointJson']);
|
||||||
|
} else {
|
||||||
|
throw new \Exception('参数错误!');
|
||||||
|
}
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$msg = $e->getMessage();
|
||||||
|
$error = true;
|
||||||
|
$repCode = '6111';
|
||||||
|
}
|
||||||
|
echo json_encode([
|
||||||
|
'error' => $error,
|
||||||
|
'repCode' => $repCode,
|
||||||
|
'repData' => null,
|
||||||
|
'repMsg' => $msg,
|
||||||
|
'success' => ! $error,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
16
niucloud/vendor/fastknife/ajcaptcha/test/autoload.php
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
(function () {
|
||||||
|
foreach ([
|
||||||
|
'vendor/autoload.php',
|
||||||
|
'../vendor/autoload.php',
|
||||||
|
'../../vendor/autoload.php',
|
||||||
|
'../../../vendor/autoload.php',
|
||||||
|
'../../../../vendor/autoload.php'
|
||||||
|
] as $file) {
|
||||||
|
if (is_file($file)) {
|
||||||
|
/** @noinspection PhpIncludeInspection */
|
||||||
|
include $file;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})();
|
||||||