You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

384 lines
11KB

  1. <?php
  2. /**
  3. Copyright Guillaume Bourgeois (2018)
  4. contact@souke.fr
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. namespace domain\User\User;
  32. use domain\Payment\Payment;
  33. use domain\Producer\Producer\ProducerSolver;
  34. use domain\User\UserGroup\UserGroup;
  35. use domain\User\UserProducer\UserProducer;
  36. use domain\User\UserUserGroup\UserUserGroup;
  37. use domain\_\AbstractService;
  38. use domain\_\SolverInterface;
  39. use Faker\Factory;
  40. use yii\base\ErrorException;
  41. class UserSolver extends AbstractService implements SolverInterface
  42. {
  43. public function getTypeChoicesArray(): array
  44. {
  45. return [
  46. User::TYPE_INDIVIDUAL => 'Particulier',
  47. User::TYPE_LEGAL_PERSON => 'Personne morale',
  48. User::TYPE_GUEST => 'Visiteur'
  49. ];
  50. }
  51. public function getTypeLabel(string $type): string
  52. {
  53. $typesArray = $this->getTypeChoicesArray();
  54. if(key_exists($type, $typesArray)) {
  55. return $typesArray[$type];
  56. }
  57. return '';
  58. }
  59. public function getTypeIndex(string $typeLabel = null): ?string
  60. {
  61. foreach($this->getTypeChoicesArray() as $key => $label) {
  62. if($label == $typeLabel) {
  63. return $key;
  64. }
  65. }
  66. return null;
  67. }
  68. public function isTypeValid(string $type = null): bool
  69. {
  70. return in_array($type, User::$types);
  71. }
  72. public function isTypeLegalPerson(User $user): bool
  73. {
  74. return $user->type == User::TYPE_LEGAL_PERSON;
  75. }
  76. public function isTypeIndividual(User $user): bool
  77. {
  78. return $user->type == User::TYPE_INDIVIDUAL;
  79. }
  80. public function isTypeGuest(User $user): bool
  81. {
  82. return $user->type == User::TYPE_GUEST;
  83. }
  84. public function getContactSummaryFromArrayAsHtml(array $user): string
  85. {
  86. $html = '';
  87. if (strlen($user['phone'])) {
  88. $html .= $user['phone'];
  89. }
  90. if (strlen($user['phone']) && strlen($user['email'])) {
  91. $html .= '<br />';
  92. }
  93. if (strlen($user['email'])) {
  94. $html .= $user['email'];
  95. }
  96. return $html;
  97. }
  98. // getStrUserAction
  99. public function getPaymentUsernameUserAction(Payment $payment): string
  100. {
  101. $userAction = $payment->getUserActionObject();
  102. if ($userAction) {
  103. return $this->getUsername($userAction);
  104. } else {
  105. return 'Système';
  106. }
  107. }
  108. public function getPhone(User $user)
  109. {
  110. if($this->getProducerContext() && $this->getProducerContext()->isDemoAccount()) {
  111. return \Yii::$app->faker->phoneNumber();
  112. }
  113. return $user->phone;
  114. }
  115. public function getEmail(User $user)
  116. {
  117. if($this->getProducerContext() && $this->getProducerContext()->isDemoAccount()) {
  118. return \Yii::$app->faker->email();
  119. }
  120. return $user->email;
  121. }
  122. public function getAddress(User $user): string
  123. {
  124. if($this->getProducerContext() && $this->getProducerContext()->isDemoAccount()) {
  125. return \Yii::$app->faker->address();
  126. }
  127. return $user->address;
  128. }
  129. /**
  130. * @throws ErrorException
  131. */
  132. public function getUsername(User $user, $withType = false): string
  133. {
  134. if($this->getProducerContext() && $this->getProducerContext()->isDemoAccount()) {
  135. $username = \Yii::$app->faker->name();
  136. }
  137. else {
  138. if ($this->isTypeLegalPerson($user)
  139. && isset($user->name_legal_person)
  140. && strlen($user->name_legal_person)) {
  141. $username = $user->name_legal_person;
  142. } else {
  143. $username = $user->lastname . ' ' . $user->name;
  144. }
  145. }
  146. if ($withType && $this->isTypeLegalPerson($user)) {
  147. $username = $username . ' (personne morale)';
  148. }
  149. return $username;
  150. }
  151. public function getUsernameFromArray(array $modelArray, $withType = false): string
  152. {
  153. if($this->getProducerContext() && $this->getProducerContext()->isDemoAccount()) {
  154. $username = \Yii::$app->faker->name();
  155. }
  156. else {
  157. $username = 'Nom indéfini';
  158. if ($modelArray['type'] == User::TYPE_LEGAL_PERSON
  159. && isset($modelArray['name_legal_person'])
  160. && strlen($modelArray['name_legal_person'])) {
  161. $username = $modelArray['name_legal_person'];
  162. } elseif((isset($modelArray['lastname']) && $modelArray['lastname'])
  163. || (isset($modelArray['name']) && $modelArray['name'])) {
  164. $username = $modelArray['lastname'] . ' ' . $modelArray['name'];
  165. }
  166. }
  167. if ($withType && $modelArray['type'] == User::TYPE_LEGAL_PERSON) {
  168. $username = $username . ' (personne morale)';
  169. }
  170. return $username;
  171. }
  172. public function getFullAddress(User $user, $nl2br = false)
  173. {
  174. $address = '';
  175. if (isset($user->lastname) && isset($user->name) && strlen($user->lastname) && strlen($user->name)) {
  176. $address .= $user->lastname . ' ' . $user->name . "\n";
  177. }
  178. if (isset($user->name_legal_person) && strlen($user->name_legal_person)) {
  179. $address .= $user->name_legal_person . "\n";
  180. }
  181. $address .= $user->address;
  182. if ($nl2br) {
  183. $address = nl2br($address);
  184. }
  185. return $address;
  186. }
  187. /**
  188. * Finds out if password reset token is valid
  189. *
  190. * @param string $token password reset token
  191. * @return boolean
  192. */
  193. public function isPasswordResetTokenValid($token)
  194. {
  195. if (empty($token)) {
  196. return false;
  197. }
  198. $expire = \Yii::$app->parameterBag->get('user.passwordResetTokenExpire');
  199. $parts = explode('_', $token);
  200. $timestamp = (int)end($parts);
  201. return $timestamp + $expire >= time();
  202. }
  203. /**
  204. * Retourne si l'utilisateur est un admin ou non.
  205. *
  206. */
  207. public function isAdmin(User $user): bool
  208. {
  209. return $user->status == User::STATUS_ADMIN;
  210. }
  211. public function isStatusAdministrator(User $user): bool
  212. {
  213. return $user->getStatus() == User::STATUS_ADMIN;
  214. }
  215. /**
  216. * Retourne si l'utilisateur est un producteur ou non.
  217. *
  218. */
  219. public function isProducer(User $user): bool
  220. {
  221. return ($user->status == User::STATUS_ADMIN
  222. || $user->status == User::STATUS_PRODUCER) && $user->id_producer;
  223. }
  224. public function isStatusProducer(User $user): bool
  225. {
  226. return $user->getStatus() == User::STATUS_PRODUCER;
  227. }
  228. public function isStatusUser(User $user): bool
  229. {
  230. return $user->getStatus() == User::STATUS_ACTIVE;
  231. }
  232. /**
  233. * Retourne l'utilisateur courant.
  234. *
  235. */
  236. public function getCurrent(): ?User
  237. {
  238. if (!\Yii::$app->user->isGuest) {
  239. return \Yii::$app->user->identity;
  240. }
  241. return null;
  242. }
  243. public function isCurrentGuest(): bool
  244. {
  245. return \Yii::$app->user->isGuest;
  246. }
  247. /**
  248. * Retourne si l'utilisateur courant est connecté ou non.
  249. *
  250. */
  251. public function isCurrentConnected(): bool
  252. {
  253. return !\Yii::$app->user->isGuest;
  254. }
  255. /**
  256. * Retourne l'ID de l'utilisateur courant connecté.
  257. *
  258. */
  259. public function getCurrentId()
  260. {
  261. if (!\Yii::$app->user->isGuest) {
  262. return \Yii::$app->user->identity->id;
  263. }
  264. return false;
  265. }
  266. /**
  267. * Retourne le status de l'utilisateur courant connecté.
  268. *
  269. */
  270. public function getCurrentStatus()
  271. {
  272. if (!\Yii::$app->user->isGuest) {
  273. return \Yii::$app->user->identity->status;
  274. }
  275. return false;
  276. }
  277. public function hasAccessBackend(): bool
  278. {
  279. $userCurrentStatus = $this->getCurrentStatus();
  280. return $userCurrentStatus == User::STATUS_ADMIN
  281. || $userCurrentStatus == User::STATUS_PRODUCER;
  282. }
  283. // belongsToUserGroup
  284. public function isUserBelongsToUserGroup(User $user, UserGroup $userGroup): bool
  285. {
  286. if (!$user->userUserGroup) {
  287. $user->populateRelation('userUserGroup', UserUserGroup::searchAll([
  288. 'id_user' => $user->id
  289. ]));
  290. }
  291. if ($user->userUserGroup) {
  292. foreach ($user->userUserGroup as $userUserGroup) {
  293. if ($userUserGroup->id_user_group == $userGroup->id) {
  294. return true;
  295. }
  296. }
  297. }
  298. return false;
  299. }
  300. public function getUserProducer(User $user): ?UserProducer
  301. {
  302. $userProducer = null;
  303. $producerId = $this->getProducerContextId();
  304. foreach($user->userProducer as $userProducerRelation) {
  305. if($userProducerRelation->id_producer == $producerId) {
  306. $userProducer = $userProducerRelation;
  307. }
  308. }
  309. return $userProducer;
  310. }
  311. public function getEmailSendingInvoicingDocuments(User $user): ?string
  312. {
  313. if($user->email_sending_invoicing_documents && strlen($user->email_sending_invoicing_documents) > 0) {
  314. return $user->email_sending_invoicing_documents;
  315. }
  316. if($user->email && strlen($user->email) > 0) {
  317. return $user->email;
  318. }
  319. return null;
  320. }
  321. }