Skip to content

Commit 1e3b979

Browse files
committed
feat: (LAR-8) rebase develop
1 parent e4a72ca commit 1e3b979

File tree

8 files changed

+62
-35
lines changed

8 files changed

+62
-35
lines changed

app/Actions/Article/CreateArticleAction.php

+13-13
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ final class CreateArticleAction
1616
{
1717
public function execute(CreateArticleData $articleData): Article
1818
{
19-
if ($articleData->published_at && ! ($articleData->published_at instanceof DateTimeInterface)) {
20-
$articleData->published_at = new Carbon(
21-
time: $articleData->published_at,
19+
if ($articleData->publishedAt && ! ($articleData->publishedAt instanceof DateTimeInterface)) {
20+
$articleData->publishedAt = new Carbon(
21+
time: $articleData->publishedAt,
2222
tz: config('app.timezone')
2323
);
2424
}
@@ -28,26 +28,26 @@ public function execute(CreateArticleData $articleData): Article
2828
'title' => $articleData->title,
2929
'slug' => $articleData->title,
3030
'body' => $articleData->body,
31-
'published_at' => $articleData->published_at,
32-
'submitted_at' => $articleData->submitted_at,
33-
'approved_at' => $articleData->approved_at,
34-
'show_toc' => $articleData->show_toc,
35-
'canonical_url' => $articleData->canonical_url,
31+
'published_at' => $articleData->publishedAt,
32+
'submitted_at' => $articleData->submittedAt,
33+
'approved_at' => $articleData->approvedAt,
34+
'show_toc' => $articleData->showToc,
35+
'canonical_url' => $articleData->canonicalUrl,
3636
'user_id' => Auth::id(),
3737
]);
3838

39-
if (collect($article->associateTags)->isNotEmpty()) {
40-
$article->syncTags(tags: $article->associateTags);
39+
if (collect($articleData->tags)->isNotEmpty()) {
40+
$article->syncTags(tags: $articleData->tags);
4141
}
4242

43-
if ($article->file) {
44-
$article->addMedia($article->file->getRealPath())->toMediaCollection('media');
43+
if ($articleData->file) {
44+
$article->addMedia($articleData->file->getRealPath())->toMediaCollection('media');
4545
}
4646

4747
if ($article->isAwaitingApproval()) {
4848
// Envoi de la notification sur le channel Telegram pour la validation de l'article.
4949
Auth::user()?->notify(new PostArticleToTelegram($article));
50-
session()->flash('status', __('Merci d\'avoir soumis votre article. Vous aurez des nouvelles que lorsque nous accepterons votre article.'));
50+
session()->flash('status', __('notifications.article.created'));
5151
}
5252

5353
if (Auth::user()?->hasAnyRole(['admin', 'moderator'])) {

app/Data/Article/CreateArticleData.php

+8-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace App\Data\Article;
66

77
use Carbon\Carbon;
8+
use Illuminate\Http\UploadedFile;
89
use Spatie\LaravelData\Data;
910

1011
final class CreateArticleData extends Data
@@ -13,11 +14,12 @@ public function __construct(
1314
public string $title,
1415
public string $slug,
1516
public string $body,
16-
public Carbon $published_at,
17-
public ?Carbon $submitted_at,
18-
public ?Carbon $approved_at,
19-
public string $show_toc,
20-
public string $canonical_url,
21-
public array $associateTags = [],
17+
public string $showToc,
18+
public string $canonicalUrl,
19+
public ?Carbon $publishedAt,
20+
public ?Carbon $submittedAt,
21+
public ?Carbon $approvedAt,
22+
public ?UploadedFile $file,
23+
public array $tags = [],
2224
) {}
2325
}

app/Livewire/Articles/Create.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,11 @@ public function store(): void
5353
'title' => $this->title,
5454
'slug' => $this->slug,
5555
'body' => $this->body,
56-
'published_at' => $this->published_at,
57-
'submitted_at' => $this->submitted_at,
58-
'approved_at' => $this->approved_at,
59-
'show_toc' => $this->show_toc,
60-
'canonical_url' => $this->canonical_url,
61-
'user_id' => $user->id,
56+
'publishedAt' => $this->published_at,
57+
'submittedAt' => $this->submitted_at,
58+
'approvedAt' => $this->approved_at,
59+
'showToc' => $this->show_toc,
60+
'canonicalUrl' => $this->canonical_url,
6261
]));
6362

6463
$user->hasRole('user') ?

app/Traits/WithArticleAttributes.php

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ trait WithArticleAttributes
3939
'tags_selected' => 'nullable|array',
4040
'canonical_url' => 'nullable|url',
4141
'file' => 'nullable|image|max:2048', // 1MB Max
42+
'show_toc' => 'boolean',
4243
];
4344

