Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
192 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 Laminas\Db\Sql\Expression;
10
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
11
use Laminas\Log\LoggerInterface;
12
use Laminas\Paginator\Paginator;
13
use Laminas\Paginator\Adapter\DbSelect;
14
use LeadersLinked\Model\JobDescription;
15
use LeadersLinked\Mapper\Common\MapperCommon;
16
use Laminas\Hydrator\ArraySerializableHydrator;
17
 
540 geraldo 18
class JobDescriptionMapper extends MapperCommon {
192 efrain 19
 
20
    const _TABLE = 'tbl_jobs_description';
21
 
22
    /**
23
     *
24
     * @var JobDescriptionMapper
25
     */
26
    private static $_instance;
540 geraldo 27
 
192 efrain 28
    /**
29
     *
30
     * @param AdapterInterface $adapter
31
     */
540 geraldo 32
    private function __construct($adapter) {
192 efrain 33
        parent::__construct($adapter);
34
    }
540 geraldo 35
 
192 efrain 36
    /**
37
     *
38
     * @param AdapterInterface $adapter
39
     * @return JobDescriptionMapper
40
     */
540 geraldo 41
    public static function getInstance($adapter) {
42
        if (self::$_instance == null) {
192 efrain 43
            self::$_instance = new JobDescriptionMapper($adapter);
44
        }
45
        return self::$_instance;
46
    }
47
 
48
    /**
49
     *
50
     * @param int $id
51
     * @return JobDescription
52
     */
540 geraldo 53
    public function fetchOne($id) {
192 efrain 54
        $select = $this->sql->select(self::_TABLE);
55
        $select->where->equalTo('id', $id);
56
        $select->limit(1);
540 geraldo 57
 
192 efrain 58
        $prototype = new JobDescription();
59
        return $this->executeFetchOneObject($select, $prototype);
60
    }
539 geraldo 61
 
3454 efrain 62
 
63
 
539 geraldo 64
    /**
65
     *
3454 efrain 66
     * @return JobDescription[]
1246 eleazar 67
     */
3454 efrain 68
    public function fetchAllByDefault() {
1246 eleazar 69
        $select = $this->sql->select(self::_TABLE);
3454 efrain 70
        $select->where->isNull('company_id');
71
        $select->where->equalTo('status', JobDescription::STATUS_ACTIVE);
72
        $select->order('name');
73
 
74
 
1246 eleazar 75
        $prototype = new JobDescription();
76
        return $this->executeFetchAllObject($select, $prototype);
77
    }
78
 
79
    /**
80
     *
539 geraldo 81
     * @return JobDescription[]
82
     */
3454 efrain 83
    public function fetchAllActiveByDefault() {
539 geraldo 84
        $select = $this->sql->select(self::_TABLE);
85
        $select->where->isNull('company_id');
3454 efrain 86
        $select->where->equalTo('status', JobDescription::STATUS_ACTIVE);
87
        $select->order('name');
88
 
89
 
539 geraldo 90
        $prototype = new JobDescription();
91
        return $this->executeFetchAllObject($select, $prototype);
92
    }
3454 efrain 93
 
192 efrain 94
    /**
95
     *
96
     * @param string $uuid
97
     * @return JobDescription
98
     */
540 geraldo 99
    public function fetchOneByUuid($uuid) {
192 efrain 100
        $select = $this->sql->select(self::_TABLE);
101
        $select->where->equalTo('uuid', $uuid);
102
        $select->limit(1);
540 geraldo 103
 
192 efrain 104
        $prototype = new JobDescription();
105
        return $this->executeFetchOneObject($select, $prototype);
106
    }
540 geraldo 107
 
192 efrain 108
    /**
109
     *
110
     * @param int $company_id
111
     * @return JobDescription
112
     */
540 geraldo 113
    public function fetchAllByCompanyId($company_id) {
192 efrain 114
        $select = $this->sql->select(self::_TABLE);
115
        $select->where->equalTo('company_id', $company_id);
116
        $select->order('name');
540 geraldo 117
 
192 efrain 118
        $prototype = new JobDescription();
119
        return $this->executeFetchAllObject($select, $prototype);
120
    }
540 geraldo 121
 
192 efrain 122
    /**
123
     *
124
     * @param int $company_id
125
     * @return JobDescription
126
     */
540 geraldo 127
    public function fetchAllActiveByCompanyId($company_id) {
192 efrain 128
        $select = $this->sql->select(self::_TABLE);
129
        $select->where->equalTo('company_id', $company_id);
130
        $select->where->equalTo('status', JobDescription::STATUS_ACTIVE);
131
        $select->order('name');
3454 efrain 132
 
133
        //echo $select->getSqlString($this->adapter->platform); exit;
540 geraldo 134
 
192 efrain 135
        $prototype = new JobDescription();
136
        return $this->executeFetchAllObject($select, $prototype);
137
    }
538 geraldo 138
 
139
    /**
140
     *
141
     * @param int $company_id
142
     * @param int $job_description_id_default
143
     * @return JobDescription
144
     */
540 geraldo 145
    public function fetchOneByCompanyId($company_id, $job_description_id_default) {
538 geraldo 146
        $select = $this->sql->select(self::_TABLE);
147
        $select->where->equalTo('company_id', $company_id);
148
        $select->where->equalTo('job_description_id_default', $job_description_id_default);
149
        $select->limit(1);
540 geraldo 150
 
538 geraldo 151
        $prototype = new JobDescription();
152
        return $this->executeFetchOneObject($select, $prototype);
153
    }
540 geraldo 154
 
192 efrain 155
    /**
156
     *
157
     * @param int $company_id
158
     * @param int $id
159
     * @return JobDescription
160
     */
540 geraldo 161
    public function fetchAllByCompanyIdWhereIdNotEqual($company_id, $id) {
192 efrain 162
        $select = $this->sql->select(self::_TABLE);
163
        $select->where->equalTo('company_id', $company_id);
164
        $select->where->notEqualTo('id', $id);
165
        $select->order('name');
540 geraldo 166
 
192 efrain 167
        $prototype = new JobDescription();
168
        return $this->executeFetchAllObject($select, $prototype);
169
    }
540 geraldo 170
 
192 efrain 171
    /**
172
     *
173
     * @param int $company_id
174
     * @param int $id
175
     * @return JobDescription
176
     */
540 geraldo 177
    public function fetchAllActiveByCompanyIdWhereIdNotEqual($company_id, $id) {
192 efrain 178
        $select = $this->sql->select(self::_TABLE);
179
        $select->where->equalTo('company_id', $company_id);
180
        $select->where->notEqualTo('id', $id);
181
        $select->where->equalTo('status', JobDescription::STATUS_ACTIVE);
182
        $select->order('name');
540 geraldo 183
 
192 efrain 184
        $prototype = new JobDescription();
185
        return $this->executeFetchAllObject($select, $prototype);
186
    }
187
 
540 geraldo 188
    /**
537 geraldo 189
     *
190
     * @param string $search
191
     * @param int $page
192
     * @param int $records_per_page
193
     * @param string $order_field
194
     * @param string $order_direction
195
     * @return Paginator
196
     */
540 geraldo 197
    public function fetchAllDataTable($search, $page = 1, $records_per_page = 10, $order_field = 'name', $order_direction = 'ASC') {
537 geraldo 198
        $prototype = new JobDescription();
199
        $select = $this->sql->select(self::_TABLE);
200
        $select->where->isNull('company_id');
540 geraldo 201
 
202
        if ($search) {
537 geraldo 203
            $select->where->like('name', '%' . $search . '%');
204
        }
205
        $select->order($order_field . ' ' . $order_direction);
540 geraldo 206
 
207
        $hydrator = new ObjectPropertyHydrator();
208
        $resultset = new HydratingResultSet($hydrator, $prototype);
209
 
537 geraldo 210
        $adapter = new DbSelect($select, $this->sql, $resultset);
211
        $paginator = new Paginator($adapter);
212
        $paginator->setItemCountPerPage($records_per_page);
213
        $paginator->setCurrentPageNumber($page);
540 geraldo 214
 
215
 
537 geraldo 216
        return $paginator;
217
    }
218
 
192 efrain 219
    /**
220
     *
221
     * @param int $companyId
222
     * @param string $search
223
     * @param int $page
224
     * @param int $records_per_page
225
     * @param string $order_field
226
     * @param string $order_direction
227
     * @return Paginator
228
     */
540 geraldo 229
    public function fetchAllDataTableByCompanyId($companyId, $search, $page = 1, $records_per_page = 10, $order_field = 'name', $order_direction = 'ASC') {
192 efrain 230
        $prototype = new JobDescription();
231
        $select = $this->sql->select(self::_TABLE);
232
        $select->where->equalTo('company_id', $companyId);
540 geraldo 233
 
234
        if ($search) {
192 efrain 235
            $select->where->like('name', '%' . $search . '%');
236
        }
237
        $select->order($order_field . ' ' . $order_direction);
540 geraldo 238
 
192 efrain 239
        //echo $select->getSqlString($this->adapter->platform); exit;
540 geraldo 240
 
241
        $hydrator = new ObjectPropertyHydrator();
242
        $resultset = new HydratingResultSet($hydrator, $prototype);
243
 
192 efrain 244
        $adapter = new DbSelect($select, $this->sql, $resultset);
245
        $paginator = new Paginator($adapter);
246
        $paginator->setItemCountPerPage($records_per_page);
247
        $paginator->setCurrentPageNumber($page);
540 geraldo 248
 
249
 
192 efrain 250
        return $paginator;
251
    }
540 geraldo 252
 
192 efrain 253
    /**
254
     *
255
     * @param JobDescription $jobDescription
256
     * @return boolean
257
     */
540 geraldo 258
    public function insert($jobDescription) {
192 efrain 259
        $hydrator = new ObjectPropertyHydrator();
260
        $values = $hydrator->extract($jobDescription);
261
        $values = $this->removeEmpty($values);
262
        $values['job_description_id_boss'] = !empty($values['job_description_id_boss']) ? $values['job_description_id_boss'] : null;
540 geraldo 263
 
264
 
192 efrain 265
        $insert = $this->sql->insert(self::_TABLE);
266
        $insert->values($values);
540 geraldo 267
 
192 efrain 268
        //echo $insert->getSqlString($this->adapter->platform); exit;
540 geraldo 269
 
270
 
192 efrain 271
        $result = $this->executeInsert($insert);
540 geraldo 272
        if ($result) {
192 efrain 273
            $jobDescription->id = $this->getLastInsertId();
274
        }
275
        return $result;
276
    }
540 geraldo 277
 
192 efrain 278
    /**
279
     *
280
     * @param JobDescription $jobDescription
281
     * @return boolean
282
     */
540 geraldo 283
    public function update($jobDescription) {
192 efrain 284
        $hydrator = new ObjectPropertyHydrator();
285
        $values = $hydrator->extract($jobDescription);
286
        $values = $this->removeEmpty($values);
287
        $values['job_description_id_boss'] = !empty($values['job_description_id_boss']) ? $values['job_description_id_boss'] : null;
540 geraldo 288
 
192 efrain 289
        $update = $this->sql->update(self::_TABLE);
290
        $update->set($values);
291
        $update->where->equalTo('id', $jobDescription->id);
540 geraldo 292
 
192 efrain 293
        return $this->executeUpdate($update);
294
    }
540 geraldo 295
 
192 efrain 296
    /**
297
     *
298
     * @param JobDescription $jobDescription
299
     * @return boolean
300
     */
540 geraldo 301
    public function delete($jobDescription) {
192 efrain 302
        $delete = $this->sql->delete(self::_TABLE);
303
        $delete->where->equalTo('id', $jobDescription->id);
540 geraldo 304
 
192 efrain 305
        return $this->executeDelete($delete);
306
    }
307
 
550 geraldo 308
 
309
 
540 geraldo 310
}