Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Rev 16769 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Authentication\Result as AuthResult;
7
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 8
 
1 www 9
use Laminas\Mvc\Controller\AbstractActionController;
10
use Laminas\Log\LoggerInterface;
11
 
12
use LeadersLinked\Authentication\AuthOneTimePasswordAdapter;
13
use Laminas\Authentication\AuthenticationService;
14
 
15
use Laminas\View\Model\JsonModel;
16
use Laminas\View\Model\ViewModel;
15444 efrain 17
use LeadersLinked\Model\CalendarEvent;
16766 efrain 18
use LeadersLinked\Library\Functions;
16768 efrain 19
use LeadersLinked\Cache\CacheInterface;
20
use LeadersLinked\Cache\CacheImpl;
1 www 21
 
22
 
23
class AuthController extends AbstractActionController
24
{
25
    /**
26
     *
27
     * @var AdapterInterface
28
     */
29
    private $adapter;
30
 
31
    /**
32
     *
16768 efrain 33
     * @var  LoggerInterface
1 www 34
     */
16768 efrain 35
    private $logger;
1 www 36
 
37
    /**
38
     *
16768 efrain 39
     * @var array
1 www 40
     */
16768 efrain 41
    private $config;
42
 
1 www 43
    /**
44
     *
16768 efrain 45
     * @var CacheInterface
1 www 46
     */
16768 efrain 47
    private $cache;
1 www 48
 
49
    /**
16768 efrain 50
     *
1 www 51
     * @param AdapterInterface $adapter
52
     * @param LoggerInterface $logger
53
     * @param array $config
54
     */
16768 efrain 55
    public function __construct($adapter, $logger, $config)
1 www 56
    {
16768 efrain 57
        $this->adapter = $adapter;
58
        $this->logger = $logger;
59
        $this->config = $config;
60
        $this->cache = CacheImpl::getInstance($config);
1 www 61
    }
16768 efrain 62
 
1 www 63
 
64
    public function indexAction()
65
    {
66
        $this->layout()->setTemplate('layout/auth');
67
        $viewModel = new ViewModel();
68
        $viewModel->setTemplate('leaders-linked/auth/index.phtml');
69
 
70
        return $viewModel ;
71
    }
72
 
73
    public function signoutAction()
74
    {
75
        $auth = new AuthenticationService();
76
        $auth->clearIdentity();
77
 
78
        return $this->redirect()->toRoute('home');
79
    }
80
 
81
    public function signinAdminAction()
82
    {
83
 
84
 
85
        $request = $this->getRequest();
86
        if($request->isGet()) {
16766 efrain 87
            $user_uuid  = Functions::sanitizeFilterString($this->params()->fromQuery('user_uuid'));
1 www 88
            $rand       = filter_var($this->params()->fromQuery('rand'), FILTER_SANITIZE_NUMBER_INT);
89
            $timestamp  = filter_var($this->params()->fromQuery('time'), FILTER_SANITIZE_NUMBER_INT);
16766 efrain 90
            $password   = Functions::sanitizeFilterString($this->params()->fromQuery('password'));
1 www 91
 
92
 
93
            if(!$user_uuid || !$rand || !$timestamp || !$password ) {
94
                throw new \Exception('ERROR_PARAMETERS_ARE_INVALID');
95
            }
96
 
97
 
98
            $authAdapter = new AuthOneTimePasswordAdapter ($this->adapter, $this->config);
99
            $authAdapter->setDataAdmin($user_uuid, $password, $timestamp, $rand);
100
 
101
            $authService = new AuthenticationService();
102
            $result = $authService->authenticate($authAdapter);
103
 
104
 
105
            if($result->getCode() == AuthResult::SUCCESS) {
106
                return $this->redirect()->toRoute('dashboard');
107
            } else {
108
                throw new \Exception($result->getMessages()[0]);
109
            }
110
        }
111
 
112
        return new JsonModel([
113
            'success' => false,
114
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
115
        ]);
116
 
117
    }
118
 
119
    public function signinCompanyAction()
120
    {
121
        $request = $this->getRequest();
122
        if($request->isGet()) {
16766 efrain 123
            $company_uuid = Functions::sanitizeFilterString($this->params()->fromQuery('company_uuid'));
124
            $user_uuid  = Functions::sanitizeFilterString($this->params()->fromQuery('user_uuid'));
125
            $timestamp   = Functions::sanitizeFilterString($this->params()->fromQuery('time'));
126
            $password   = Functions::sanitizeFilterString($this->params()->fromQuery('password'));
1 www 127
            $rand       = filter_var($this->params()->fromQuery('rand'), FILTER_SANITIZE_NUMBER_INT);
16766 efrain 128
            $relational = Functions::sanitizeFilterString($this->params()->fromQuery('relational'));
129
            $type       = Functions::sanitizeFilterString($this->params()->fromQuery('type'));
1 www 130
 
131
            if(empty($user_uuid)  || empty($company_uuid) || empty($user_uuid) || empty($timestamp)  || empty($password) || empty($rand)) {
132
                return new JsonModel([
133
                    'success' => false,
134
                    'data' => 'ERROR_PARAMETERS_ARE_INVALID'
135
                ]);
136
            }
137
 
138
            $authAdapter = new AuthOneTimePasswordAdapter ($this->adapter, $this->config);
139
            $authAdapter->setDataCompany($user_uuid, $password, $timestamp, $rand, $company_uuid);
140
 
141
            $authService = new AuthenticationService();
142
            $result = $authService->authenticate($authAdapter);
143
 
144
 
145
            if($result->getCode() == AuthResult::SUCCESS) {
15444 efrain 146
 
147
                switch($type)
148
                {
149
                    case CalendarEvent::TYPE_PERFORMANCE_EVALUATION :
150
 
151
                        $this->cache->setItem('ACTIVITY_CENTER_RELATIONAL', $relational);
152
 
153
                        $route =  'activities-center/performance-evaluation';
154
                        break;
155
 
15461 efrain 156
 
157
                    case CalendarEvent::TYPE_RECRUITMENT_SELECTION_INTERVIEW :
158
 
159
                        $this->cache->setItem('ACTIVITY_CENTER_RELATIONAL', $relational);
160
 
161
                        $route =  'activities-center/recruitment-and-selection';
162
                        break;
163
 
15444 efrain 164
                    default :
165
                        $route = 'dashboard';
166
                        break;
167
 
168
                }
169
 
170
                return $this->redirect()->toRoute($route);
171
 
172
 
173
 
1 www 174
            } else {
175
                throw new \Exception($result->getMessages()[0]);
176
            }
177
        }
178
 
179
        return new JsonModel([
180
            'success' => false,
181
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
182
        ]);
183
    }
184
}