4445
public function removeImage(): void

lang/en/notifications.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
return [
6+
7+
'article' => [
8+
'created' => 'Thank you for submitting your article. We will only contact you once we have accepted your article.',
9+
],
10+
11+
];

lang/fr/notifications.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
return [
6+
7+
'article' => [
8+
'created' => 'Merci d\'avoir soumis votre article. Vous aurez des nouvelles que lorsque nous accepterons votre article.',
9+
],
10+
11+
];

tests/Feature/Actions/Article/createArticleActionTest.php tests/Feature/Actions/Article/CreateArticleActionTest.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@
99

1010
beforeEach(function (): void {
1111
$this->user = $this->login();
12-
$this->tagOne = Tag::factory()->create(['name' => 'Tag 1', 'concerns' => ['article']]);
13-
$this->tagTwo = Tag::factory()->create(['name' => 'Tag 2', 'concerns' => ['article', 'post']]);
12+
$this->tagOne = Tag::factory()->create(['name' => 'Tag 1', 'concerns' => ['post']]);
13+
$this->tagTwo = Tag::factory()->create(['name' => 'Tag 2', 'concerns' => ['tutorial', 'post']]);
1414
});
1515

1616
describe(CreateArticleAction::class, function (): void {
1717
it('return the created article', function (): void {
1818
$articleDataWithoutTag = CreateArticleData::from([
1919
'title' => 'Article title',
2020
'slug' => 'Article slug',
21-
'published_at' => Now(),
22-
'submitted_at' => null,
23-
'approved_at' => null,
24-
'show_toc' => 'Article show_toc',
25-
'canonical_url' => 'Article canonical_url',
21+
'publishedAt' => now(),
22+
'submittedAt' => null,
23+
'approvedAt' => null,
24+
'showToc' => 'Article show_toc',
25+
'canonicalUrl' => 'Article canonical_url',
2626
'body' => 'Article body',
27-
'associateTags' => [],
27+
'tags' => [$this->tagOne->id, $this->tagTwo->id],
2828
]);
2929

3030
$article = app(CreateArticleAction::class)->execute($articleDataWithoutTag);
3131

3232
expect($article)
3333
->toBeInstanceOf(Article::class)
3434
->and($article->tags)
35-
->toHaveCount(0)
35+
->toHaveCount(2)
3636
->and($article->user_id)
3737
->toBe($this->user->id);
3838
});

tests/Feature/Article/SendTelegramNotificationTest.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use App\Livewire\Articles\Create;
66
use App\Models\Article;
77
use App\Notifications\PostArticleToTelegram;
8+
use Illuminate\Http\UploadedFile;
89
use Illuminate\Support\Facades\Notification;
910
use Livewire\Livewire;
1011

@@ -15,6 +16,8 @@
1516
test('Send notification on telegram after submition on article', function (): void {
1617

1718
// 2- soumission d'article par le user connecté
19+
$file = UploadedFile::fake()->image('article.png');
20+
1821
$article = Livewire::actingAs($this->user)->test(Create::class)
1922
->set('title', 'Test Article')
2023
->set('slug', 'test-article')
@@ -23,8 +26,8 @@
2326
->set('submitted_at', now())
2427
->set('approved_at', null)
2528
->set('show_toc', true)
29+
->set('file', $file)
2630
->set('canonical_url', 'https://laravel.cm')
27-
->set('associateTags', ['tag1', 'tag2'])
2831
->call('store');
2932

3033
expect(Article::count())

0 commit comments

Comments
 (0)