-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,332 additions
and
482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
final class Goal extends Model | ||
{ | ||
use HasFactory; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
final class Project extends Model | ||
{ | ||
use HasFactory; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
final class Step extends Model | ||
{ | ||
use HasFactory; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Models; | ||
|
||
// use Illuminate\Contracts\Auth\MustVerifyEmail; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?php | ||
|
||
use Laravel\Sanctum\Sanctum; | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Stateful Domains | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Requests from the following domains / hosts will receive stateful API | ||
| authentication cookies. Typically, these should include your local | ||
| and production domains which access your API via a frontend SPA. | ||
| | ||
*/ | ||
|
||
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( | ||
'%s%s', | ||
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', | ||
Sanctum::currentApplicationUrlWithPort() | ||
))), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Sanctum Guards | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This array contains the authentication guards that will be checked when | ||
| Sanctum is trying to authenticate a request. If none of these guards | ||
| are able to authenticate the request, Sanctum will use the bearer | ||
| token that's present on an incoming request for authentication. | ||
| | ||
*/ | ||
|
||
'guard' => ['web'], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Expiration Minutes | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value controls the number of minutes until an issued token will be | ||
| considered expired. This will override any values set in the token's | ||
| "expires_at" attribute, but first-party sessions are not affected. | ||
| | ||
*/ | ||
|
||
'expiration' => null, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Token Prefix | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Sanctum can prefix new tokens in order to take advantage of numerous | ||
| security scanning initiatives maintained by open source platforms | ||
| that notify developers if they commit tokens into repositories. | ||
| | ||
| See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning | ||
| | ||
*/ | ||
|
||
'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Sanctum Middleware | ||
|-------------------------------------------------------------------------- | ||
| | ||
| When authenticating your first-party SPA with Sanctum you may need to | ||
| customize some of the middleware Sanctum uses while processing the | ||
| request. You may change the middleware listed below as required. | ||
| | ||
*/ | ||
|
||
'middleware' => [ | ||
'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, | ||
'encrypt_cookies' => Illuminate\Cookie\Middleware\EncryptCookies::class, | ||
'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class, | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Database\Factories; | ||
|
||
use App\Models\Project; | ||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
|
||
/** | ||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Goal> | ||
*/ | ||
class GoalFactory extends Factory | ||
{ | ||
/** | ||
* Define the model's default state. | ||
* | ||
* @return array<string, mixed> | ||
*/ | ||
public function definition(): array | ||
{ | ||
return [ | ||
'project_id' => Project::factory()->create(), | ||
'name' => $this->faker->name(), | ||
'term_in_months' => $this->faker->randomDigit(), | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Database\Factories; | ||
|
||
use App\Models\User; | ||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
|
||
/** | ||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Project> | ||
*/ | ||
class ProjectFactory extends Factory | ||
{ | ||
/** | ||
* Define the model's default state. | ||
* | ||
* @return array<string, mixed> | ||
*/ | ||
public function definition(): array | ||
{ | ||
return [ | ||
'user_id' => User::factory()->create(), | ||
'name' => fake()->domainName(), | ||
'description' => fake()->text(), | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Database\Factories; | ||
|
||
use App\Models\Goal; | ||
use Carbon\CarbonImmutable; | ||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
|
||
/** | ||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Step> | ||
*/ | ||
class StepFactory extends Factory | ||
{ | ||
/** | ||
* Define the model's default state. | ||
* | ||
* @return array<string, mixed> | ||
*/ | ||
public function definition(): array | ||
{ | ||
return [ | ||
'goal_id' => Goal::factory()->create(), | ||
'name' => $this->faker->name(), | ||
'started_at' => CarbonImmutable::now(), | ||
'finished_at' => CarbonImmutable::now()->addWeek(), | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
database/migrations/2024_12_05_141257_create_personal_access_tokens_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::create('personal_access_tokens', function (Blueprint $table) { | ||
$table->id(); | ||
$table->morphs('tokenable'); | ||
$table->string('name'); | ||
$table->string('token', 64)->unique(); | ||
$table->text('abilities')->nullable(); | ||
$table->timestamp('last_used_at')->nullable(); | ||
$table->timestamp('expires_at')->nullable(); | ||
$table->timestamps(); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
Schema::dropIfExists('personal_access_tokens'); | ||
} | ||
}; |
36 changes: 36 additions & 0 deletions
36
database/migrations/2024_12_06_100335_create_projects_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::create('projects', function (Blueprint $table) { | ||
$table->id(); | ||
$table->foreignId('user_id') | ||
->constrained('users') | ||
->cascadeOnDelete(); | ||
|
||
$table->string('name')->index(); | ||
$table->string('image')->nullable(); | ||
$table->text('description')->nullable(); | ||
$table->timestamps(); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
Schema::dropIfExists('projects'); | ||
} | ||
}; |
34 changes: 34 additions & 0 deletions
34
database/migrations/2024_12_06_100520_create_goals_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::create('goals', function (Blueprint $table) { | ||
$table->id(); | ||
$table->foreignId('project_id') | ||
->constrained('projects') | ||
->cascadeOnDelete(); | ||
$table->string('name'); | ||
$table->integer('term_in_months')->default(1); | ||
$table->timestamps(); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
Schema::dropIfExists('goals'); | ||
} | ||
}; |
36 changes: 36 additions & 0 deletions
36
database/migrations/2024_12_06_100528_create_steps_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::create('steps', function (Blueprint $table) { | ||
$table->id(); | ||
$table->foreignId('goal_id') | ||
->constrained('goals') | ||
->cascadeOnDelete(); | ||
|
||
$table->string('name'); | ||
$table->timestamp('started_at')->nullable(); | ||
$table->timestamp('finished_at')->nullable(); | ||
$table->timestamps(); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
Schema::dropIfExists('steps'); | ||
} | ||
}; |
Oops, something went wrong.