Skip to content
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

Feature/lar 8 notification soumission darticle #148

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions app/Actions/Article/CreateArticleAction.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?php

declare(strict_types=1);

namespace App\Actions\Article;

use App\Data\Article\CreateArticleData;
use App\Gamify\Points\ArticleCreated;
use App\Models\Article;
use App\Notifications\PostArticleToTelegram;
use Carbon\Carbon;
use DateTimeInterface;
use Illuminate\Support\Facades\Auth;

final class CreateArticleAction
{
public function execute(CreateArticleData $articleData): Article
{
if ($articleData->publishedAt && ! ($articleData->publishedAt instanceof DateTimeInterface)) {
$articleData->publishedAt = new Carbon(
time: $articleData->publishedAt,
tz: config('app.timezone')
);
}

/** @var Article $article */
$article = Article::query()->create([
'title' => $articleData->title,
'slug' => $articleData->title,
'body' => $articleData->body,
'published_at' => $articleData->publishedAt,
'submitted_at' => $articleData->submittedAt,
'approved_at' => $articleData->approvedAt,
'show_toc' => $articleData->showToc,
'canonical_url' => $articleData->canonicalUrl,
'user_id' => Auth::id(),
]);

if (collect($articleData->tags)->isNotEmpty()) {
$article->syncTags(tags: $articleData->tags);
}

if ($articleData->file) {
$article->addMedia($articleData->file->getRealPath())->toMediaCollection('media');
}

if ($article->isAwaitingApproval()) {
// Envoi de la notification sur le channel Telegram pour la validation de l'article.
Auth::user()?->notify(new PostArticleToTelegram($article));
session()->flash('status', __('notifications.article.created'));
}

if (Auth::user()?->hasAnyRole(['admin', 'moderator'])) {
givePoint(new ArticleCreated($article));
}

return $article;
}
}
25 changes: 25 additions & 0 deletions app/Data/Article/CreateArticleData.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

declare(strict_types=1);

namespace App\Data\Article;

use Carbon\Carbon;
use Illuminate\Http\UploadedFile;
use Spatie\LaravelData\Data;

final class CreateArticleData extends Data
{
public function __construct(
public string $title,
public string $slug,
public string $body,
public string $showToc,
public string $canonicalUrl,
public ?Carbon $publishedAt,
public ?Carbon $submittedAt,
public ?Carbon $approvedAt,
public ?UploadedFile $file,
public array $tags = [],
) {}
}
25 changes: 25 additions & 0 deletions app/Gamify/Points/ArticleCreated.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

declare(strict_types=1);

namespace App\Gamify\Points;

use App\Models\Article;
use App\Models\User;
use QCod\Gamify\PointType;

final class ArticleCreated extends PointType
{
public int $points = 50;

public function __construct(Article $subject)
{
$this->subject = $subject;
}

public function payee(): User
{
// @phpstan-ignore-next-line
return $this->getSubject()->user;
}
}
51 changes: 9 additions & 42 deletions app/Livewire/Articles/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@

namespace App\Livewire\Articles;

use App\Events\ArticleWasSubmittedForApproval;
use App\Gamify\Points\PostCreated;
use App\Models\Article;
use App\Actions\Article\CreateArticleAction;
use App\Data\Article\CreateArticleData;
use App\Models\Tag;
use App\Models\User;
use App\Traits\WithArticleAttributes;
use App\Traits\WithTagsAssociation;
use Carbon\Carbon;
use DateTimeInterface;
use Illuminate\Contracts\View\View;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
Expand Down Expand Up @@ -52,46 +49,16 @@ public function store(): void
/** @var User $user */
$user = Auth::user();

if ($this->published_at && ! ($this->published_at instanceof DateTimeInterface)) {
$this->published_at = new Carbon(
time: $this->published_at,
tz: config('app.timezone')
);
}

/** @var Article $article */
$article = Article::create([
$article = app(CreateArticleAction::class)->execute(CreateArticleData::from([
'title' => $this->title,
'slug' => $this->slug,
'body' => $this->body,
'published_at' => $this->published_at,
'submitted_at' => $this->submitted_at,
'approved_at' => $this->approved_at,
'show_toc' => $this->show_toc,
'canonical_url' => $this->canonical_url,
'user_id' => $user->id,
]);

if (collect($this->associateTags)->isNotEmpty()) {
$article->syncTags(tags: $this->associateTags);
}

if ($this->file) {
$article->addMedia($this->file->getRealPath())->toMediaCollection('media');
}

if ($article->isAwaitingApproval()) {
if (app()->environment('production')) {
// Envoi de la notification sur le channel Telegram pour la validation de l'article.
event(new ArticleWasSubmittedForApproval($article));
}

session()->flash('status', __('Merci d\'avoir soumis votre article. Vous aurez des nouvelles que lorsque nous accepterons votre article.'));
}

if ($user->hasAnyRole(['admin', 'moderator'])) {
givePoint(new PostCreated($article));
}
'publishedAt' => $this->published_at,
'submittedAt' => $this->submitted_at,
'approvedAt' => $this->approved_at,
'showToc' => $this->show_toc,
'canonicalUrl' => $this->canonical_url,
]));

$user->hasRole('user') ?
$this->redirectRoute('dashboard') :
Expand Down
1 change: 1 addition & 0 deletions app/Traits/WithArticleAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ trait WithArticleAttributes
'tags_selected' => 'nullable|array',
'canonical_url' => 'nullable|url',
'file' => 'nullable|image|max:2048', // 1MB Max
'show_toc' => 'boolean',
];

public function removeImage(): void
Expand Down
Loading