Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1684 | Rev 6056 | 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\Comment;
8
use LeadersLinked\Mapper\Common\MapperCommon;
9
use Laminas\Db\Adapter\AdapterInterface;
10
use Laminas\Log\LoggerInterface;
11
use Laminas\Db\Sql\Expression;
12
use Laminas\Db\Sql\Insert;
13
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
14
use LeadersLinked\Model\Feed;
15
 
16
 
17
class CommentMapper extends MapperCommon
18
{
19
    const _TABLE = 'tbl_comments';
20
 
21
 
22
    /**
23
     *
24
     * @var CommentMapper
25
     */
26
    private static $_instance;
27
 
28
    /**
29
     *
30
     * @param AdapterInterface $adapter
31
     */
32
    private function __construct($adapter)
33
    {
34
        parent::__construct($adapter);
35
    }
36
 
37
    /**
38
     *
39
     * @param AdapterInterface $adapter
40
     * @param LoggerInterface $logger
41
     * @param int $user_id
42
     * @return \LeadersLinked\Mapper\CommentMapper
43
     */
44
    public static function getInstance($adapter)
45
    {
46
        if(self::$_instance == null) {
47
            self::$_instance = new CommentMapper($adapter);
48
        }
49
        return self::$_instance;
50
    }
51
 
52
    /**
53
     *
54
     * @param int $uuid
55
     * @return Comment
56
     */
57
    public function fetchOneByUuid($uuid)
58
    {
59
        $prototype = new Comment;
60
        $select = $this->sql->select(self::_TABLE);
61
        $select->where->equalTo('uuid', $uuid);
62
 
63
        return $this->executeFetchOneObject($select, $prototype);
64
    }
65
 
66
 
67
    /**
68
     *
69
     * @param int $feed_id
70
     * @return int
71
     */
72
    public function fetchCountCommentByFeedId($feed_id)
73
    {
74
        $select = $this->sql->select(self::_TABLE);
75
        $select->columns(['total' => new Expression('COUNT(*)') ]);
76
        $select->where->equalTo('feed_id', $feed_id);
4808 efrain 77
        $select->where->equalTo('relational', Comment::RELATIONAL_FEED);
1 www 78
        $select->where->equalTo('status', Feed::STATUS_PUBLISHED);
79
 
80
        $record = $this->executeFetchOneArray($select);
81
        return $record['total'];
82
    }
83
 
4808 efrain 84
    /**
85
     *
86
     * @param int $post_id
87
     * @return int
88
     */
89
    public function fetchCountCommentByPostId($post_id)
90
    {
91
        $select = $this->sql->select(self::_TABLE);
92
        $select->columns(['total' => new Expression('COUNT(*)') ]);
93
        $select->where->equalTo('post_id', $post_id);
94
        $select->where->equalTo('relational', Comment::RELATIONAL_POST);
95
 
96
        $select->where->equalTo('status', Feed::STATUS_PUBLISHED);
97
 
98
        $record = $this->executeFetchOneArray($select);
99
        return $record['total'];
100
    }
1 www 101
 
4808 efrain 102
 
1 www 103
    /**
104
     *
105
     * @param int $feed_id
106
     * @return Comment[]
107
     */
108
    public function fetchAllByFeedId($feed_id)
109
    {
110
        $prototype = new Comment();
111
 
112
        $select = $this->sql->select(self::_TABLE);
113
        $select->where->equalTo('feed_id', $feed_id);
4808 efrain 114
        $select->where->equalTo('relational', Comment::RELATIONAL_FEED);
1 www 115
 
116
        return $this->executeFetchAllObject($select, $prototype);
117
    }
118
 
119
    /**
120
     *
4808 efrain 121
     * @param int $post_id
122
     * @return Comment[]
123
     */
124
    public function fetchAllByPostId($post_id)
125
    {
126
        $prototype = new Comment();
127
 
128
        $select = $this->sql->select(self::_TABLE);
129
        $select->where->equalTo('post_id', $post_id);
130
        $select->where->equalTo('relational', Comment::RELATIONAL_POST);
131
 
132
        return $this->executeFetchAllObject($select, $prototype);
133
    }
134
 
135
    /**
136
     *
1 www 137
     * @param int $feed_id
138
     * @return Comment[]
139
     */
140
    public function fetchAllPublishedByFeedId($feed_id)
141
    {
142
        $prototype = new Comment();
143
 
144
        $select = $this->sql->select(self::_TABLE);
145
        $select->where->equalTo('feed_id', $feed_id);
146
        $select->where->equalTo('status', Feed::STATUS_PUBLISHED);
4808 efrain 147
        $select->where->equalTo('relational', Comment::RELATIONAL_FEED);
1682 nelberth 148
        $select->where->IsNull('parent_id');
1 www 149
        return $this->executeFetchAllObject($select, $prototype);
150
    }
4808 efrain 151
 
152
 
153
    /**
154
     *
155
     * @param int $post_id
156
     * @return Comment[]
157
     */
158
    public function fetchAllPublishedByPostId($post_id)
159
    {
160
        $prototype = new Comment();
161
 
162
        $select = $this->sql->select(self::_TABLE);
163
        $select->where->equalTo('post_id', $post_id);
164
        $select->where->equalTo('status', Feed::STATUS_PUBLISHED);
165
        $select->where->equalTo('relational', Comment::RELATIONAL_POST);
166
        $select->where->IsNull('parent_id');
167
        return $this->executeFetchAllObject($select, $prototype);
168
    }
169
 
1684 nelberth 170
    public function fetchAllPublishedByCommentId($comment_id)
171
    {
172
        $prototype = new Comment();
173
 
174
        $select = $this->sql->select(self::_TABLE);
175
        $select->where->equalTo('parent_id', $comment_id);
176
        $select->where->equalTo('status', Feed::STATUS_PUBLISHED);
177
        return $this->executeFetchAllObject($select, $prototype);
178
    }
1 www 179
 
180
    /**
181
     *
182
     * @param int $id
183
     * @return Comment
184
     */
185
    public function fetchOne($id)
186
    {
187
        $prototype = new Comment();
188
 
189
        $select = $this->sql->select(self::_TABLE);
190
        $select->where->equalTo('id', $id);
191
 
192
        return $this->executeFetchOneObject($select, $prototype);
193
    }
194
 
195
    /**
196
     *
197
     * @param Comment $comment
198
     * @return boolean
199
     */
200
    public function insert($comment)
201
    {
202
        $hydrator = new ObjectPropertyHydrator();
203
        $values = $hydrator->extract($comment);
204
        $values = $this->removeEmpty($values);
205
 
206
 
207
        $insert = $this->sql->insert(self::_TABLE);
208
        $insert->values($values);
209
 
210
        $result = $this->executeInsert($insert);
211
        if($result) {
212
           $comment->id = $this->getLastInsertId();
213
        }
214
 
215
        return $result;
216
 
217
    }
218
 
219
 
220
    /**
221
     *
222
     * @param Comment $comment
223
     * @return boolean
224
     */
225
    public function update($comment)
226
    {
227
        $hydrator = new ObjectPropertyHydrator();
228
        $values = $hydrator->extract($comment);
229
        $values = $this->removeEmpty($values);
230
 
231
 
232
        $update = $this->sql->update(self::_TABLE);
233
        $update->set($values);
234
        $update->where->equalTo('id', $comment->id);
235
 
236
 
237
 
238
 
239
        return $this->executeUpdate($update);
240
    }
241
 
242
 
243
    /**
244
     *
245
     * @param int $id
246
     * @return boolean
247
     */
248
    public function delete($id)
249
    {
250
 
251
 
252
        $update = $this->sql->update(self::_TABLE);
253
        $update->set([
254
            'status' => Comment::STATUS_DELETED
255
        ]);
256
        $update->where->equalTo('id', $id);
257
 
258
        return $this->executeUpdate($update);
259
    }
260
 
261
    /**
262
     *
263
     * @param int $feed_id
264
     * @return boolean
265
     */
266
    public function deleteAllByFeedId($feed_id)
267
    {
268
 
269
        $update = $this->sql->update(self::_TABLE);
270
        $update->set([
271
            'status' => Comment::STATUS_DELETED
272
        ]);
273
        $update->where->equalTo('feed_id', $feed_id);
274
 
275
        return $this->executeUpdate($update);
276
    }
277
}