272 lines
6.9 KiB
PHP
272 lines
6.9 KiB
PHP
<?php
|
|
namespace frontend\controllers;
|
|
|
|
use Yii;
|
|
use common\models\LoginForm;
|
|
use frontend\models\PasswordResetRequestForm;
|
|
use frontend\models\ResetPasswordForm;
|
|
use frontend\models\SignupForm;
|
|
use frontend\models\ContactForm;
|
|
use yii\base\InvalidParamException;
|
|
use yii\web\BadRequestHttpException;
|
|
use yii\web\Controller;
|
|
use yii\filters\VerbFilter;
|
|
use yii\filters\AccessControl;
|
|
use common\models\User;
|
|
use common\components\Helper;
|
|
use common\models\Log;
|
|
use common\models\Customer;
|
|
use yii\web\NotFoundHttpException;
|
|
|
|
/**
|
|
* Site controller
|
|
*/
|
|
class SiteController extends Controller
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function behaviors()
|
|
{
|
|
return [
|
|
'access' => [
|
|
'class' => AccessControl::className(),
|
|
'only' => ['logout', 'signup'],
|
|
'rules' => [
|
|
[
|
|
'actions' => ['signup'],
|
|
'allow' => true,
|
|
'roles' => ['?'],
|
|
],
|
|
[
|
|
'actions' => ['logout'],
|
|
'allow' => true,
|
|
'roles' => ['@'],
|
|
],
|
|
],
|
|
],
|
|
'verbs' => [
|
|
'class' => VerbFilter::className(),
|
|
'actions' => [
|
|
'logout' => ['post'],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function actions()
|
|
{
|
|
return [
|
|
'error' => [
|
|
'class' => 'yii\web\ErrorAction',
|
|
],
|
|
'captcha' => [
|
|
'class' => 'yii\captcha\CaptchaAction',
|
|
'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Displays homepage.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionIndex()
|
|
{
|
|
return $this->render('index');
|
|
}
|
|
|
|
/**
|
|
* Logs in a user.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionLogin()
|
|
{
|
|
if (!\Yii::$app->user->isGuest) {
|
|
return $this->goHome();
|
|
}
|
|
|
|
$model = new LoginForm();
|
|
if ($model->load(Yii::$app->request->post()) && $model->login()) {
|
|
|
|
$geoip = Helper::getGeoIp();
|
|
|
|
$message = "";
|
|
$user = User::findOne(\Yii::$app->user->id);
|
|
if ( isset($geoip)){
|
|
$message = "Bejelentkezés: " .$user->username. " Ip cím:". $geoip->ip . " Város: " . $geoip->city;
|
|
}
|
|
|
|
Log::log([
|
|
'type' =>Log::$TYPE_LOGIN,
|
|
'message' => $message
|
|
]);
|
|
|
|
$this->sendLoginIp();
|
|
|
|
// return $this->goBack();
|
|
return $this->redirect(['account/select']);
|
|
} else {
|
|
return $this->render('login', ['model' => $model,]);
|
|
}
|
|
}
|
|
|
|
protected function sendLoginIp(){
|
|
if ( \Yii::$app->params['login_reception_email'] == true){
|
|
$geoip = Helper::getGeoIp();
|
|
|
|
$user = User::findOne(\Yii::$app->user->id);
|
|
$message = \Yii::$app->mailer->compose('login_frontend', [
|
|
'model' => $user,
|
|
'geoip' => $geoip,
|
|
'company' => Helper::getCompany()
|
|
]);
|
|
|
|
$message->setFrom( \Yii::$app->params['infoEmail'] )
|
|
->setTo( \Yii::$app->params['notify_mail'] )
|
|
->setSubject('Recepció bejelentkezés - ' . $user->username )
|
|
->send();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Logs out the current user.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionLogout()
|
|
{
|
|
Yii::$app->user->logout();
|
|
|
|
return $this->goHome();
|
|
}
|
|
|
|
/**
|
|
* Displays contact page.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionContact()
|
|
{
|
|
$model = new ContactForm();
|
|
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
|
|
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
|
|
Yii::$app->session->setFlash('success', 'Thank you for contacting us. We will respond to you as soon as possible.');
|
|
} else {
|
|
Yii::$app->session->setFlash('error', 'There was an error sending email.');
|
|
}
|
|
|
|
return $this->refresh();
|
|
} else {
|
|
return $this->render('contact', [
|
|
'model' => $model,
|
|
]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Displays about page.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionAbout()
|
|
{
|
|
return $this->render('about');
|
|
}
|
|
|
|
public function actionNewsletterUnsubscribe($id,$token)
|
|
{
|
|
|
|
$customer = Customer::find()
|
|
->andWhere(['id_customer' => $id ])
|
|
->andWhere(['newsletter_token' => $token])
|
|
->one();
|
|
|
|
|
|
if ( !isset($customer)){
|
|
throw new NotFoundHttpException("Az oldal nem található");
|
|
}
|
|
|
|
$customer->newsletter = 0;
|
|
$customer->newsletter_token = Yii::$app->security->generateRandomString() . '_' . time();
|
|
$customer->save();
|
|
|
|
return $this->render("unsubscribe");
|
|
}
|
|
|
|
/**
|
|
* Signs user up.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionSignup()
|
|
{
|
|
$model = new SignupForm();
|
|
if ($model->load(Yii::$app->request->post())) {
|
|
if ($user = $model->signup()) {
|
|
if (Yii::$app->getUser()->login($user)) {
|
|
return $this->goHome();
|
|
}
|
|
}
|
|
}
|
|
|
|
return $this->render('signup', [
|
|
'model' => $model,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Requests password reset.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function actionRequestPasswordReset()
|
|
{
|
|
$model = new PasswordResetRequestForm();
|
|
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
|
|
if ($model->sendEmail()) {
|
|
Yii::$app->session->setFlash('success', 'Check your email for further instructions.');
|
|
|
|
return $this->goHome();
|
|
} else {
|
|
Yii::$app->session->setFlash('error', 'Sorry, we are unable to reset password for email provided.');
|
|
}
|
|
}
|
|
|
|
return $this->render('requestPasswordResetToken', [
|
|
'model' => $model,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Resets password.
|
|
*
|
|
* @param string $token
|
|
* @return mixed
|
|
* @throws BadRequestHttpException
|
|
*/
|
|
public function actionResetPassword($token)
|
|
{
|
|
try {
|
|
$model = new ResetPasswordForm($token);
|
|
} catch (InvalidParamException $e) {
|
|
throw new BadRequestHttpException($e->getMessage());
|
|
}
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
|
|
Yii::$app->session->setFlash('success', 'New password was saved.');
|
|
|
|
return $this->goHome();
|
|
}
|
|
|
|
return $this->render('resetPassword', [
|
|
'model' => $model,
|
|
]);
|
|
}
|
|
}
|