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.

146 satır
4.4KB

  1. <?php
  2. namespace producer\controllers;
  3. class SiteController extends ProducerBaseController {
  4. /**
  5. * @inheritdoc
  6. */
  7. public function behaviors() {
  8. return [];
  9. }
  10. public function actions() {
  11. return [
  12. 'captcha' => [
  13. 'class' => 'yii\captcha\CaptchaAction',
  14. 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
  15. ],
  16. ];
  17. }
  18. public function actionError()
  19. {
  20. $exception = Yii::$app->errorHandler->exception;
  21. if ($exception !== null) {
  22. if($exception->getMessage() == 'Établissement introuvable') {
  23. Yii::$app->getResponse()->redirect(Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/error', 'producer_not_found' => true]))->send();
  24. return;
  25. }
  26. else {
  27. return $this->render('error', ['exception' => $exception]);
  28. }
  29. }
  30. }
  31. /**
  32. *
  33. * Affiche la page d'accueil des producteurs comprenant une image, une
  34. * description, la liste des points de vente et les produits
  35. *
  36. * @return ProducerView
  37. */
  38. public function actionIndex() {
  39. // points de vente
  40. $data_provider_points_vente = new ActiveDataProvider([
  41. 'query' => PointVente::find()
  42. ->where([
  43. 'id_etablissement' => $this->getProducer()->id,
  44. ]),
  45. 'pagination' => [
  46. 'pageSize' => 50,
  47. ],
  48. 'sort' => false,
  49. ]);
  50. // produits
  51. $data_provider_produits = new ActiveDataProvider([
  52. 'query' => Produit::find()
  53. ->where('(vrac IS NULL OR vrac = 0)')
  54. ->andWhere([
  55. 'id_etablissement' => $this->getProducer()->id,
  56. 'actif' => true
  57. ])
  58. ->orderBy('order ASC'),
  59. 'pagination' => [
  60. 'pageSize' => 50,
  61. ],
  62. 'sort' => false,
  63. ]);
  64. return $this->render('index',[
  65. 'data_provider_points_vente' => $data_provider_points_vente,
  66. 'data_provider_produits' => $data_provider_produits
  67. ]) ;
  68. }
  69. /**
  70. *
  71. * Affiche et traite le formulaire de contact dédié aux producteurs
  72. *
  73. * @return ProducerView
  74. */
  75. public function actionContact() {
  76. $model = new ContactForm();
  77. $producer = $this->getProducer() ;
  78. if ($model->load(Yii::$app->request->post()) && $model->validate()) {
  79. if (is_array($producer->contact) && $model->sendEmail($producer->contact[0]->email)) {
  80. Yii::$app->session->setFlash('success', 'Votre message a bien été envoyé.');
  81. }
  82. else {
  83. Yii::$app->session->setFlash('error', 'Il y a eu une erreur lors de l\'envoi de votre message.');
  84. }
  85. return $this->refresh();
  86. }
  87. else {
  88. return $this->render('contact', [
  89. 'model' => $model,
  90. ]);
  91. }
  92. }
  93. /**
  94. * Ajoute ou supprime un producteur des favoris de l'utilisateur.
  95. * Redirige vers la page d'accueil du producteur.
  96. *
  97. * @param $action 'add' ou 'delete'
  98. */
  99. public function actionFavorite($action) {
  100. $producer = $this->getProducer() ;
  101. $user_etablissement = UserEtablissement::find()
  102. ->where([
  103. 'id_user' => Yii::$app->user->id,
  104. 'id_etablissement' => $producer->id
  105. ])
  106. ->one() ;
  107. if(!$user_etablissement) {
  108. $user_etablissement = Etablissement::addUser(Yii::$app->user->id, $producer->id) ;
  109. }
  110. if($user_etablissement) {
  111. if($action == 'add') {
  112. $user_etablissement->favoris = 1 ;
  113. Yii::$app->session->setFlash('success','Le producteur <strong>'.Html::encode($producer->nom).'</strong> vient d\'être ajouté à vos favoris.') ;
  114. }
  115. else {
  116. $user_etablissement->favoris = 0 ;
  117. Yii::$app->session->setFlash('success','Le producteur <strong>'.Html::encode($producer->nom).'</strong> vient d\'être supprimé de vos favoris.') ;
  118. }
  119. $user_etablissement->save() ;
  120. }
  121. $this->redirect(['site/index']) ;
  122. }
  123. }
  124. ?>