-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DO NOT MERGE] Add user event to Laravel #2509
Changes from all commits
9e86f5b
9f99639
f7c7463
94490b8
be5967c
07c78ab
8a019ce
87c3889
132912b
d397bec
3b0e776
9e0e3dd
297311c
4fa5f55
e3a2c2b
32a08f0
0441715
bfa6192
dfe4ef9
87d5b0f
c9469c7
5b7943b
e90aafd
ad93ecc
33d661e
c3e64fa
2946774
33f2a98
9d5de49
4d40ccf
bf37a1e
c1a2b2d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,3 +60,4 @@ package.json | |
packages.json | ||
package-lock.json | ||
yarn.lock | ||
cookies.txt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\Http\Request; | ||
use Illuminate\Support\Facades\Auth; | ||
use Illuminate\Auth\Events\Registered; | ||
use Illuminate\Support\Facades\Hash; | ||
use Illuminate\Http\RedirectResponse; | ||
use App\Providers\RouteServiceProvider; | ||
use App\Models\User; | ||
|
||
class LoginTestController extends Controller | ||
{ | ||
/** | ||
* @param \Illuminate\Http\Request $request | ||
* @return \Illuminate\Http\Response | ||
*/ | ||
public function auth(Request $request) | ||
{ | ||
$credentials = [ | ||
'email' => $request->get('email'), | ||
'password' => 'password', | ||
]; | ||
|
||
if (Auth::attempt($credentials)) { | ||
return response('Login successful', 200); | ||
} | ||
|
||
return response('Invalid credentials', 403); | ||
} | ||
|
||
public function register(Request $request): RedirectResponse | ||
{ | ||
$request->validate([ | ||
'name' => ['required'], | ||
'email' => ['required'], | ||
'password' => ['required'], | ||
]); | ||
|
||
$user = User::create([ | ||
'name' => $request->name, | ||
'email' => $request->email, | ||
'password' => Hash::make($request->password), | ||
]); | ||
|
||
event(new Registered($user)); | ||
|
||
Auth::login($user); | ||
|
||
return redirect('/simple'); | ||
} | ||
|
||
public function behind_auth() | ||
{ | ||
return "page behind auth"; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,11 +46,11 @@ | |
'mysql' => [ | ||
'driver' => 'mysql', | ||
'url' => env('DATABASE_URL'), | ||
'host' => env('DB_HOST', '127.0.0.1'), | ||
'host' => env('DB_HOST', 'mysql_integration'), | ||
'port' => env('DB_PORT', '3306'), | ||
'database' => env('DB_DATABASE', 'forge'), | ||
'username' => env('DB_USERNAME', 'forge'), | ||
'password' => env('DB_PASSWORD', ''), | ||
'database' => env('DB_DATABASE', 'test'), | ||
'username' => env('DB_USERNAME', 'test'), | ||
'password' => env('DB_PASSWORD', 'test'), | ||
Comment on lines
+49
to
+53
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe these should be set in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't disagree with having this on the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No that's alright :) It's working. As long as we have some "history of why" in this PR, that's ok for me |
||
'unix_socket' => env('DB_SOCKET', ''), | ||
'charset' => 'utf8mb4', | ||
'collation' => 'utf8mb4_unicode_ci', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just for my understanding and future versions of the framework: What does this have to be set?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not common in Laravel having to set this odd thing :( but this is the reason https://laravel.com/docs/master/migrations#index-lengths-mysql-mariadb