diff --git a/composer.json b/composer.json index f443197..ef90d2b 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,8 @@ "psr/container": "^1.1.1", "php-di/php-di": "^6", "doctrine/annotations": "^1.14", - "webman/push": "^1.0" + "webman/push": "^1.0", + "webman/cors": "^1.0" }, "suggest": { "ext-event": "For better performance. " diff --git a/composer.lock b/composer.lock index c73d250..64913a9 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "925eb31b037c538d5ddaba7603395749", + "content-hash": "cb9309ca73e56832131eeb8c02ae9170", "packages": [ { "name": "doctrine/annotations", @@ -1262,6 +1262,26 @@ "description": "JSON Web Token (JWT) for webman plugin", "time": "2023-09-16T03:25:47+00:00" }, + { + "name": "webman/cors", + "version": "v1.0.1", + "dist": { + "type": "zip", + "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/cors/v1.0.1/webman-cors-v1.0.1.zip", + "reference": "a5396634fd2ee4e7b15abba0bab45f28e1c1ad02", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "Webman\\Cors\\": "src" + } + }, + "license": [ + "MIT" + ], + "time": "2022-11-05T11:16:20+00:00" + }, { "name": "webman/push", "version": "v1.0.16", diff --git a/config/plugin/webman/cors/app.php b/config/plugin/webman/cors/app.php new file mode 100644 index 0000000..8f9c426 --- /dev/null +++ b/config/plugin/webman/cors/app.php @@ -0,0 +1,4 @@ + true, +]; \ No newline at end of file diff --git a/config/plugin/webman/cors/middleware.php b/config/plugin/webman/cors/middleware.php new file mode 100644 index 0000000..67b99b4 --- /dev/null +++ b/config/plugin/webman/cors/middleware.php @@ -0,0 +1,19 @@ + + * @copyright walkor + * @link http://www.workerman.net/ + * @license http://www.opensource.org/licenses/mit-license.php MIT License + */ + +return [ + '' => [ + \Webman\Cors\CORS::class + ] +]; \ No newline at end of file diff --git a/config/route.php b/config/route.php index a5064fc..82d1c52 100644 --- a/config/route.php +++ b/config/route.php @@ -14,8 +14,9 @@ use Webman\Route; - - - +// 给所有OPTIONS请求设置跨域 +Route::options('[{path:.+}]', function (){ + return response(''); +}); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 37648ec..7da67f3 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -12,6 +12,7 @@ return array( 'app\\' => array($baseDir . '/app'), 'Workerman\\' => array($vendorDir . '/workerman/workerman'), 'Webman\\Push\\' => array($vendorDir . '/webman/push/src'), + 'Webman\\Cors\\' => array($vendorDir . '/webman/cors/src'), 'Webman\\' => array($vendorDir . '/workerman/webman-framework/src'), 'WebSocket\\' => array($vendorDir . '/textalk/websocket/lib'), 'Tinywan\\Jwt\\' => array($vendorDir . '/tinywan/jwt/src'), diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 9f319b4..6012ff0 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -33,6 +33,7 @@ class ComposerStaticInitdf7b72b3aceadccf28975d51278ffb6d array ( 'Workerman\\' => 10, 'Webman\\Push\\' => 12, + 'Webman\\Cors\\' => 12, 'Webman\\' => 7, 'WebSocket\\' => 10, ), @@ -118,6 +119,10 @@ class ComposerStaticInitdf7b72b3aceadccf28975d51278ffb6d array ( 0 => __DIR__ . '/..' . '/webman/push/src', ), + 'Webman\\Cors\\' => + array ( + 0 => __DIR__ . '/..' . '/webman/cors/src', + ), 'Webman\\' => array ( 0 => __DIR__ . '/..' . '/workerman/webman-framework/src', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index a869327..229cb25 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1331,6 +1331,29 @@ "description": "JSON Web Token (JWT) for webman plugin", "install-path": "../tinywan/jwt" }, + { + "name": "webman/cors", + "version": "v1.0.1", + "version_normalized": "1.0.1.0", + "dist": { + "type": "zip", + "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/cors/v1.0.1/webman-cors-v1.0.1.zip", + "reference": "a5396634fd2ee4e7b15abba0bab45f28e1c1ad02", + "shasum": "" + }, + "time": "2022-11-05T11:16:20+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Webman\\Cors\\": "src" + } + }, + "license": [ + "MIT" + ], + "install-path": "../webman/cors" + }, { "name": "webman/push", "version": "v1.0.16", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index b9630de..e6cf42a 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'workerman/webman', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '3350338e0749881038a3e9e064a551e992eb95ee', + 'reference' => '248a5232c064774459edbfc61a1c8794ba457dd0', 'type' => 'project', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -265,6 +265,15 @@ 'aliases' => array(), 'dev_requirement' => false, ), + 'webman/cors' => array( + 'pretty_version' => 'v1.0.1', + 'version' => '1.0.1.0', + 'reference' => 'a5396634fd2ee4e7b15abba0bab45f28e1c1ad02', + 'type' => 'library', + 'install_path' => __DIR__ . '/../webman/cors', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'webman/push' => array( 'pretty_version' => 'v1.0.16', 'version' => '1.0.16.0', @@ -277,7 +286,7 @@ 'workerman/webman' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '3350338e0749881038a3e9e064a551e992eb95ee', + 'reference' => '248a5232c064774459edbfc61a1c8794ba457dd0', 'type' => 'project', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), diff --git a/vendor/webman/cors/LICENSE b/vendor/webman/cors/LICENSE new file mode 100644 index 0000000..e0b0695 --- /dev/null +++ b/vendor/webman/cors/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 webman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/webman/cors/README.md b/vendor/webman/cors/README.md new file mode 100644 index 0000000..fe6fb57 --- /dev/null +++ b/vendor/webman/cors/README.md @@ -0,0 +1,2 @@ +# cors +CORS plugin for webman diff --git a/vendor/webman/cors/composer.json b/vendor/webman/cors/composer.json new file mode 100644 index 0000000..8f587e7 --- /dev/null +++ b/vendor/webman/cors/composer.json @@ -0,0 +1,12 @@ +{ + "name": "webman/cors", + "type": "library", + "license": "MIT", + "require": { + }, + "autoload": { + "psr-4": { + "Webman\\Cors\\": "src" + } + } +} \ No newline at end of file diff --git a/vendor/webman/cors/config/plugin/webman/cors/app.php b/vendor/webman/cors/config/plugin/webman/cors/app.php new file mode 100644 index 0000000..8f9c426 --- /dev/null +++ b/vendor/webman/cors/config/plugin/webman/cors/app.php @@ -0,0 +1,4 @@ + true, +]; \ No newline at end of file diff --git a/vendor/webman/cors/config/plugin/webman/cors/middleware.php b/vendor/webman/cors/config/plugin/webman/cors/middleware.php new file mode 100644 index 0000000..67b99b4 --- /dev/null +++ b/vendor/webman/cors/config/plugin/webman/cors/middleware.php @@ -0,0 +1,19 @@ + + * @copyright walkor + * @link http://www.workerman.net/ + * @license http://www.opensource.org/licenses/mit-license.php MIT License + */ + +return [ + '' => [ + \Webman\Cors\CORS::class + ] +]; \ No newline at end of file diff --git a/vendor/webman/cors/src/CORS.php b/vendor/webman/cors/src/CORS.php new file mode 100644 index 0000000..975ba51 --- /dev/null +++ b/vendor/webman/cors/src/CORS.php @@ -0,0 +1,22 @@ +method() == 'OPTIONS' ? response('') : $next($request); + $response->withHeaders([ + 'Access-Control-Allow-Credentials' => 'true', + 'Access-Control-Allow-Origin' => $request->header('origin', '*'), + 'Access-Control-Allow-Methods' => $request->header('access-control-request-method', '*'), + 'Access-Control-Allow-Headers' => $request->header('access-control-request-headers', '*'), + ]); + + return $response; + } +} diff --git a/vendor/webman/cors/src/Install.php b/vendor/webman/cors/src/Install.php new file mode 100644 index 0000000..6d162dc --- /dev/null +++ b/vendor/webman/cors/src/Install.php @@ -0,0 +1,74 @@ + 'config/plugin/webman/cors', +); + + /** + * Install + * @return void + */ + public static function install() + { + static::installByRelation(); + } + + /** + * Uninstall + * @return void + */ + public static function uninstall() + { + self::uninstallByRelation(); + } + + /** + * installByRelation + * @return void + */ + public static function installByRelation() + { + foreach (static::$pathRelation as $source => $dest) { + if ($pos = strrpos($dest, '/')) { + $parent_dir = base_path().'/'.substr($dest, 0, $pos); + if (!is_dir($parent_dir)) { + mkdir($parent_dir, 0777, true); + } + } + //symlink(__DIR__ . "/$source", base_path()."/$dest"); + copy_dir(__DIR__ . "/$source", base_path()."/$dest"); + echo "Create $dest +"; + } + } + + /** + * uninstallByRelation + * @return void + */ + public static function uninstallByRelation() + { + foreach (static::$pathRelation as $source => $dest) { + $path = base_path()."/$dest"; + if (!is_dir($path) && !is_file($path)) { + continue; + } + echo "Remove $dest +"; + if (is_file($path) || is_link($path)) { + unlink($path); + continue; + } + remove_dir($path); + } + } + +} \ No newline at end of file diff --git a/vendor/webman/cors/src/config/plugin/webman/cors/app.php b/vendor/webman/cors/src/config/plugin/webman/cors/app.php new file mode 100644 index 0000000..8f9c426 --- /dev/null +++ b/vendor/webman/cors/src/config/plugin/webman/cors/app.php @@ -0,0 +1,4 @@ + true, +]; \ No newline at end of file diff --git a/vendor/webman/cors/src/config/plugin/webman/cors/middleware.php b/vendor/webman/cors/src/config/plugin/webman/cors/middleware.php new file mode 100644 index 0000000..67b99b4 --- /dev/null +++ b/vendor/webman/cors/src/config/plugin/webman/cors/middleware.php @@ -0,0 +1,19 @@ + + * @copyright walkor + * @link http://www.workerman.net/ + * @license http://www.opensource.org/licenses/mit-license.php MIT License + */ + +return [ + '' => [ + \Webman\Cors\CORS::class + ] +]; \ No newline at end of file