Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15342 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Plugin;
6
 
7
use Laminas\Mvc\Controller\Plugin\AbstractPlugin;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Authentication\AuthenticationService;
10
use LeadersLinked\Model\Device;
11
use LeadersLinked\Mapper\DeviceMapper;
12
use LeadersLinked\Model\UserType;
13
use LeadersLinked\Mapper\CompanyMapper;
14
 
15
 
16
class CurrentUserPlugin extends AbstractPlugin
17
{
18
 
19
    /**
20
     *
21
     * @var AuthenticationService
22
     */
23
    protected $auth;
24
 
25
    /**
26
     *
27
     * @var boolean
28
     */
29
    protected $hasIdentity;
30
 
31
 
32
    /**
33
     *
34
     * @return \LeadersLinked\Model\User
35
     */
36
    protected $user;
37
 
38
 
39
    /***
40
     *
41
     * @var \LeadersLinked\Model\Company
42
     */
43
    protected $company;
44
 
45
 
46
    /**
47
     *
48
     * @param AdapterInterface $adapter
49
     */
50
    public function __construct($adapter)
51
    {
52
        $this->auth = new \Laminas\Authentication\AuthenticationService();
53
        $this->hasIdentity = false;
54
        if($this->auth->hasIdentity()) {
55
            $identity = $this->auth->getIdentity();
56
 
57
            $userMapper     = \LeadersLinked\Mapper\UserMapper::getInstance($adapter);
58
            $this->user     = $userMapper->fetchOne($identity['user_id']);
59
 
60
            if($this->user) {
61
                $this->hasIdentity = true;
62
 
63
                if($identity['company_id']) {
64
                    $companyMapper = CompanyMapper::getInstance($adapter);
65
                    $this->company = $companyMapper->fetchOne($identity['company_id']);
66
                }
67
            }
68
        }
69
    }
70
 
71
 
72
    /**
73
     *
74
     * @return \LeadersLinked\Model\User
75
     */
76
    public function getUser()
77
    {
78
 
79
        return $this->user;
80
    }
81
 
82
    /**
83
     *
84
     * @return string
85
     */
86
    public function getDeviceId()
87
    {
88
        return $this->deviceId;
89
    }
90
 
91
 
92
    /**
93
     *
94
     * @return int
95
     */
96
    public function getUserId()
97
    {
98
        if($this->hasIdentity) {
99
            return $this->user->id;
100
        } else {
101
            return 0;
102
        }
103
    }
104
 
105
 
106
    /**
107
     * @return string
108
     */
109
    public function getUserTypeId()
110
    {
111
        if($this->hasIdentity) {
112
           return $this->user->usertype_id;
113
        } else {
114
            return UserType::GUEST;
115
        }
116
    }
117
 
118
 
119
    /**
120
     *
121
     * @return \LeadersLinked\Model\Company
122
     */
123
    public function getCompany()
124
    {
125
        return $this->company;
126
    }
127
 
128
    public function getCompanyId()
129
    {
130
        if($this->company) {
131
 
132
        } else {
133
            return 0;
134
        }
135
    }
136
 
137
    /**
138
     *
139
     * @return boolean
140
     */
141
    public function hasIdentity()
142
    {
143
        return $this->user ? true : false;
144
    }
145
 
146
    public function clearIdentity()
147
    {
148
        $this->auth->clearIdentity();
149
    }
150
 
151
 
152
}