Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Rev 3639 | 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
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Mapper;
6
 
7
use LeadersLinked\Model\Company;
8
use LeadersLinked\Mapper\Common\MapperCommon;
9
use Laminas\Db\Adapter\AdapterInterface;
10
use Laminas\Log\LoggerInterface;
11
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
12
use Laminas\Db\Sql\Expression;
13
use Laminas\Db\ResultSet\HydratingResultSet;
14
use Laminas\Paginator\Adapter\DbSelect;
15
use Laminas\Paginator\Paginator;
16
 
17
 
18
class CompanyMapper extends MapperCommon
19
{
20
    const _TABLE = 'tbl_companies';
21
 
22
 
23
    /**
24
     *
25
     * @var CompanyMapper
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
     * @param LoggerInterface $logger
42
     * @param int $user_id
43
     * @return \LeadersLinked\Mapper\CompanyMapper
44
     */
45
    public static function getInstance($adapter)
46
    {
47
        if(self::$_instance == null) {
48
            self::$_instance = new CompanyMapper($adapter);
49
        }
50
        return self::$_instance;
51
    }
52
 
53
    /**
54
     *
55
     * @return Company[]
56
     */
57
    public function fetchAll()
58
    {
59
        $prototype = new Company;
60
        $select = $this->sql->select(self::_TABLE);
61
 
62
        return $this->executeFetchAllObject($select, $prototype);
63
    }
64
 
65
    /**
66
     *
67
     * @param string $search
68
     * @param int $page
69
     * @param string $status
70
     * @param int $records_per_page
71
     * @param string $order_field
72
     * @param string $order_direction
73
     * @return Paginator
74
     */
75
    public function fetchAllDataTable($search, $page = 1, $status,  $records_per_page = 10, $order_field= 'name', $order_direction = 'ASC')
76
    {
77
        $prototype = new Company();
78
        $select = $this->sql->select(self::_TABLE);
79
 
80
 
81
        if($search) {
82
            $select->where->like('name', '%' . $search . '%');
83
        }
84
 
85
        if($status) {
86
            $select->where->equalTo('status', $status);
87
        }
88
 
89
        $select->order($order_field . ' ' . $order_direction);
90
 
91
        $hydrator   = new ObjectPropertyHydrator();
92
        $resultset  = new HydratingResultSet($hydrator, $prototype);
93
 
94
        $adapter = new DbSelect($select, $this->sql, $resultset);
95
        $paginator = new Paginator($adapter);
96
        $paginator->setItemCountPerPage($records_per_page);
97
        $paginator->setCurrentPageNumber($page);
98
 
99
 
100
        return $paginator;
101
    }
102
 
103
 
104
    /**
105
     *
106
     * @param string $status
107
     * @param string $search
108
     * @param int $page
109
     * @param int $records_per_page
110
     * @param string $order_field
111
     * @param string $order_direction
112
     * @return Paginator
113
     */
114
    public function fetchAllDataTableByStatus($status, $search, $page = 1, $records_per_page = 10, $order_field= 'name', $order_direction = 'ASC')
115
    {
116
        $prototype = new Company();
117
        $select = $this->sql->select(self::_TABLE);
118
        $select->where->equalTo('status', $status);
119
 
120
 
121
        if($search) {
122
            $select->where->like('name', '%' . $search . '%');
123
        }
124
        $select->order($order_field . ' ' . $order_direction);
125
 
126
        $hydrator   = new ObjectPropertyHydrator();
127
        $resultset  = new HydratingResultSet($hydrator, $prototype);
128
 
129
        $adapter = new DbSelect($select, $this->sql, $resultset);
130
        $paginator = new Paginator($adapter);
131
        $paginator->setItemCountPerPage($records_per_page);
132
        $paginator->setCurrentPageNumber($page);
133
 
134
 
135
        return $paginator;
136
    }
137
 
138
    /**
139
     *
140
     * @param int $id
141
     * @return Company
142
     */
143
    public function fetchOne($id)
144
    {
145
        $prototype = new Company;
146
        $select = $this->sql->select(self::_TABLE);
147
        $select->where->equalTo('id', $id);
148
 
149
        return $this->executeFetchOneObject($select, $prototype);
150
    }
151
 
152
    /**
153
     *
154
 
155
     * @return Company
156
     */
157
    public function fetchOneInternal()
158
    {
159
        $prototype = new Company;
160
        $select = $this->sql->select(self::_TABLE);
161
        $select->where->equalTo('internal', Company::INTERNAL_YES);
162
 
163
        return $this->executeFetchOneObject($select, $prototype);
164
    }
165
 
166
    /**
167
     *
168
     * @param int $uuid
169
     * @return Company
170
     */
171
    public function fetchOneByUuid($uuid)
172
    {
173
        $prototype = new Company;
174
        $select = $this->sql->select(self::_TABLE);
175
        $select->where->equalTo('uuid', $uuid);
176
 
177
        return $this->executeFetchOneObject($select, $prototype);
178
    }
179
 
180
    /**
181
     *
182
     * @param Company $company
183
     * @return boolean
184
     */
185
    public function insert($company)
186
    {
187
        $hydrator = new ObjectPropertyHydrator();
188
        $values = $hydrator->extract($company);
189
        $values = $this->removeEmpty($values);
190
 
191
 
192
        if(empty($values['description']) ) {
193
            $values['description'] = '' ;
194
        }
195
 
196
        $insert = $this->sql->insert(self::_TABLE);
197
        $insert->values($values);
198
 
199
        //echo $insert->getSqlString($this->adapter->platform); exit;
200
 
201
        $result = $this->executeInsert($insert);
202
        if($result) {
203
            $company->id = $this->lastInsertId;
204
        }
205
 
206
        return $result;
207
    }
208
 
209
    /**
210
     *
211
     * @param int $id
212
     * @return boolean
213
     */
214
    public function delete($id)
215
    {
216
 
217
        $update = $this->sql->update(self::_TABLE);
218
        $update->set([
219
            'status' => Company::STATUS_DELETED,
220
        ]);
221
        $update->where->equalTo('id', $id);
222
 
223
        return $this->executeUpdate($update);
224
    }
225
 
226
    /**
227
     *
228
     * @param Company $company
229
     * @return boolean
230
     */
231
    public function updatePremium($company)
232
    {
233
 
234
        $update = $this->sql->update(self::_TABLE);
235
        $update->set([
236
            'status_bigbluebutton' => $company->status_bigbluebutton,
237
            'status_high_performance_groups' => $company->status_high_performance_groups,
238
            'status_microlearning' => $company->status_microlearning,
239
            'status_self_evaluation' => $company->status_self_evaluation,
240
 
241
        ]);
242
        $update->where->equalTo('id', $company->id);
243
 
244
        return $this->executeUpdate($update);
245
    }
246
 
247
    /**
248
     *
249
     * @param Company $company
250
     * @return boolean
251
     */
252
    public function updateExtended($company)
253
    {
254
        $values = [
255
            'description' => $company->description,
256
        ];
257
 
258
        $update = $this->sql->update(self::_TABLE);
259
        $update->set($values);
260
        $update->where->equalTo('id', $company->id);
261
 
262
        return $this->executeUpdate($update);
263
 
264
    }
265
 
266
    /**
267
     *
268
     * @param Company $company
269
     * @return boolean
270
     */
271
    public function updateWebsite($company)
272
    {
273
        $values = [
274
            'website' => $company->website,
275
        ];
276
 
277
        $update = $this->sql->update(self::_TABLE);
278
        $update->set($values);
279
        $update->where->equalTo('id', $company->id);
280
 
281
        return $this->executeUpdate($update);
282
 
283
    }
284
 
285
    /**
286
     *
287
     * @param Company $company
288
     * @return boolean
289
     */
290
    public function updateFoundationYear($company)
291
    {
292
        $values = [
293
            'foundation_year' => $company->foundation_year,
294
        ];
295
 
296
        $update = $this->sql->update(self::_TABLE);
297
        $update->set($values);
298
        $update->where->equalTo('id', $company->id);
299
 
300
        return $this->executeUpdate($update);
301
 
302
    }
303
 
304
    /*
305
    *
306
    * @param Company $company
307
    * @return boolean
308
    */
309
    public function updateImage($company)
310
    {
311
        $values = [
312
            'image' => $company->image,
313
        ];
314
 
315
        $update = $this->sql->update(self::_TABLE);
316
        $update->set($values);
317
        $update->where->equalTo('id', $company->id);
318
 
319
        return $this->executeUpdate($update);
320
 
321
    }
322
 
323
    /**
324
     *
325
     * @param Company $company
326
     * @return boolean
327
     */
328
    public function updateCover($company)
329
    {
330
        $values = [
331
            'cover' => $company->cover,
332
        ];
333
 
334
        $update = $this->sql->update(self::_TABLE);
335
        $update->set($values);
336
        $update->where->equalTo('id', $company->id);
337
 
338
        return $this->executeUpdate($update);
339
 
340
    }
535 geraldo 341
 
342
    /**
343
     *
344
     * @param Company $company
345
     * @return boolean
346
     */
347
    public function updateHeader($company)
348
    {
349
        $values = [
350
            'header' => $company->header,
351
        ];
352
 
353
        $update = $this->sql->update(self::_TABLE);
354
        $update->set($values);
355
        $update->where->equalTo('id', $company->id);
356
 
357
        return $this->executeUpdate($update);
358
 
359
    }
360
 
361
    /**
362
     *
363
     * @param Company $company
364
     * @return boolean
365
     */
366
    public function updateFooter($company)
367
    {
368
        $values = [
369
            'footer' => $company->footer,
370
        ];
371
 
372
        $update = $this->sql->update(self::_TABLE);
373
        $update->set($values);
374
        $update->where->equalTo('id', $company->id);
375
 
376
        return $this->executeUpdate($update);
377
 
378
    }
1 www 379
 
380
    /**
381
     *
382
     * @param Company $company
383
     * @return boolean
384
     */
385
    public function updateSocialNetwork($company)
386
    {
387
        $values = [
388
            'facebook' => $company->facebook,
389
            'instagram' => $company->instagram,
390
            'twitter' => $company->twitter,
391
        ];
392
 
393
        $update = $this->sql->update(self::_TABLE);
394
        $update->set($values);
395
        $update->where->equalTo('id', $company->id);
396
 
397
        return $this->executeUpdate($update);
398
 
399
    }
400
 
401
 
402
    /**
403
     *
404
     * @param Company $company
405
     * @return boolean
406
     */
407
    public function updateIndustry($company)
408
    {
409
        $values = [
410
            'industry_id' => $company->industry_id,
411
        ];
412
 
413
        $update = $this->sql->update(self::_TABLE);
414
        $update->set($values);
415
        $update->where->equalTo('id', $company->id);
416
 
417
        return $this->executeUpdate($update);
418
 
419
    }
420
 
421
 
422
    /**
423
     *
424
     * @param Company $company
425
     * @return boolean
426
     */
427
    public function updateCompanySize($company)
428
    {
429
        $values = [
430
            'company_size_id' => $company->company_size_id,
431
        ];
432
 
433
        $update = $this->sql->update(self::_TABLE);
434
        $update->set($values);
435
        $update->where->equalTo('id', $company->id);
436
 
437
        return $this->executeUpdate($update);
438
 
439
    }
440
 
441
 
442
    /**
443
     *
444
     * @param Company $company
445
     * @return boolean
446
     */
447
    public function update($company)
448
    {
449
        $hydrator = new ObjectPropertyHydrator();
450
        $values = $hydrator->extract($company);
451
        $values = $this->removeEmpty($values);
452
 
453
 
454
        $update = $this->sql->update(self::_TABLE);
455
        $update->set($values);
456
        $update->where->equalTo('id', $company->id);
457
 
458
        return $this->executeUpdate($update);
459
 
460
    }
461
 
462
}