-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.php
More file actions
313 lines (259 loc) · 6.63 KB
/
Project.php
File metadata and controls
313 lines (259 loc) · 6.63 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<?php
namespace App\Entity\Project;
use App\Entity\PublishableInterface;
use App\Entity\SocialNetwork;
use App\Entity\Organization\Organization;
use App\Entity\User\User;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\Project\ProjectRepository")
* @ORM\Table(name="project__projects")
* @ORM\HasLifecycleCallbacks
*/
class Project implements \JsonSerializable, PublishableInterface
{
/**
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* @ORM\Column(type="integer")
*/
protected $id;
/**
* @ORM\Column(type="string", length=150, unique=true)
*/
protected $name;
/**
* @ORM\Column(type="string", length=150, unique=true)
*/
protected $slug;
/**
* @ORM\Column(type="string", length=255)
*/
protected $shortDescription;
/**
* @ORM\Column(type="text")
*/
protected $description;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\User\User")
*/
protected $user;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Organization\Organization")
*/
protected $organization;
/**
* @ORM\OneToMany(targetEntity="App\Entity\Project\Member", mappedBy="project")
*/
protected $members;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
protected $websiteUrl;
/**
* @ORM\OneToMany(targetEntity="SocialNetwork", mappedBy="project", cascade={"persist", "remove"})
*/
protected $socialNetworks;
/**
* @ORM\Column(type="boolean")
*/
protected $isPublished;
/**
* @ORM\Column(type="datetime")
*/
protected $createdAt;
/**
* @ORM\Column(type="datetime")
*/
protected $updatedAt;
public function __construct()
{
$this->socialNetworks = new ArrayCollection();
$this->members = new ArrayCollection();
$this->isPublished = false;
}
/**
* @ORM\PrePersist()
*/
public function prePersist()
{
$this->createdAt = $this->updatedAt = new \DateTime();
}
/**
* @ORM\PreUpdate()
*/
public function preUpdate()
{
$this->updatedAt = new \DateTime();
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getId(): int
{
return $this->id;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getName(): string
{
return $this->name;
}
public function setSlug(string $slug): self
{
$this->slug = $slug;
return $this;
}
public function getSlug(): string
{
return $this->slug;
}
public function setShortDescription(string $shortDescription): self
{
$this->shortDescription = $shortDescription;
return $this;
}
public function getShortDescription(): string
{
return $this->shortDescription;
}
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
public function getDescription(): string
{
return $this->description;
}
public function setUser(User $user): self
{
$this->user = $user;
return $this;
}
public function getUser(): User
{
return $this->user;
}
public function setOrganization(Organization $organization = null): self
{
$this->organization = $organization;
return $this;
}
public function getOrganization(): ?Organization
{
return $this->organization;
}
public function isTeamMember(User $user): bool
{
if ($this->user === $user) {
return true;
}
if ($this->organization === null) {
return false;
}
foreach ($this->organization->getMembers() as $member) {
if ($member->getUser() === $user) {
return true;
}
}
return false;
}
public function setWebsiteUrl(string $websiteUrl = null): self
{
$this->websiteUrl = $websiteUrl;
return $this;
}
public function getWebsiteUrl(): ?string
{
return $this->websiteUrl;
}
public function addSocialNetwork(SocialNetwork $socialNetwork): self
{
$this->socialNetworks->add($socialNetwork);
return $this;
}
public function removeSocialNetwork(SocialNetwork $socialNetwork): self
{
$this->socialNetworks->removeElement($socialNetwork);
return $this;
}
public function getSocialNetworks()
{
return $this->socialNetworks;
}
public function addMember(Member $member): self
{
$this->members->add($member);
return $this;
}
public function hasMember(Member $member): bool
{
return $this->members->contains($member);
}
public function removeMember(Member $member): self
{
$this->members->removeElement($member);
return $this;
}
public function getMembers()
{
return $this->members;
}
public function publish(): PublishableInterface
{
$this->isPublished = true;
return $this;
}
public function unpublish(): PublishableInterface
{
$this->isPublished = false;
return $this;
}
public function isPublished(): bool
{
return $this->isPublished;
}
public function setCreatedAt(\DateTime $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getCreatedAt(): \DateTime
{
return $this->createdAt;
}
public function setUpdatedAt(\DateTime $updatedAt): self
{
$this->updatedAt = $updatedAt;
return $this;
}
public function getUpdatedAt(): \DateTime
{
return $this->updatedAt;
}
public function jsonSerialize()
{
return [
'id' => $this->id,
'name' => $this->name,
'slug' => $this->slug,
'short_description' => $this->shortDescription,
'description' => $this->description,
'user' => $this->user,
'organization' => $this->organization,
'members' => $this->members->toArray(),
'website_url' => $this->websiteUrl,
'social_networks' => $this->socialNetworks->toArray(),
'is_published' => $this->isPublished,
'created_at' => $this->createdAt->format('c'),
'updated_at' => $this->updatedAt->format('c')
];
}
}