Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Rev 4131 | 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
 
8
use LeadersLinked\Mapper\Common\MapperCommon;
9
use Laminas\Db\Adapter\AdapterInterface;
10
use Laminas\Log\LoggerInterface;
11
use LeadersLinked\Model\ChatUser;
12
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
13
 
14
class ChatUserMapper extends MapperCommon
15
{
16
    const _TABLE = 'tbl_chat_users';
17
 
18
    /**
19
     *
20
     * @var ChatUserMapper
21
     */
22
    private static $_instance;
23
 
24
    /**
25
     *
26
     * @param AdapterInterface $adapter
27
     * @param int $user_id
28
     */
29
    private function __construct($adapter)
30
    {
31
        parent::__construct($adapter);
32
    }
33
 
34
    /**
35
     *
36
     * @param AdapterInterface $adapter
37
     * @return ChatUserMapper
38
     */
39
    public static function getInstance($adapter)
40
    {
41
        if(self::$_instance == null) {
42
            self::$_instance = new ChatUserMapper($adapter);
43
        }
44
        return self::$_instance;
45
    }
46
 
47
    /**
48
     *
49
     * @param int $id
50
     * @return ChatUser
51
     */
52
    public function fetchOne($id)
53
    {
54
        $select = $this->sql->select(self::_TABLE);
55
        $select->where->equalTo('id', $id);
56
 
57
        $prototype = new ChatUser();
58
        return $this->executeFetchOneObject($select, $prototype);
59
    }
60
 
61
    /**
62
     *
63
     * @param string $uuid
64
     * @return ChatUser
65
     */
66
    public function fetchOneByUuid($uuid)
67
    {
68
        $prototype = new ChatUser();
69
        $select = $this->sql->select(self::_TABLE);
70
        $select->where->equalTo('uuid', $uuid);
71
        $select->limit(1);
72
        return $this->executeFetchOneObject($select, $prototype);
73
    }
74
 
75
 
76
    /**
77
     *
78
     * @param int $user1
79
     * @param int $user2
80
     * @return ChatUser
81
     */
82
    public function fetchOneByUserId1AndUserId2($user1, $user2)
83
    {
84
        $select = $this->sql->select(self::_TABLE);
85
        $select->where->nest()->equalTo('user_id1', $user1)->and->equalTo('user_id2', $user2)->unnest()
86
            ->or->nest()->equalTo('user_id1', $user2)->and->equalTo('user_id2', $user1)->unnest();
87
 
88
          //echo $select->getSqlString($this->adapter->platform); exit;
89
 
90
        $prototype = new ChatUser();
91
        return $this->executeFetchOneObject($select, $prototype);
92
    }
93
 
94
 
95
    /**
96
     *
97
     * @param ChatUser $chatUser
98
     * @return boolean
99
     */
100
    public function insert($chatUser)
101
    {
102
        $hydrator = new ObjectPropertyHydrator();
103
        $values = $hydrator->extract($chatUser);
104
        $values = $this->removeEmpty($values);
105
 
106
        $insert = $this->sql->insert(self::_TABLE);
107
        $insert->values($values);
108
        //echo $insert->getSqlString($this->adapter->platform); exit;
109
 
110
 
111
        $result =  $this->executeInsert($insert);
112
 
113
        if($result) {
114
            $chatUser->id = $this->lastInsertId;
115
        }
116
 
117
 
118
        return $result;
119
    }
3099 efrain 120
 
121
    /**
122
     *
123
     * @param int $id
124
     * @return boolean
125
     */
126
    public function markIsOpen1($id)
127
    {
128
        $update = $this->sql->update(self::_TABLE);
129
        $update->set(['user_open1' => ChatUser::OPEN_YES]);
130
        $update->where->equalTo('id', $id);
131
 
132
        return $this->executeUpdate($update);
133
    }
134
 
135
 
136
    /**
137
     *
138
     * @param int $id
139
     * @return boolean
140
     */
141
    public function markIsOpen2($id)
142
    {
143
        $update = $this->sql->update(self::_TABLE);
144
        $update->set(['user_open2' => ChatUser::OPEN_YES]);
145
        $update->where->equalTo('id', $id);
146
 
147
        return $this->executeUpdate($update);
148
    }
149
 
150
    /**
151
     *
152
     * @param int $id
153
     * @return boolean
154
     */
155
    public function markIsClose1($id)
156
    {
157
        $update = $this->sql->update(self::_TABLE);
158
        $update->set(['user_open1' => ChatUser::OPEN_NO]);
159
        $update->where->equalTo('id', $id);
160
 
161
        return $this->executeUpdate($update);
162
    }
163
 
164
 
165
    /**
166
     *
167
     * @param int $id
168
     * @return boolean
169
     */
170
    public function markIsClose2($id)
171
    {
172
        $update = $this->sql->update(self::_TABLE);
173
        $update->set(['user_open2' => ChatUser::OPEN_NO]);
174
        $update->where->equalTo('id', $id);
175
 
176
        return $this->executeUpdate($update);
177
    }
178
 
179
 
1 www 180
}