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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new 'delete video' use case #315

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/Mooc/Videos/Application/Delete/VideoDeleter.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

declare(strict_types=1);

namespace CodelyTv\Mooc\Videos\Application\Delete;

use CodelyTv\Mooc\Videos\Domain\VideoFinder;
use CodelyTv\Mooc\Videos\Domain\VideoId;
use CodelyTv\Mooc\Videos\Domain\VideoRepository;

final class VideoDeleter
{
private readonly VideoFinder $finder;

public function __construct(private readonly VideoRepository $repository)
{
$this->finder = new VideoFinder($repository);
}

public function __invoke(VideoId $id): void
{
$video = $this->finder->__invoke($id);
$this->repository->delete($video);
}
}
2 changes: 2 additions & 0 deletions src/Mooc/Videos/Domain/VideoRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ public function save(Video $video): void;
public function search(VideoId $id): ?Video;

public function searchByCriteria(Criteria $criteria): Videos;

public function delete(Video $video): void;
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,9 @@ public function searchByCriteria(Criteria $criteria): Videos

return new Videos($videos);
}

public function delete(Video $video): void
{
$this->remove($video);
}
}