|
| 1 | +<?php |
| 2 | + |
| 3 | + |
| 4 | +declare(strict_types=1); |
| 5 | + |
| 6 | +namespace App\Actions\Article; |
| 7 | + |
| 8 | +use Carbon\Carbon; |
| 9 | +use DateTimeInterface; |
| 10 | +use App\Data\Article\CreateArticleData; |
| 11 | +use App\Gamify\Points\ArticleCreated; |
| 12 | +use App\Models\Article; |
| 13 | +use App\Notifications\PostArticleToTelegram; |
| 14 | +use Illuminate\Support\Facades\Auth; |
| 15 | + |
| 16 | +final class CreateArticleAction |
| 17 | +{ |
| 18 | + public function execute(CreateArticleData $articleData): Article |
| 19 | + { |
| 20 | + if ($articleData->published_at && !($articleData->published_at instanceof DateTimeInterface)) { |
| 21 | + $articleData->published_at = new Carbon( |
| 22 | + time: $articleData->published_at, |
| 23 | + tz: config('app.timezone') |
| 24 | + ); |
| 25 | + } |
| 26 | + |
| 27 | + /** @var Article $article */ |
| 28 | + $article = Article::query()->create([ |
| 29 | + 'title' => $articleData->title, |
| 30 | + 'slug' => $articleData->title, |
| 31 | + 'body' => $articleData->body, |
| 32 | + 'published_at' => $articleData->published_at, |
| 33 | + 'submitted_at' => $articleData->submitted_at, |
| 34 | + 'approved_at' => $articleData->approved_at, |
| 35 | + 'show_toc' => $articleData->show_toc, |
| 36 | + 'canonical_url' => $articleData->canonical_url, |
| 37 | + 'user_id' => Auth::id(), |
| 38 | + ]); |
| 39 | + |
| 40 | + if (collect($article->associateTags)->isNotEmpty()) { |
| 41 | + $article->syncTags(tags: $article->associateTags); |
| 42 | + } |
| 43 | + |
| 44 | + if ($article->file) { |
| 45 | + $article->addMedia($article->file->getRealPath())->toMediaCollection('media'); |
| 46 | + } |
| 47 | + |
| 48 | + if ($article->isAwaitingApproval()) { |
| 49 | + // Envoi de la notification sur le channel Telegram pour la validation de l'article. |
| 50 | + Auth::user()?->notify(new PostArticleToTelegram($article)); |
| 51 | + session()->flash('status', __('Merci d\'avoir soumis votre article. Vous aurez des nouvelles que lorsque nous accepterons votre article.')); |
| 52 | + } |
| 53 | + |
| 54 | + if (Auth::user()?->hasAnyRole(['admin', 'moderator'])) { |
| 55 | + givePoint(new ArticleCreated($article)); |
| 56 | + } |
| 57 | + |
| 58 | + |
| 59 | + return $article; |
| 60 | + } |
| 61 | +} |
0 commit comments