Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| 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
 
15
use LeadersLinked\Model\Position;
16
use LeadersLinked\Mapper\Common\MapperCommon;
17
use Laminas\Hydrator\ArraySerializableHydrator;
18
 
19
 
20
 
21
class PositionMapper extends MapperCommon
22
{
23
    const _TABLE = 'tbl_positions';
24
 
25
 
26
    /**
27
     *
28
     * @var PositionMapper
29
     */
30
    private static $_instance;
31
 
32
    /**
33
     *
34
     * @param AdapterInterface $adapter
35
     */
36
    private function __construct($adapter)
37
    {
38
        parent::__construct($adapter);
39
    }
40
 
41
    /**
42
     *
43
     * @param AdapterInterface $adapter
44
     * @return PositionMapper
45
     */
46
    public static function getInstance($adapter)
47
    {
48
        if(self::$_instance == null) {
49
            self::$_instance = new PositionMapper($adapter);
50
        }
51
        return self::$_instance;
52
    }
53
 
54
 
55
    /**
56
     *
57
     * @param int $id
58
     * @return Position
59
     */
60
    public function fetchOne($id)
61
    {
62
        $select = $this->sql->select(self::_TABLE);
63
        $select->where->equalTo('id', $id);
64
        $select->limit(1);
65
 
66
        $prototype = new Position();
67
        return $this->executeFetchOneObject($select, $prototype);
68
    }
69
 
70
    /**
71
     *
72
     * @param string $uuid
73
     * @return Position
74
     */
75
    public function fetchOneByUuid($uuid)
76
    {
77
        $select = $this->sql->select(self::_TABLE);
78
        $select->where->equalTo('uuid', $uuid);
79
        $select->limit(1);
80
 
81
        $prototype = new Position();
82
        return $this->executeFetchOneObject($select, $prototype);
83
    }
84
 
85
 
86
 
87
    /**
88
     *
89
     * @param Position $position
90
     * @return boolean
91
     */
92
    public function insert($position)
93
    {
94
        $hydrator = new ObjectPropertyHydrator();
95
        $values = $hydrator->extract($position);
96
        $values = $this->removeEmpty($values);
97
 
98
        $insert = $this->sql->insert(self::_TABLE);
99
        $insert->values($values);
100
 
101
        //echo $insert->getSqlString($this->adapter->platform); exit;
102
 
103
 
104
        $result = $this->executeInsert($insert);
105
        if($result) {
106
            $position->id = $this->getLastInsertId();
107
        }
108
        return $result;
109
 
110
    }
111
 
112
    /**
113
     *
114
     * @param Position $position
115
     * @return boolean
116
     */
117
    public function update($position)
118
    {
119
        $hydrator = new ObjectPropertyHydrator();
120
        $values = $hydrator->extract($position);
121
        $values = $this->removeEmpty($values);
122
 
123
        $update = $this->sql->update(self::_TABLE);
124
        $update->set($values);
125
        $update->where->equalTo('id', $position->id);
126
 
127
        return $this->executeUpdate($update);
128
    }
129
 
130
    /**
131
     *
132
     * @param Position $position
133
     * @return boolean
134
     */
135
    public function delete($position)
136
    {
137
        $delete = $this->sql->delete(self::_TABLE);
138
        $delete->where->equalTo('id', $position->id);
139
 
140
        return $this->executeDelete($delete);
141
 
142
    }
143
 
144
 
145
 
146
 
147
 
148
}