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.

228 lines
8.2KB

  1. <?php
  2. /**
  3. * Copyright Souke (2018)
  4. *
  5. * contact@souke.fr
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. namespace backend\controllers;
  38. use domain\Feature\Feature\Feature;
  39. use domain\Product\Rotating\Rotating;
  40. use yii\filters\AccessControl;
  41. use yii\web\NotFoundHttpException;
  42. use yii\web\Response;
  43. class RotatingController extends BackendController
  44. {
  45. public function behaviors()
  46. {
  47. return [
  48. 'access' => [
  49. 'class' => AccessControl::class,
  50. 'rules' => [
  51. [
  52. 'allow' => true,
  53. 'roles' => ['@'],
  54. 'matchCallback' => function ($rule, $action) {
  55. return $this->getUserModule()
  56. ->getAuthorizationChecker()
  57. ->isGrantedAsProducer($this->getUserCurrent())
  58. && $this->getFeatureModule()->getChecker()
  59. ->isEnabled(Feature::ALIAS_ROTATING_PRODUCT);
  60. }
  61. ]
  62. ],
  63. ],
  64. ];
  65. }
  66. public function actionIndex()
  67. {
  68. return $this->render('index', [
  69. 'dataProvider' => $this->getRotatingModule()->getRepository()
  70. ->queryRotatings()->getDataProvider(20),
  71. ]);
  72. }
  73. public function actionCreate()
  74. {
  75. $rotatingModule = $this->getRotatingModule();
  76. $rotatingModel = $rotatingModule->getBuilder()->instanciateRotating($this->getProducerCurrent());
  77. if ($rotatingModel->load(\Yii::$app->request->post()) && $rotatingModel->validate()) {
  78. $rotating = $rotatingModule->getManager()->createRotating(
  79. $this->getProducerCurrent(),
  80. $rotatingModel->getName(),
  81. $rotatingModel->getDay(),
  82. $rotatingModel->getSelectedProductsIds()
  83. );
  84. $this->setFlash('success', "Produit tournant ajouté");
  85. return $this->redirectAfterSave('rotating', $rotating->getId());
  86. }
  87. return $this->render('create', [
  88. 'rotating' => $this->initFormModel($rotatingModel),
  89. 'productsArray' => $this->findProducts()
  90. ]);
  91. }
  92. public function actionUpdate(int $id)
  93. {
  94. $rotating = $this->findRotating($id);
  95. if ($rotating->load(\Yii::$app->request->post()) && $rotating->validate() && $rotating->save()) {
  96. $this->getRotatingModule()->getManager()->manageRotatingProducts(
  97. $rotating,
  98. $rotating->getSelectedProductsIds()
  99. );
  100. return $this->redirectAfterSave('rotating', $rotating->getId());
  101. }
  102. return $this->render('update', [
  103. 'rotating' => $this->initFormModel($rotating),
  104. 'productsArray' => $this->findProducts()
  105. ]);
  106. }
  107. public function actionDelete(int $id): Response
  108. {
  109. $rotatingModule = $this->getRotatingModule();
  110. $rotating = $this->findRotating($id);
  111. if($rotatingModule->getManager()->deleteRotating($rotating)) {
  112. $this->setFlash('success', "Produit tournant supprimé");
  113. }
  114. return $this->redirect('index');
  115. }
  116. protected function findRotating($id): Rotating
  117. {
  118. if (($rotating = $this->getRotatingModule()->getRepository()->findOneRotatingById($id)) !== null) {
  119. return $rotating;
  120. } else {
  121. throw new NotFoundHttpException("Le produit tournant n'a pas été trouvé.");
  122. }
  123. }
  124. public function findProducts(): array
  125. {
  126. return $this->getProductModule()->getRepository()->findProducts(true);
  127. }
  128. public function initFormModel(Rotating $rotating)
  129. {
  130. $this->getRotatingModule()->getBuilder()->initSelectedProductsIds($rotating);
  131. return $rotating;
  132. }
  133. /*public function actionCreate()
  134. {
  135. $accessoryModule = $this->getAccessoryModule();
  136. $accessoryModel = $accessoryModule->getBuilder()->instanciateAccessory($this->getProducerCurrent());
  137. if ($accessoryModel->load(\Yii::$app->request->post()) && $accessoryModel->validate()) {
  138. $accessory = $accessoryModule->getManager()->createAccessory(
  139. $this->getProducerCurrent(),
  140. $accessoryModel->getName(),
  141. $accessoryModel->getQuantity()
  142. );
  143. $this->afterSave($accessory, $accessoryModel->getSelectedProductsIds());
  144. $this->setFlash('success', "Accessoire ajouté");
  145. return $this->redirectAfterSave('accessory', $accessory->getId());
  146. }
  147. return $this->render('create', [
  148. 'accessory' => $this->initFormModel($accessoryModel),
  149. 'productsArray' => $this->findProducts()
  150. ]);
  151. }
  152. public function actionUpdate(int $id)
  153. {
  154. $accessory = $this->findAccessory($id);
  155. if ($accessory->load(\Yii::$app->request->post()) && $accessory->validate() && $accessory->save()) {
  156. $this->afterSave($accessory, $accessory->getSelectedProductsIds());
  157. return $this->redirectAfterSave('accessory', $accessory->getId());
  158. }
  159. return $this->render('update', [
  160. 'accessory' => $this->initFormModel($accessory),
  161. 'productsArray' => $this->findProducts()
  162. ]);
  163. }
  164. public function actionDelete(int $id): Response
  165. {
  166. $accessory = $this->findAccessory($id);
  167. if($accessory->delete()) {
  168. $this->setFlash('success', "Accessoire supprimé");
  169. }
  170. return $this->redirect('index');
  171. }
  172. public function afterSave(Accessory $accessory, $selectedProductsIdsArray): void
  173. {
  174. if(!is_array($selectedProductsIdsArray)) {
  175. $selectedProductsIdsArray = [];
  176. }
  177. $this->getAccessoryModule()->getManager()->manageProducts($accessory, $selectedProductsIdsArray);
  178. }
  179. public function findProducts(): array
  180. {
  181. return $this->getProductModule()->getRepository()->findProducts(true);
  182. }
  183. protected function findAccessory($id): Accessory
  184. {
  185. if (($accessory = $this->getAccessoryModule()->getRepository()->findOneAccessoryById($id)) !== null) {
  186. return $accessory;
  187. } else {
  188. throw new NotFoundHttpException("L'accessoire n'a pas été trouvé.");
  189. }
  190. }
  191. public function initFormModel(Accessory $accessoryModel)
  192. {
  193. $this->getAccessoryModule()->getBuilder()->initSelectedProductsIds($accessoryModel);
  194. return $accessoryModel;
  195. }
  196. */
  197. }