Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2090 | Rev 2380 | 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\Mapper;
5
 
6
use LeadersLinked\Model\CompanyUser;
7
use LeadersLinked\Mapper\Common\MapperCommon;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use Laminas\Log\LoggerInterface;
10
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
11
use Laminas\Db\Sql\Expression;
2085 nelberth 12
use LeadersLinked\Model\HighPerformanceTeamsGroupsMembers;
2086 nelberth 13
use LeadersLinked\Mapper\HighPerformanceTeamsGroupsMembersMapper;
14
 
1 www 15
class CompanyUserMapper extends MapperCommon
16
{
17
    const _TABLE = 'tbl_company_users';
18
 
19
 
20
    /**
21
     *
22
     * @var CompanyUserMapper
23
     */
24
    private static $_instance;
25
 
26
    /**
27
     *
28
     * @param AdapterInterface $adapter
29
     */
30
    private function __construct($adapter)
31
    {
32
        parent::__construct($adapter);
33
    }
34
 
35
    /**
36
     *
37
     * @param AdapterInterface $adapter
38
     * @param LoggerInterface $logger
39
     * @param int $user_id
40
     * @return \LeadersLinked\Mapper\CompanyUserMapper
41
     */
42
    public static function getInstance($adapter)
43
    {
44
        if(self::$_instance == null) {
45
            self::$_instance = new CompanyUserMapper($adapter);
46
        }
47
        return self::$_instance;
48
    }
49
 
50
    /**
51
     *
52
     * @param int $company_id
53
     * @return CompanyUser[]
54
     */
55
    public function fetchAllByCompanyId($company_id)
56
    {
57
        $prototype = new CompanyUser();
58
        $select = $this->sql->select(self::_TABLE);
59
        $select->where->equalTo('company_id', $company_id);
60
 
61
        return $this->executeFetchAllObject($select, $prototype);
62
    }
63
 
64
    /**
65
     *
66
     * @param int $company_id
67
     * @return CompanyUser[]
68
     */
69
    public function fetchAllByUserId($user_id)
70
    {
71
        $prototype = new CompanyUser();
72
        $select = $this->sql->select(self::_TABLE);
73
        $select->where->equalTo('user_id', $user_id);
74
 
75
        return $this->executeFetchAllObject($select, $prototype);
76
    }
77
 
78
    /**
79
     *
80
     * @param int $id
81
     * @return CompanyUser
82
     */
83
    public function fetchOne($id)
84
    {
85
        $prototype = new CompanyUser();
86
        $select = $this->sql->select(self::_TABLE);
87
        $select->where->equalTo('id', $id);
88
 
89
        return $this->executeFetchOneObject($select, $prototype);
90
    }
91
 
92
    /**
93
     *
94
     * @param int $company_id
95
     * @return CompanyUser
96
     */
97
    public function fetchOwnerByCompanyId($company_id)
98
    {
99
        $prototype = new CompanyUser();
100
        $select = $this->sql->select(self::_TABLE);
101
        $select->where->equalTo('company_id', $company_id);
102
        $select->where->equalTo('owner', CompanyUser::OWNER_YES);
103
 
104
        return $this->executeFetchOneObject($select, $prototype);
105
    }
106
 
107
    /**
108
     *
109
     * @param int $company_id
110
     * @return CompanyUser
111
     */
112
    public function fetchCreatorByCompanyId($company_id)
113
    {
114
        $prototype = new CompanyUser();
115
        $select = $this->sql->select(self::_TABLE);
116
        $select->where->equalTo('company_id', $company_id);
117
        $select->where->equalTo('creator', CompanyUser::CREATOR_YES);
118
 
119
        return $this->executeFetchOneObject($select, $prototype);
120
    }
121
 
122
    /**
123
     *
124
     * @param int $company_id
125
     * @param int $user_id
126
     * @return CompanyUser
127
     */
128
    public function fetchOneByCompanyIdAndUserId($company_id, $user_id)
129
    {
130
        $prototype = new CompanyUser();
131
        $select = $this->sql->select(self::_TABLE);
132
        $select->where->equalTo('company_id', $company_id);
133
        $select->where->equalTo('user_id', $user_id);
134
 
135
       // echo $select->getSqlString($this->adapter->platform); exit;
136
 
137
        return $this->executeFetchOneObject($select, $prototype);
138
    }
139
 
140
 
141
    /**
142
     *
143
     * @param int $company_id
144
     * @param int $user_id
145
     * @return int
146
     */
147
    public function fetchCountOtherCompaniesByCompanyIdAndUserId($company_id, $user_id)
148
    {
149
        $prototype = new CompanyUser();
150
        $select = $this->sql->select();
151
        $select->columns(['total' => new Expression('COUNT(*)') ]);
152
        $select->from(self::_TABLE);
153
        $select->where->notEqualTo('company_id', $company_id);
154
        $select->where->equalTo('user_id', $user_id);
155
 
156
        $record = $this->executeFetchOneArray($select);
157
 
158
        return $record['total'];
159
    }
160
 
161
    /**
162
     *
163
     * @param CompanyUser $companyUser
164
     * @return boolean
165
     */
166
    public function insert($companyUser)
167
    {
168
        $hydrator = new ObjectPropertyHydrator();
169
        $values = $hydrator->extract($companyUser);
170
        $values = $this->removeEmpty($values);
171
 
172
 
173
        $insert = $this->sql->insert(self::_TABLE);
174
        $insert->values($values);
175
 
176
        $result = $this->executeInsert($insert);
177
        if($result) {
178
            $companyUser->id = $this->lastInsertId;
179
        }
180
 
181
        return $result;
182
    }
183
 
184
    /**
185
     *
186
     * @param CompanyUser $companyUser
187
     * @return boolean
188
     */
189
    public function update($companyUser)
190
    {
191
        $hydrator = new ObjectPropertyHydrator();
192
        $values = $hydrator->extract($companyUser);
193
        $values = $this->removeEmpty($values);
194
 
195
        $update = $this->sql->update(self::_TABLE);
196
        $update->set($values);
197
        $update->where->equalTo('id', $companyUser->id);
198
 
199
        return $this->executeUpdate($update);
200
    }
201
 
202
    /**
203
     *
204
     * @param int $id
205
     * @return boolean
206
     */
207
    public function delete($id)
208
    {
209
        $delete = $this->sql->select(self::_TABLE);
210
        $delete->where->equalTo('id', $id);
211
 
212
        return $this->executeDelete($delete);
213
    }
214
 
215
 
2093 nelberth 216
 
1 www 217
}