Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
6951 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Mapper;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
8
use Laminas\Db\ResultSet\HydratingResultSet;
9
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
10
use Laminas\Paginator\Paginator;
11
use Laminas\Paginator\Adapter\DbSelect;
12
use LeadersLinked\Model\OrganizationPosition;
13
use LeadersLinked\Mapper\Common\MapperCommon;
14
use Laminas\Db\Sql\Expression;
15
 
16
 
17
 
18
class OrganizationPositionMapper extends MapperCommon
19
{
20
    const _TABLE = 'tbl_organization_positions';
21
 
22
 
23
    /**
24
     *
25
     * @var OrganizationPositionMapper
26
     */
27
    private static $_instance;
28
 
29
    /**
30
     *
31
     * @param AdapterInterface $adapter
32
     */
33
    private function __construct($adapter)
34
    {
35
        parent::__construct($adapter);
36
    }
37
 
38
    /**
39
     *
40
     * @param AdapterInterface $adapter
41
     * @return OrganizationPositionMapper
42
     */
43
    public static function getInstance($adapter)
44
    {
45
        if(self::$_instance == null) {
46
            self::$_instance = new OrganizationPositionMapper($adapter);
47
        }
48
        return self::$_instance;
49
    }
50
 
51
 
52
    /**
53
     *
54
     * @param int $id
55
     * @return OrganizationPosition
56
     */
57
    public function fetchOne($id)
58
    {
59
        $select = $this->sql->select(self::_TABLE);
60
        $select->where->equalTo('id', $id);
61
        $select->limit(1);
62
 
63
        $prototype = new OrganizationPosition();
64
        return $this->executeFetchOneObject($select, $prototype);
65
    }
66
 
67
    /**
68
     *
69
     * @param string $uuid
70
     * @return OrganizationPosition
71
     */
72
    public function fetchOneByUuid($uuid)
73
    {
74
        $select = $this->sql->select(self::_TABLE);
75
        $select->where->equalTo('uuid', $uuid);
76
        $select->limit(1);
77
 
78
        $prototype = new OrganizationPosition();
79
        return $this->executeFetchOneObject($select, $prototype);
80
    }
81
 
82
 
83
 
84
    /**
85
     *
86
     * @param OrganizationPosition $position
87
     * @return boolean
88
     */
89
    public function insert($position)
90
    {
91
        $hydrator = new ObjectPropertyHydrator();
92
        $values = $hydrator->extract($position);
93
        $values = $this->removeEmpty($values);
94
 
95
        $insert = $this->sql->insert(self::_TABLE);
96
        $insert->values($values);
97
 
98
        //echo $insert->getSqlString($this->adapter->platform); exit;
99
 
100
 
101
        $result = $this->executeInsert($insert);
102
        if($result) {
103
            $position->id = $this->getLastInsertId();
104
        }
105
        return $result;
106
 
107
    }
108
 
109
    /**
110
     *
111
     * @param OrganizationPosition $position
112
     * @return boolean
113
     */
114
    public function update($position)
115
    {
116
        $hydrator = new ObjectPropertyHydrator();
117
        $values = $hydrator->extract($position);
118
        $values = $this->removeEmpty($values);
119
 
120
        $update = $this->sql->update(self::_TABLE);
121
        $update->set($values);
122
        $update->where->equalTo('id', $position->id);
123
 
124
        return $this->executeUpdate($update);
125
    }
126
 
127
    /**
128
     *
129
     * @param OrganizationPosition $position
130
     * @return boolean
131
     */
132
    public function delete($position)
133
    {
134
        $delete = $this->sql->delete(self::_TABLE);
135
        $delete->where->equalTo('id', $position->id);
136
 
137
        return $this->executeDelete($delete);
138
 
139
    }
140
 
141
 
142
    /**
143
     *
144
     * @param int $company_id
145
     * @param int $job_description_id
146
     * @param string $search
147
     * @param int $page
148
     * @param int $records_per_page
149
     * @param string $order_field
150
     * @param string $order_direction
151
     * @return Paginator
152
     */
153
    public function fetchAllDataTableByCompanyIdAndJobDescriptionId($company_id, $job_description_id, $search,  $page = 1, $records_per_page = 10, $order_field= 'name', $order_direction = 'ASC')
154
    {
155
        $select = $this->sql->select();
156
        $select->from(['p' => OrganizationPositionMapper::_TABLE ]);
157
        $select->columns(['uuid', 'user_id', 'job_description_id', 'status']);
158
        $select->join(['u' => UserMapper::_TABLE], 'p.user_id = u.id', ['user' => new Expression("CONCAT(first_name, ' ', last_name,  ' (', email, ')') ") ]);
159
 
160
        $select->where->equalTo('p.company_id', $company_id);
161
        $select->where->equalTo('p.job_description_id', $job_description_id);
162
 
163
        if($search) {
164
            $select->where->nest()->like('u.first_name', '%' . $search . '%')
165
            ->or->like('u.last_name', '%' . $search . '%')
166
            ->or->like('u.email', '%' . $search . '%')
167
            ->unnest();
168
        }
169
        $select->order($order_field . ' ' . $order_direction);
170
 
171
        //echo $select->getSqlString($this->adapter->platform); exit;
172
 
173
        $resultset  = new HydratingResultSet();
174
 
175
        $adapter = new DbSelect($select, $this->sql, $resultset);
176
        $paginator = new Paginator($adapter);
177
        $paginator->setItemCountPerPage($records_per_page);
178
        $paginator->setCurrentPageNumber($page);
179
 
180
 
181
        return $paginator;
182
    }
183
 
184
 
185
    /**
186
     *
187
     * @param int $job_description_id
188
     * @param int $company_id
189
     * @return OrganizationPosition[]
190
     */
7099 efrain 191
    public function fetchAllByCompanyIdAndJobDescriptionId($job_description_id, $company_id)
6951 efrain 192
    {
193
        $prototype = new OrganizationPosition();
194
 
195
        $select = $this->sql->select();
196
        $select->where->equalTo('job_description_id', $job_description_id);
197
        $select->where->equalTo('company_id', $company_id);
198
 
199
        return $this->executeFetchAllObject($select, $prototype);
200
    }
201
 
202
 
203
 
204
}