Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
630 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Mapper;
6
 
7
use Laminas\Db\Adapter\AdapterInterface;
8
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
9
use LeadersLinked\Model\Behavior;
10
use LeadersLinked\Mapper\Common\MapperCommon;
11
 
12
class BehaviorMapper extends MapperCommon {
13
 
14
    const _TABLE = 'tbl_behaviors';
15
 
16
    /**
17
     *
18
     * @var BehaviorMapper
19
     */
20
    private static $_instance;
21
 
22
    /**
23
     *
24
     * @param AdapterInterface $adapter
25
     */
26
    private function __construct($adapter) {
27
        parent::__construct($adapter);
28
    }
29
 
30
    /**
31
     *
32
     * @param AdapterInterface $adapter
33
     * @return BehaviorMapper
34
     */
35
    public static function getInstance($adapter) {
36
        if (self::$_instance == null) {
37
            self::$_instance = new BehaviorMapper($adapter);
38
        }
39
        return self::$_instance;
40
    }
41
 
42
    /**
43
     *
44
     * @param int $id
45
     * @return Behavior
46
     */
47
    public function fetchOne($id) {
48
        $select = $this->sql->select(self::_TABLE);
49
        $select->where->equalTo('id', $id);
50
        $select->limit(1);
51
 
52
        $prototype = new Behavior();
53
        return $this->executeFetchOneObject($select, $prototype);
54
    }
55
 
56
    /**
57
     *
58
     * @param int $company_id
59
     * @param int $behavior_type_id_default
60
     * @return Behavior
61
     */
62
    public function fetchOneByCompanyId($company_id, $behavior_type_id_default) {
63
        $select = $this->sql->select(self::_TABLE);
64
        $select->where->equalTo('company_id', $company_id);
65
        $select->limit(1);
66
 
67
        $prototype = new Behavior();
68
        return $this->executeFetchOneObject($select, $prototype);
69
    }
70
 
71
    /**
72
     *
73
     * @param int $company_id
74
     * @param int $behavior_type_id_default
75
     * @return Behavior[]
76
     */
77
    public function fetchAllCompanyId($company_id) {
78
        $select = $this->sql->select(self::_TABLE);
79
        $select->where->equalTo('company_id', $company_id);
80
 
81
        $prototype = new Behavior();
82
        return $this->executeFetchAllObject($select, $prototype);
83
    }
84
 
85
    /**
86
     *
87
     * @return Behavior[]
88
     */
89
    public function fetchAllByDefault() {
90
        $select = $this->sql->select(self::_TABLE);
91
        $select->where->isNull('company_id');
92
 
93
        $prototype = new Behavior();
94
        return $this->executeFetchAllObject($select, $prototype);
95
    }
96
 
97
    /**
98
     *
99
     * @param string $uuid
100
     * @return Behavior
101
     */
102
    public function fetchOneByUuid($uuid) {
103
        $select = $this->sql->select(self::_TABLE);
104
        $select->where->equalTo('uuid', $uuid);
105
        $select->limit(1);
106
 
107
        $prototype = new Behavior();
108
        return $this->executeFetchOneObject($select, $prototype);
109
    }
110
 
111
     /**
112
     *
113
     * @param string $description
114
     * @param string $company_id
115
     * @return Behavior
116
     */
117
    public function fetchOneByDescription($description, $company_id) {
118
        $select = $this->sql->select(self::_TABLE);
119
        $select->where->equalTo('description', $description);
120
        $company_id ?
121
        $select->where->equalTo('company_id', $company_id):
122
         $select->where->isNull('company_id');
123
        $select->limit(1);
124
 
125
        $prototype = new Behavior();
126
        return $this->executeFetchOneObject($select, $prototype);
127
    }
128
 
129
 
130
 
131
    /**
132
     *
133
     * @param Behavior $behaviorType
134
     * @return boolean
135
     */
136
    public function insert($behaviorType) {
137
        $hydrator = new ObjectPropertyHydrator();
138
        $values = $hydrator->extract($behaviorType);
139
 
140
        $insert = $this->sql->insert(self::_TABLE);
141
        $insert->values($values);
142
 
143
 
144
        $result = $this->executeInsert($insert);
145
        if ($result) {
146
            $behaviorType->id = $this->lastInsertId;
147
        }
148
 
149
        return $result;
150
    }
151
 
152
    /**
153
     *
154
     * @param Behavior $behaviorType
155
     * @return boolean
156
     */
157
    public function update($behaviorType) {
158
        $hydrator = new ObjectPropertyHydrator();
159
        $values = $hydrator->extract($behaviorType);
160
 
161
        $update = $this->sql->update(self::_TABLE);
162
        $update->set($values);
163
        $update->where->equalTo('id', $behaviorType->id);
164
 
165
        return $this->executeUpdate($update);
166
    }
167
 
168
    /**
169
     *
170
     * @param Behavior $behaviorType
171
     * @return boolean
172
     */
2827 kerby 173
    public function delete($id) {
174
        $delete = $this->sql->delete(self::_TABLE);
175
        $delete->where->equalTo('id', $id);
630 efrain 176
 
2827 kerby 177
        return $this->executeDelete($delete);
630 efrain 178
    }
179
 
180
    /**
181
     *
182
     * @return boolean
183
     */
184
    public function truncate() {
185
        $sql = 'DELETE FROM ' . self::_TABLE;
186
        if ($this->executeSentenceWithParameters($sql)) {
187
            $sql = 'ALTER TABLE ' . self::_TABLE . ' AUTO_INCREMENT = 1 ';
188
            return $this->executeSentenceWithParameters($sql);
189
        }
190
        return false;
191
    }
192
 
193
    /**
194
     *
195
     * @return Behavior[]
196
     */
197
    public function fetchAllActives() {
198
        $prototype = new Behavior();
199
        $select = $this->sql->select(self::_TABLE);
200
        $select->where->equalTo('status', Behavior::STATUS_ACTIVE);
201
        $select->order('name ASC');
202
 
203
        return $this->executeFetchAllObject($select, $prototype);
204
    }
205
 
206
    /**
207
     *
208
     * @return Behavior[]
209
     */
210
    public function fetchAllActivesByDefault() {
211
        $prototype = new Behavior();
212
        $select = $this->sql->select(self::_TABLE);
213
        $select->where->equalTo('status', Behavior::STATUS_ACTIVE);
214
        $select->where->isNull('company_id');
215
        $select->order('name ASC');
216
 
217
        return $this->executeFetchAllObject($select, $prototype);
218
    }
219
 
220
    /**
221
     *
222
     * @return Behavior[]
223
     */
224
    public function fetchAllActivesByCompanyId($company_id) {
225
        $prototype = new Behavior();
226
        $select = $this->sql->select(self::_TABLE);
227
        $select->where->equalTo('company_id', $company_id);
228
        $select->where->equalTo('status', Behavior::STATUS_ACTIVE);
229
        $select->order('name ASC');
230
 
231
        return $this->executeFetchAllObject($select, $prototype);
232
    }
233
 
234
    /**
235
     *
236
     * @return Behavior[]
237
     */
238
    public function fetchAllByCompanyId($company_id) {
239
        $prototype = new Behavior();
240
        $select = $this->sql->select(self::_TABLE);
241
        $select->where->equalTo('company_id', $company_id);
242
        $select->order('name ASC');
243
 
244
        return $this->executeFetchAllObject($select, $prototype);
245
    }
246
 
247
     /**
248
     *
249
     * @param int $company_id
250
     * @param $behavior_id_default
251
     * @return Behavior
252
     */
253
    public function fetchOneByCompanyIdAndCompetencyIdDefault($company_id, $behavior_id_default)
254
    {
255
        $select = $this->sql->select(self::_TABLE);
256
        $select->where->equalTo('company_id', $company_id);
257
        $select->where->equalTo('behavior_id_default', $behavior_id_default);
258
        $select->limit(1);
259
 
260
        $prototype = new Behavior();
261
        return $this->executeFetchOneObject($select, $prototype);
262
    }
263
 
264
}