forked from CodelyTV/php-ddd-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Video.php
81 lines (67 loc) · 1.75 KB
/
Video.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
declare(strict_types = 1);
namespace CodelyTv\Mooc\Videos\Domain;
use CodelyTv\Mooc\Shared\Domain\Courses\CourseId;
use CodelyTv\Mooc\Shared\Domain\Videos\VideoUrl;
use CodelyTv\Shared\Domain\Aggregate\AggregateRoot;
final class Video extends AggregateRoot
{
private $id;
private $type;
private $title;
private $url;
private $courseId;
public function __construct(VideoId $id, VideoType $type, VideoTitle $title, VideoUrl $url, CourseId $courseId)
{
$this->id = $id;
$this->type = $type;
$this->title = $title;
$this->url = $url;
$this->courseId = $courseId;
}
public static function create(
VideoId $id,
VideoType $type,
VideoTitle $title,
VideoUrl $url,
CourseId $courseId
): Video {
$video = new self($id, $type, $title, $url, $courseId);
$video->record(
new VideoCreatedDomainEvent(
$id->value(),
[
'type' => $type->value(),
'title' => $title->value(),
'url' => $url->value(),
'courseId' => $courseId->value(),
]
)
);
return $video;
}
public function updateTitle(VideoTitle $newTitle): void
{
$this->title = $newTitle;
}
public function id(): VideoId
{
return $this->id;
}
public function type(): VideoType
{
return $this->type;
}
public function title(): VideoTitle
{
return $this->title;
}
public function url(): VideoUrl
{
return $this->url;
}
public function courseId(): CourseId
{
return $this->courseId;
}
}