mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Add profile model, migration and controller
Also added User model observer to create a profile when a new user is created.
This commit is contained in:
parent
2855c83c50
commit
9dd58c5abd
6 changed files with 93 additions and 1 deletions
10
app/Http/Controllers/ProfileController.php
Normal file
10
app/Http/Controllers/ProfileController.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
class ProfileController extends Controller
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
25
app/Observer/UserObserver.php
Normal file
25
app/Observer/UserObserver.php
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Observers;
|
||||||
|
|
||||||
|
use App\{Profile, User};
|
||||||
|
|
||||||
|
class UserObserver
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Listen to the User created event.
|
||||||
|
*
|
||||||
|
* @param \App\User $user
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function saved(User $user)
|
||||||
|
{
|
||||||
|
if($user->has('profile')->count() == 0) {
|
||||||
|
$profile = new Profile;
|
||||||
|
$profile->user_id = $user->id;
|
||||||
|
$profile->username = $user->username;
|
||||||
|
$profile->save();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
10
app/Profile.php
Normal file
10
app/Profile.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Profile extends Model
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
namespace App\Providers;
|
namespace App\Providers;
|
||||||
|
|
||||||
|
use App\User;
|
||||||
|
use App\Observers\UserObserver;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
|
||||||
class AppServiceProvider extends ServiceProvider
|
class AppServiceProvider extends ServiceProvider
|
||||||
|
@ -13,7 +15,7 @@ class AppServiceProvider extends ServiceProvider
|
||||||
*/
|
*/
|
||||||
public function boot()
|
public function boot()
|
||||||
{
|
{
|
||||||
//
|
User::observe(UserObserver::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -26,4 +26,9 @@ class User extends Authenticatable
|
||||||
protected $hidden = [
|
protected $hidden = [
|
||||||
'password', 'remember_token',
|
'password', 'remember_token',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
public function profile()
|
||||||
|
{
|
||||||
|
return $this->hasOne(Profile::class);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
|
||||||
|
class CreateProfilesTable extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::create('profiles', function (Blueprint $table) {
|
||||||
|
$table->increments('id');
|
||||||
|
$table->unsignedInteger('user_id')->nullable();
|
||||||
|
$table->string('username')->nullable()->unique()->index();
|
||||||
|
$table->string('name')->nullable();
|
||||||
|
$table->string('bio', 150)->nullable();
|
||||||
|
$table->string('location')->nullable();
|
||||||
|
$table->string('website')->nullable();
|
||||||
|
$table->string('remote_url')->nullable();
|
||||||
|
$table->text('keybase_proof')->nullable();
|
||||||
|
$table->boolean('is_private')->default(false);
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('profiles');
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue