From dc80544b9456a31c1cd1c11f4d025d0d8a78638c Mon Sep 17 00:00:00 2001 From: Bertyn Boulikou Date: Sun, 17 Aug 2025 18:54:59 +0200 Subject: [PATCH 1/7] fix: lowercase the name of the file to match auto import --- resources/js/pages/index.vue | 319 +++++++++++++++++++++++++++++++++++ 1 file changed, 319 insertions(+) create mode 100644 resources/js/pages/index.vue diff --git a/resources/js/pages/index.vue b/resources/js/pages/index.vue new file mode 100644 index 0000000..20ee494 --- /dev/null +++ b/resources/js/pages/index.vue @@ -0,0 +1,319 @@ + + + From aaf6abe78f9ab05beaaaf277e5bbefcce6d514ea Mon Sep 17 00:00:00 2001 From: Bertyn Boulikou Date: Sun, 17 Aug 2025 20:02:29 +0200 Subject: [PATCH 2/7] feat: add social provider columns to users table, socialite --- .env.example | 5 + .gitignore | 2 + .../Controllers/SocialProviderController.php | 59 +++ composer.json | 1 + composer.lock | 373 +++++++++++++++++- config/services.php | 5 + ...8_17_164746_add_social_provider_column.php | 34 ++ 7 files changed, 478 insertions(+), 1 deletion(-) create mode 100644 app/Http/Controllers/SocialProviderController.php create mode 100644 database/migrations/2025_08_17_164746_add_social_provider_column.php diff --git a/.env.example b/.env.example index 35db1dd..89b795f 100644 --- a/.env.example +++ b/.env.example @@ -20,6 +20,11 @@ LOG_STACK=single LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug +GOOGLE_CLIENT_ID=test +GOOGLE_CLIENT_SECRET= +GOOGLE_REDIRECT_URL=http://localhost/auth/google/callback + + DB_CONNECTION=sqlite # DB_HOST=127.0.0.1 # DB_PORT=3306 diff --git a/.gitignore b/.gitignore index 83ec5b7..05243f4 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ /.nova /.phpunit.cache /.zed +/.pnpm-store /auth.json /node_modules /public/build @@ -26,3 +27,4 @@ components.d.ts resources/js/routes resources/js/actions resources/js/wayfinder + diff --git a/app/Http/Controllers/SocialProviderController.php b/app/Http/Controllers/SocialProviderController.php new file mode 100644 index 0000000..e85c914 --- /dev/null +++ b/app/Http/Controllers/SocialProviderController.php @@ -0,0 +1,59 @@ +redirect(); + } + + public function handleProviderCallback($provider, Request $request) + { + $socialUser = Socialite::driver($provider)->user(); + + + try { + + if (User::where([['email', '=', $socialUser->getEmail()], ['provider', null]])->exists()) { + return redirect()->route('login')->withErrors(['email' => 'Cet email utilise une autre méthode de connexion']); + } + + $user = User::where([ + 'provider' => $provider, + 'provider_id' => $socialUser->getId() + ])->first(); + + if (!$user) { + $user = User::create([ + 'name' => $socialUser->getName(), + 'email' => $socialUser->getEmail(), + 'provider' => $provider, + 'provider_id' => $socialUser->getId(), + 'provider_token' => $socialUser->token, + 'email_verified_at' => now(), + 'avatar' => $socialUser->getAvatar(), + ]); + } else { + + $user->provider_token = $socialUser->token; + $user->save(); + } + + + Auth::login($user); + + return redirect()->route('dashboard'); + } catch (\Exception $e) { + return redirect()->route('login')->withErrors(['email' => 'Une erreur est survenue lors de la connexion']); + } + } +} diff --git a/composer.json b/composer.json index 1a8ae63..25db0ee 100644 --- a/composer.json +++ b/composer.json @@ -13,6 +13,7 @@ "inertiajs/inertia-laravel": "^2.0", "laravel/fortify": "^1.28", "laravel/framework": "^12.0", + "laravel/socialite": "^5.23", "laravel/tinker": "^2.10.1", "laravel/wayfinder": "^0.1.6" }, diff --git a/composer.lock b/composer.lock index 695c83d..f6e7802 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": "c7d01a894b29be9622b874f2d51920a8", + "content-hash": "5ab8c68bd17cbd549fd38d58c15db927", "packages": [ { "name": "bacon/bacon-qr-code", @@ -613,6 +613,69 @@ ], "time": "2025-03-06T22:45:56+00:00" }, + { + "name": "firebase/php-jwt", + "version": "v6.11.1", + "source": { + "type": "git", + "url": "https://github.com/firebase/php-jwt.git", + "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", + "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "^7.4", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.5", + "psr/cache": "^2.0||^3.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0" + }, + "suggest": { + "ext-sodium": "Support EdDSA (Ed25519) signatures", + "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" + }, + "type": "library", + "autoload": { + "psr-4": { + "Firebase\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" + }, + { + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" + } + ], + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt", + "keywords": [ + "jwt", + "php" + ], + "support": { + "issues": "https://github.com/firebase/php-jwt/issues", + "source": "https://github.com/firebase/php-jwt/tree/v6.11.1" + }, + "time": "2025-04-09T20:32:01+00:00" + }, { "name": "fruitcake/php-cors", "version": "v1.3.0", @@ -1628,6 +1691,78 @@ }, "time": "2025-03-19T13:51:03+00:00" }, + { + "name": "laravel/socialite", + "version": "v5.23.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/socialite.git", + "reference": "e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/socialite/zipball/e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5", + "reference": "e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "firebase/php-jwt": "^6.4", + "guzzlehttp/guzzle": "^6.0|^7.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "league/oauth1-client": "^1.11", + "php": "^7.2|^8.0", + "phpseclib/phpseclib": "^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "phpstan/phpstan": "^1.12.23", + "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Socialite": "Laravel\\Socialite\\Facades\\Socialite" + }, + "providers": [ + "Laravel\\Socialite\\SocialiteServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Socialite\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.", + "homepage": "https://laravel.com", + "keywords": [ + "laravel", + "oauth" + ], + "support": { + "issues": "https://github.com/laravel/socialite/issues", + "source": "https://github.com/laravel/socialite" + }, + "time": "2025-07-23T14:16:08+00:00" + }, { "name": "laravel/tinker", "version": "v2.10.1", @@ -2133,6 +2268,82 @@ ], "time": "2024-09-21T08:32:55+00:00" }, + { + "name": "league/oauth1-client", + "version": "v1.11.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth1-client.git", + "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055", + "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-openssl": "*", + "guzzlehttp/guzzle": "^6.0|^7.0", + "guzzlehttp/psr7": "^1.7|^2.0", + "php": ">=7.1||>=8.0" + }, + "require-dev": { + "ext-simplexml": "*", + "friendsofphp/php-cs-fixer": "^2.17", + "mockery/mockery": "^1.3.3", + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5||9.5" + }, + "suggest": { + "ext-simplexml": "For decoding XML-based responses." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev", + "dev-develop": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "League\\OAuth1\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Corlett", + "email": "bencorlett@me.com", + "homepage": "http://www.webcomm.com.au", + "role": "Developer" + } + ], + "description": "OAuth 1.0 Client Library", + "keywords": [ + "Authentication", + "SSO", + "authorization", + "bitbucket", + "identity", + "idp", + "oauth", + "oauth1", + "single sign on", + "trello", + "tumblr", + "twitter" + ], + "support": { + "issues": "https://github.com/thephpleague/oauth1-client/issues", + "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0" + }, + "time": "2024-12-10T19:59:05+00:00" + }, { "name": "league/uri", "version": "7.5.1", @@ -2878,6 +3089,56 @@ }, "time": "2024-05-08T12:36:18+00:00" }, + { + "name": "paragonie/random_compat", + "version": "v9.99.100", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "shasum": "" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "time": "2020-10-15T08:29:30+00:00" + }, { "name": "phpoption/phpoption", "version": "1.9.3", @@ -2953,6 +3214,116 @@ ], "time": "2024-07-20T21:41:07+00:00" }, + { + "name": "phpseclib/phpseclib", + "version": "3.0.46", + "source": { + "type": "git", + "url": "https://github.com/phpseclib/phpseclib.git", + "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", + "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", + "shasum": "" + }, + "require": { + "paragonie/constant_time_encoding": "^1|^2|^3", + "paragonie/random_compat": "^1.4|^2.0|^9.99.99", + "php": ">=5.6.1" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "suggest": { + "ext-dom": "Install the DOM extension to load XML formatted public keys.", + "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", + "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", + "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", + "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." + }, + "type": "library", + "autoload": { + "files": [ + "phpseclib/bootstrap.php" + ], + "psr-4": { + "phpseclib3\\": "phpseclib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jim Wigginton", + "email": "terrafrost@php.net", + "role": "Lead Developer" + }, + { + "name": "Patrick Monnerat", + "email": "pm@datasphere.ch", + "role": "Developer" + }, + { + "name": "Andreas Fischer", + "email": "bantu@phpbb.com", + "role": "Developer" + }, + { + "name": "Hans-Jürgen Petrich", + "email": "petrich@tronic-media.com", + "role": "Developer" + }, + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "role": "Developer" + } + ], + "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", + "homepage": "http://phpseclib.sourceforge.net", + "keywords": [ + "BigInteger", + "aes", + "asn.1", + "asn1", + "blowfish", + "crypto", + "cryptography", + "encryption", + "rsa", + "security", + "sftp", + "signature", + "signing", + "ssh", + "twofish", + "x.509", + "x509" + ], + "support": { + "issues": "https://github.com/phpseclib/phpseclib/issues", + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.46" + }, + "funding": [ + { + "url": "https://github.com/terrafrost", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpseclib", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib", + "type": "tidelift" + } + ], + "time": "2025-06-26T16:29:55+00:00" + }, { "name": "pragmarx/google2fa", "version": "v8.0.3", diff --git a/config/services.php b/config/services.php index 6182e4b..879467b 100644 --- a/config/services.php +++ b/config/services.php @@ -34,5 +34,10 @@ 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), ], ], + 'google' => [ + 'client_id' => env('GOOGLE_CLIENT_ID'), + 'client_secret' => env('GOOGLE_CLIENT_SECRET'), + 'redirect' => env('GOOGLE_REDIRECT_URI'), + ], ]; diff --git a/database/migrations/2025_08_17_164746_add_social_provider_column.php b/database/migrations/2025_08_17_164746_add_social_provider_column.php new file mode 100644 index 0000000..8c6b023 --- /dev/null +++ b/database/migrations/2025_08_17_164746_add_social_provider_column.php @@ -0,0 +1,34 @@ +string('provider')->nullable(); + $table->string('provider_id')->nullable(); + $table->string('provider_token')->nullable(); + $table->string('password')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('provider'); + $table->dropColumn('provider_id'); + $table->dropColumn('provider_token'); + $table->string('password')->change(); + }); + } +}; From cbefb65bd3ce91b5cf586f20a9e6a29f074494bb Mon Sep 17 00:00:00 2001 From: Bertyn Boulikou Date: Sun, 17 Aug 2025 22:02:37 +0200 Subject: [PATCH 3/7] feat: implement social authentication routes and update controllers --- app/Http/Controllers/SocialProviderController.php | 2 +- app/Providers/AppServiceProvider.php | 12 +++++++++++- resources/js/pages/auth/login.vue | 3 ++- resources/js/pages/auth/register.vue | 3 ++- routes/auth.php | 13 +++++++++++++ 5 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 routes/auth.php diff --git a/app/Http/Controllers/SocialProviderController.php b/app/Http/Controllers/SocialProviderController.php index e85c914..6938e05 100644 --- a/app/Http/Controllers/SocialProviderController.php +++ b/app/Http/Controllers/SocialProviderController.php @@ -1,6 +1,6 @@ loadAuthRoutes(); + } + + /** + * Load the auth routes. + */ + private function loadAuthRoutes(): void + { + Route::middleware('web') + ->group(base_path('routes/auth.php')); } } diff --git a/resources/js/pages/auth/login.vue b/resources/js/pages/auth/login.vue index 79eb8f9..68e30a4 100644 --- a/resources/js/pages/auth/login.vue +++ b/resources/js/pages/auth/login.vue @@ -1,6 +1,5 @@