Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6866 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6866 Rev 7343
Línea 27... Línea 27...
27
use LeadersLinked\Mapper\NetworkMapper;
27
use LeadersLinked\Mapper\NetworkMapper;
28
use Laminas\Authentication\AuthenticationService;
28
use Laminas\Authentication\AuthenticationService;
29
use LeadersLinked\Authentication\AuthEmailAdapter;
29
use LeadersLinked\Authentication\AuthEmailAdapter;
30
use LeadersLinked\Cache\CacheInterface;
30
use LeadersLinked\Cache\CacheInterface;
31
use LeadersLinked\Cache\CacheImpl;
31
use LeadersLinked\Cache\CacheImpl;
-
 
32
use LeadersLinked\Library\Functions;
-
 
33
use LeadersLinked\Model\Network;
Línea 32... Línea 34...
32
 
34
 
33
class HomeController extends AbstractActionController
35
class HomeController extends AbstractActionController
34
{
36
{
35
    /**
37
    /**
Línea 84... Línea 86...
84
 
86
 
85
 
87
 
-
 
88
 
86
 
89
    public function indexAction()
Línea 87... Línea 90...
87
    public function indexAction()
90
    {
88
    {
91
        /*
Línea 103... Línea 106...
103
        $currentUserPlugin = $this->plugin('currentUserPlugin');
106
        $currentUserPlugin = $this->plugin('currentUserPlugin');
104
        if ($currentUserPlugin->hasIdentity()) {
107
        if ($currentUserPlugin->hasIdentity()) {
105
            return $this->redirect()->toRoute('dashboard');
108
            return $this->redirect()->toRoute('dashboard');
106
        } else {
109
        } else {
107
            return $this->redirect()->toRoute('signin');
110
            return $this->redirect()->toRoute('signin');
-
 
111
        }*/
-
 
112
        
-
 
113
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
-
 
114
        $currentNetwork = $currentNetworkPlugin->getNetwork();
-
 
115
        
-
 
116
        $request = $this->getRequest();
-
 
117
        if ($request->isGet()) {
-
 
118
            
-
 
119
            $currentUserPlugin = $this->plugin('currentUserPlugin');
-
 
120
            
-
 
121
            if (empty($_SESSION['aes'])) {
-
 
122
                $_SESSION['aes'] = Functions::generatePassword(16);
-
 
123
            }
-
 
124
            
-
 
125
            if ($this->config['leaderslinked.runmode.sandbox']) {
-
 
126
                $site_key      = $this->config['leaderslinked.google_captcha.sandbox_site_key'];
-
 
127
            } else {
-
 
128
                $site_key      = $this->config['leaderslinked.google_captcha.production_site_key'];
-
 
129
            }
-
 
130
            
-
 
131
            $access_usign_social_networks = $this->config['leaderslinked.runmode.access_usign_social_networks'];
-
 
132
            
-
 
133
            
-
 
134
            
-
 
135
            $sandbox = $this->config['leaderslinked.runmode.sandbox'];
-
 
136
            if ($sandbox) {
-
 
137
                $google_map_key  = $this->config['leaderslinked.google_map.sandbox_api_key'];
-
 
138
            } else {
-
 
139
                $google_map_key  = $this->config['leaderslinked.google_map.production_api_key'];
-
 
140
            }
-
 
141
    
-
 
142
            $this->layout()->setTemplate('layout/auth.phtml');
-
 
143
            $viewModel = new ViewModel();
-
 
144
            $viewModel->setTemplate('leaders-linked/auth/signin.phtml');
-
 
145
            $viewModel->setVariables([
-
 
146
                'site_key'  => $site_key,
-
 
147
                'google_map_key' => $google_map_key,
-
 
148
                'aes'       => $_SESSION['aes'],
-
 
149
                'defaultNetwork' => $currentNetwork->default,
-
 
150
                'is_logged_in' =>  $currentUserPlugin->hasIdentity() ? true : false,
-
 
151
                'access_usign_social_networks' => $access_usign_social_networks && $currentNetwork->default == Network::DEFAULT_YES ? 'y' : 'n',
-
 
152
            ]);
-
 
153
            
-
 
154
            return $viewModel;
-
 
155
        } else {
-
 
156
            $data = [
-
 
157
                'success' => false,
-
 
158
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
-
 
159
            ];
-
 
160
            
-
 
161
            return new JsonModel($data);
108
        }
162
        }
-
 
163
        
109
    }
164
    }