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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
<?php
/*
* kohinos_cooperatic
* Copyright (C) 2019-2020 ADML63
* Copyright (C) 2020- Cooperatic
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace App\Entity;
use App\Entity\EntityTrait\EnablableEntityTrait;
use App\Enum\MoyenEnum;
use Doctrine\ORM\Event\LifecycleEventArgs;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Timestampable\Traits\TimestampableEntity;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\Validator\Context\ExecutionContextInterface;
use ApiPlatform\Core\Annotation\ApiResource;
use Symfony\Component\Serializer\Annotation\Groups;
/**
* FLUX = TRANSFERT ou TRANSACTION ou COTISATIONS ou RECONVERSIONS
* @ORM\Entity(repositoryClass="App\Repository\FluxRepository")
* @ORM\HasLifecycleCallbacks()
* @ORM\InheritanceType("SINGLE_TABLE")
* @ORM\DiscriminatorColumn(name="discr", type="string")
* @ORM\DiscriminatorMap({"cotisation" = "Cotisation", "cotisation_adherent" = "CotisationAdherent", "cotisation_prestataire" = "CotisationPrestataire", "tro_adh_pre" = "TransactionAdherentPrestataire", "tro_adh_adh" = "TransactionAdherentAdherent", "tro_pre_adh" = "TransactionPrestataireAdherent", "tro_pre_pre" = "TransactionPrestatairePrestataire", "tre_cpt_grp" = "TransfertComptoirGroupe", "tre_grp_cpt" = "TransfertGroupeComptoir", "tre_pre_cpt" = "TransfertPrestataireComptoir", "tre_pre_sie" = "TransfertPrestataireSiege", "tre_sie_grp" = "TransfertSiegeGroupe", "tre_grp_sie" = "TransfertGroupeSiege", "vte_cpt_pre" = "VenteComptoirPrestataire", "vte_cpt_adh" = "VenteComptoirAdherent", "ret_cpt_pre" = "RetraitComptoirPrestataire", "ret_cpt_adh" = "RetraitComptoirAdherent", "com_rec_pre" = "CommissionPrestataireMLC", "achat_monnaie" = "AchatMonnaie", "achat_monnaie_prestataire" = "AchatMonnaiePrestataire", "achat_monnaie_adherent" = "AchatMonnaieAdherent"})
*/
abstract class Flux
{
use TimestampableEntity;
const TYPE_COTISATION = 'cotisation';
const TYPE_TRANSFERT = 'transfert';
const TYPE_TRANSACTION = 'transaction';
const TYPE_VENTE = 'vente';
const TYPE_RETRAIT = 'retrait';
const TYPE_COMMISSION = 'commission';
const TYPE_ACHAT = 'achat';
/**
* @var int
*
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
* @Groups({"read"})
*/
protected $id;
/**
* @ORM\ManyToOne(targetEntity="User", inversedBy="flux")
* @ORM\JoinColumn(name="user_id", referencedColumnName="id", nullable=true)
* @Groups({"read", "write"})
*/
protected $operateur;
/**
* Role en cours de l'utilisateur
* @var string
*
* @ORM\Column(name="role", type="string", length=200)
* @Assert\NotBlank
* @Groups({"read", "write"})
*/
protected $role;
/**
* Type de transfert / transaction : exemple : Prestataire à Adhérent
* @var string
*
* @ORM\Column(name="type", type="string", length=200)
* @Assert\NotBlank
* @Groups({"read", "write"})
*/
protected $type;
/**
* Type de flux : transfert / transaction
* @var string
*
* @ORM\Column(name="parenttype", type="string", length=20)
* @Assert\NotBlank
* @Groups({"read", "write"})
*/
protected $parenttype;
/**
* @var float
*
* @ORM\Column(name="montant", type="decimal", precision=7, scale=2)
* @Assert\NotBlank
* @Assert\Type("numeric")
* @Assert\GreaterThan(
* value = 0
* )
* @Groups({"read", "write"})
*/
protected $montant;
/**
* @var string
*
* @ORM\Column(name="moyen", type="string", length=100)
* @Assert\NotBlank
* @Groups({"read", "write"})
*/
private $moyen;
/**
* @var null|string
*
* @ORM\Column(name="reference", type="string", length=255, nullable=true)
* @Assert\NotBlank
* @Groups({"read", "write"})
*/
protected $reference;
/**
* Hash => permet de vérifier l'intégrité des données
* @var text
*
* @ORM\Column(name="hash", type="text")
*/
protected $hash;
/**
* @var float
*
* @ORM\Column(name="tauxreconversion", type="decimal", precision=7, scale=2, nullable=true)
* @Groups({"read", "write"})
*/
protected $tauxreconversion;
protected $expediteur = null;
protected $destinataire = null;
protected $cotisationInfos = null;
abstract public function getParenttype();
/**
* Effectuer l'opération (transfert, transaction, vente, retrait...)
* @return array Tableau des entité(s) à persister (siege, comptoir, groupe, presta, adherent...)
*/
abstract public function operate($em);
/**
* Obtenir la liste des utilisateurs à notifier
* @return array Tableau d'utilisateurs
*/
abstract public function getUsersToNotify();
public function __construct()
{
$this->parenttype = $this->getParenttype();
$this->type = $this->getType();
}
public function getId(): ?int
{
return $this->id;
}
/**
* @param $parenttype
* @return $this
*/
public function setParenttype($parenttype)
{
$this->parenttype = $parenttype;
return $this;
}
/**
* @param User $destinataire
* @return $this
*/
public function setOperateur(?User $operateur)
{
$this->operateur = $operateur;
return $this;
}
/**
* @return User operateur
*/
public function getOperateur(): ?User
{
return $this->operateur;
}
/**
* @param $destinataire
* @return $this
*/
public function setDestinataire($destinataire)
{
$this->destinataire = $destinataire;
return $this;
}
/**
* @return destinataire
*/
public function getDestinataire()
{
return $this->destinataire;
}
/**
* @param $expediteur
* @return $this
*/
public function setExpediteur($expediteur)
{
$this->expediteur = $expediteur;
return $this;
}
/**
* @return expediteur
*/
public function getExpediteur()
{
return $this->expediteur;
}
/**
* @return string
*/
public function getType(): string
{
return $this->type;
}
/**
* @param string $type
* @return Transaction
*/
public function setType(string $type)
{
$this->type = $type;
return $this;
}
/**
* @return string
*/
public function getRole(): ?string
{
return $this->role;
}
/**
* @param string $role
* @return Transaction
*/
public function setRole(?string $role)
{
$this->role = $role;
return $this;
}
/**
* @return float
*/
public function getMontant(): ?float
{
return $this->montant;
}
/**
* @param float $montant
* @return Transaction
*/
public function setMontant(float $montant)
{
$this->montant = $montant;
return $this;
}
/**
* @return string
*/
public function getReference(): ?string
{
return $this->reference;
}
/**
* @param string $reference
* @return Transaction
*/
public function setReference(string $reference)
{
$this->reference = $reference;
return $this;
}
/**
* Get hash
* @return text
*/
public function getHash()
{
return $this->hash;
}
/**
* Set hash
* @return $this
*/
public function setHash($hash)
{
$this->hash = $hash;
return $this;
}
/**
* @return string
*/
public function getMoyen(): ?string
{
return $this->moyen;
}
public function setMoyen($moyen)
{
if (!in_array($moyen, MoyenEnum::getAvailableTypes())) {
throw new \InvalidArgumentException("Moyen de paiement invalide !");
}
$this->moyen = $moyen;
return $this;
}
/**
* Get tauxreconversion
* @return
*/
public function getTauxreconversion(): ?float
{
return $this->tauxreconversion;
}
/**
* Set tauxreconversion
* @return $this
*/
public function setTauxreconversion(?float $tauxreconversion): self
{
$this->tauxreconversion = $tauxreconversion;
return $this;
}
public function getMontantareconvertir()
{
return ($this->getMontant() - ($this->getMontant()*($this->getTauxreconversion()/100)));
}
public function isVente()
{
return false;
}
public function getVerify()
{
if ($this->getHash() == null) {
return 'Vide';
}
return (password_verify($this->getAllInfosUncrypted(), $this->getHash()) === true)?'Oui':'Non';
}
/**
* @ORM\PrePersist
* @param LifecycleEventArgs $event
*/
public function prePersist(LifecycleEventArgs $event)
{
$flux = $event->getEntity();
$flux->setHash('tmp');
}
/**
* @ORM\PostPersist
* @param LifecycleEventArgs $event
*/
public function postPersist(LifecycleEventArgs $event)
{
$flux = $event->getEntity();
if (empty($flux->getExpediteur())) {
throw new \Exception("[FLUX] Opération impossible ! Pas d'expéditeur !");
}
if ($flux->getMontant() <= 0) {
throw new \Exception("[FLUX] Opération impossible ! Montant inférieur ou égal à zéro !");
}
if ($flux->getExpediteur() == $flux->getDestinataire()) {
throw new \Exception("[FLUX] Opération impossible ! Expéditeur et Destinataire ne peuvent pas être les mêmes !");
}
// @TODO : generation du hash du flux trop gourmand en ressource !
// $hash = password_hash($flux->getAllInfosUncrypted(), PASSWORD_BCRYPT, ['cost' => 12]);
// $flux->setHash($hash);
// $event->getEntityManager()->persist($flux);
// $event->getEntityManager()->flush();
}
/**
* @Assert\Callback
* @param ExecutionContextInterface $context [description]
* @return [type] [description]
*/
public function validateConstraint(ExecutionContextInterface $context)
{
if ($this->getMoyen() == MoyenEnum::MOYEN_MLC
&& $this->getParenttype() == self::TYPE_COTISATION
&& $this->getExpediteur()->getEcompte() < $this->getMontant()
) {
$context->addViolation('Montant supérieur au solde de monnaie éléctronique.');
}
}
public function getAllInfosUncrypted(): string
{
return $_ENV['APP_SECRET'].$this->id.$this->operateur->getId().$this->role.$this->type.$this->montant.$this->moyen.$this->reference.$this->destinataire->getId().$this->expediteur->getId();
}
public function getOperateurAndRole(): string
{
return $this->operateur->__toString() . ' (' . $this->role . ')';
}
public function __toString(): string
{
if (empty($this->getDestinataire()) || empty($this->getExpediteur()) || empty($this->getMontant())) {
return "[FLUX] Visualisation impossible ! Destinataire / Expéditeur et/ou montant manquant(s) !";
}
return ($this->getCreatedAt()?$this->getCreatedAt()->format('d/m/Y H:i').' | ':'').ucwords($this->getParenttype()).' : '.$this->getDestinataire().' => '.$this->getExpediteur().' ; '.$this->getMontant().'€';
}
}