147 lines
4.5 KiB
PHP
147 lines
4.5 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class SiteController extends Controller
|
||
|
|
{
|
||
|
|
|
||
|
|
public function filters()
|
||
|
|
{
|
||
|
|
return array( 'accessControl' );
|
||
|
|
}
|
||
|
|
|
||
|
|
public function accessRules()
|
||
|
|
{
|
||
|
|
return array(
|
||
|
|
array('allow',
|
||
|
|
'actions'=>array('login'),
|
||
|
|
'users' => array('*')
|
||
|
|
),
|
||
|
|
array('allow',
|
||
|
|
'users' => array('@')
|
||
|
|
),
|
||
|
|
array('deny'),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Declares class-based actions.
|
||
|
|
*/
|
||
|
|
public function actions()
|
||
|
|
{
|
||
|
|
return array(
|
||
|
|
// captcha action renders the CAPTCHA image displayed on the contact page
|
||
|
|
'captcha'=>array(
|
||
|
|
'class'=>'CCaptchaAction',
|
||
|
|
'backColor'=>0xFFFFFF,
|
||
|
|
),
|
||
|
|
// page action renders "static" pages stored under 'protected/views/site/pages'
|
||
|
|
// They can be accessed via: index.php?r=site/page&view=FileName
|
||
|
|
'page'=>array(
|
||
|
|
'class'=>'CViewAction',
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is the default 'index' action that is invoked
|
||
|
|
* when an action is not explicitly requested by users.
|
||
|
|
*/
|
||
|
|
public function actionIndex()
|
||
|
|
{
|
||
|
|
// renders the view file 'protected/views/site/index.php'
|
||
|
|
// using the default layout 'protected/views/layouts/main.php'
|
||
|
|
$this->render('index');
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is the action to handle external exceptions.
|
||
|
|
*/
|
||
|
|
public function actionError()
|
||
|
|
{
|
||
|
|
if($error=Yii::app()->errorHandler->error)
|
||
|
|
{
|
||
|
|
if(Yii::app()->request->isAjaxRequest)
|
||
|
|
echo $error['message'];
|
||
|
|
else
|
||
|
|
$this->render('error', $error);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Displays the contact page
|
||
|
|
*/
|
||
|
|
public function actionContact()
|
||
|
|
{
|
||
|
|
$model=new ContactForm;
|
||
|
|
if(isset($_POST['ContactForm']))
|
||
|
|
{
|
||
|
|
$model->attributes=$_POST['ContactForm'];
|
||
|
|
if($model->validate())
|
||
|
|
{
|
||
|
|
$name='=?UTF-8?B?'.base64_encode($model->name).'?=';
|
||
|
|
$subject='=?UTF-8?B?'.base64_encode($model->subject).'?=';
|
||
|
|
$headers="From: $name <{$model->email}>\r\n".
|
||
|
|
"Reply-To: {$model->email}\r\n".
|
||
|
|
"MIME-Version: 1.0\r\n".
|
||
|
|
"Content-type: text/plain; charset=UTF-8";
|
||
|
|
|
||
|
|
mail(Yii::app()->params['adminEmail'],$subject,$model->body,$headers);
|
||
|
|
Yii::app()->user->setFlash('contact','Thank you for contacting us. We will respond to you as soon as possible.');
|
||
|
|
$this->refresh();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
$this->render('contact',array('model'=>$model));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Displays the login page
|
||
|
|
*/
|
||
|
|
public function actionLogin()
|
||
|
|
{
|
||
|
|
$formulario = new FormularioLogin;
|
||
|
|
$resultado = array();
|
||
|
|
|
||
|
|
// if it is ajax validation request
|
||
|
|
if(isset($_POST['ajax']) && $_POST['ajax']==='login-form')
|
||
|
|
{
|
||
|
|
$formulario->email = $_POST['FormularioLogin_email'];
|
||
|
|
$formulario->password = $_POST['FormularioLogin_password'];
|
||
|
|
|
||
|
|
if(!$formulario->validate()) {
|
||
|
|
foreach($formulario->getErrors() as $campo => $error) {
|
||
|
|
$resultado[$campo] = $error;
|
||
|
|
}
|
||
|
|
echo function_exists('json_encode') ? json_encode($resultado) : CJSON::encode($resultado);
|
||
|
|
Yii::app()->end();
|
||
|
|
}
|
||
|
|
|
||
|
|
$identificacion = new IdentificacionUsuario($formulario->email, $formulario->password);
|
||
|
|
$identificacion->authenticate();
|
||
|
|
|
||
|
|
if ($identificacion->errorCode != IdentificacionUsuario::ERROR_NONE) {
|
||
|
|
$resultado['password'] = Yii::t('profind', 'Email o contraseña incorrectos');
|
||
|
|
echo function_exists('json_encode') ? json_encode($resultado) : CJSON::encode($resultado);
|
||
|
|
Yii::app()->end();
|
||
|
|
}
|
||
|
|
|
||
|
|
$duracion = 0;
|
||
|
|
Yii::app()->user->login($identificacion, $duracion);
|
||
|
|
Yii::app()->user->setReturnUrl($this->createUrl('usuario/modificar', array('id' => $identificacion->id)));
|
||
|
|
|
||
|
|
$resultado['status'] = '200';
|
||
|
|
$resultado['redirect'] = Yii::app()->user->returnUrl;
|
||
|
|
echo function_exists('json_encode') ? json_encode($resultado) : CJSON::encode($resultado);
|
||
|
|
Yii::app()->end();
|
||
|
|
}
|
||
|
|
|
||
|
|
$this->redirect(Yii::app()->params['frontpage']);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Logs out the current user and redirect to homepage.
|
||
|
|
*/
|
||
|
|
public function actionLogout()
|
||
|
|
{
|
||
|
|
Yii::app()->user->logout();
|
||
|
|
$this->redirect(Yii::app()->homeUrl);
|
||
|
|
}
|
||
|
|
}
|