1
|
|
|
<?php |
2
|
|
|
namespace App\Controller; |
3
|
|
|
|
4
|
|
|
use Cake\Core\Configure; |
5
|
|
|
use Cake\Event\Event; |
6
|
|
|
use Cake\Mailer\MailerAwareTrait; |
7
|
|
|
use Cake\Validation\Validator; |
8
|
|
|
|
9
|
|
|
class ContactController extends AppController |
10
|
|
|
{ |
11
|
|
|
use MailerAwareTrait; |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* Beforefilter. |
15
|
|
|
* |
16
|
|
|
* @param Event $event The beforeFilter event that was fired. |
17
|
|
|
* |
18
|
|
|
* @return void |
19
|
|
|
*/ |
20
|
|
|
public function beforeFilter(Event $event) |
21
|
|
|
{ |
22
|
|
|
parent::beforeFilter($event); |
23
|
|
|
|
24
|
|
|
$this->Auth->allow(['index']); |
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Contact page. |
29
|
|
|
* |
30
|
|
|
* @return \Cake\Network\Response|void |
31
|
|
|
*/ |
32
|
|
|
public function index() |
33
|
|
|
{ |
34
|
|
|
$contact = [ |
35
|
|
|
'schema' => [ |
36
|
|
|
'name' => [ |
37
|
|
|
'type' => 'string', |
38
|
|
|
'length' => 100 |
39
|
|
|
], |
40
|
|
|
'email' => [ |
41
|
|
|
'type' => 'email', |
42
|
|
|
'length' => 100 |
43
|
|
|
], |
44
|
|
|
'subject' => [ |
45
|
|
|
'type' => 'string', |
46
|
|
|
'length' => 255 |
47
|
|
|
], |
48
|
|
|
'message' => [ |
49
|
|
|
'type' => 'string' |
50
|
|
|
] |
51
|
|
|
], |
52
|
|
|
'required' => [ |
53
|
|
|
'name' => 1, |
54
|
|
|
'email' => 1, |
55
|
|
|
'message' => 1 |
56
|
|
|
] |
57
|
|
|
]; |
58
|
|
|
|
59
|
|
|
if ($this->request->is('post')) { |
60
|
|
|
$validator = new Validator(); |
61
|
|
|
$validator |
62
|
|
|
->notEmpty('email', __('You need to put your E-mail.')) |
63
|
|
|
->add('email', 'validFormat', [ |
64
|
|
|
'rule' => 'email', |
65
|
|
|
'message' => __("You must specify a valid E-mail address.") |
66
|
|
|
]) |
67
|
|
|
->notEmpty('name', __('You need to put your name.')) |
68
|
|
|
->notEmpty('message', __("You need to give a message.")) |
69
|
|
|
->add('message', 'minLength', [ |
70
|
|
|
'rule' => ['minLength', 10], |
71
|
|
|
'message' => __("Your message can not contain less than {0} characters.", 10) |
72
|
|
|
]); |
73
|
|
|
|
74
|
|
|
$contact['errors'] = $validator->errors($this->request->data()); |
75
|
|
|
|
76
|
|
|
if (empty($contact['errors'])) { |
77
|
|
|
$viewVars = [ |
78
|
|
|
'ip' => $this->request->clientIp() |
79
|
|
|
]; |
80
|
|
|
|
81
|
|
|
$viewVars = array_merge($this->request->data(), $viewVars); |
82
|
|
|
|
83
|
|
|
$this->getMailer('Contact')->send('contact', [$viewVars]); |
84
|
|
|
|
85
|
|
|
$this->Flash->success(__("Your message has been sent successfully, you will get a response shortly !")); |
86
|
|
|
|
87
|
|
|
return $this->redirect(['controller' => 'pages', 'action' => 'home']); |
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
$this->set(compact('contact')); |
92
|
|
|
} |
93
|
|
|
} |
94
|
|
|
|