C:\xampp\htdocs\landing\wp-content\plugins\totalpoll\src\Log\Model.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<?php

namespace TotalPoll\Log;
defined'ABSPATH' ) && exit();


use 
TotalPoll\Contracts\Log\Model as ModelContract;

/**
 * Log Model.
 * @package TotalPoll\Log
 * @since   1.0.0
 */
class Model implements ModelContract {
    
/**
     * Log ID.
     *
     * @var int|null
     * @since 1.0.0
     */
    
protected $id null;

    
/**
     * Log date.
     *
     * @var \DateTime
     * @since 1.0.0
     */
    
protected $date null;

    
/**
     * Log IP.
     *
     * @var string
     * @since 1.0.0
     */
    
protected $ip null;

    
/**
     * Log user agent.
     * @var string
     * @since 1.0.0
     */
    
protected $useragent null;

    
/**
     * Log user ID.
     * @var int|null
     * @since 1.0.0
     */
    
protected $userId null;

    
/**
     * Log user.
     * @var \WP_User
     * @since 1.0.0
     */
    
protected $user null;

    
/**
     * Log poll ID.
     * @var int|null
     * @since 1.0.0
     */
    
protected $pollId null;

    
/**
     * Log poll.
     * @var \TotalPoll\Contracts\Poll\Model
     * @since 1.0.0
     */
    
protected $poll null;

    
/**
     * Log action.
     *
     * @var string
     * @since 1.0.0
     */
    
protected $action null;

    
/**
     * Log status.
     *
     * @var string
     * @since 1.0.0
     */
    
protected $status null;
    
/**
     * Log choices.
     * @var array
     * @since 1.0.0
     */
    
protected $choices = [];

    
/**
     * Log details.
     * @var array
     * @since 1.0.0
     */
    
protected $details = [];

    
/**
     * Log entry.
     * @var \TotalPoll\Contracts\Entry\Model
     * @since 4.0.8
     */
    
protected $entry null;

    
/**
     * Model constructor.
     *
     * @param $log array Log attributes.
     *
     * @since    1.0.0
     */
    
public function __construct$log ) {
        if ( 
is_array$log ) ):
            
$this->id        = (int) $log['id'];
            
$this->ip        = (string) $log['ip'];
            
$this->useragent trim$log['useragent'] );
            
$this->userId    = (int) $log['user_id'];
            
$this->pollId    = (int) $log['poll_id'];
            
$this->action    = (string) $log['action'];
            
$this->status    = (string) $log['status'];
            
$this->choices   = (array) json_decode$log['choices'], true );
            
$this->details   = (array) json_decode$log['details'], true );
            
$this->date      TotalPoll'datetime', [ $log['date'] ] );
            
$this->user      = new \WP_User$this->userId );
            
$this->poll      TotalPoll'polls.repository' )->getById$this->pollId );
            
$this->entry     TotalPoll'entries.repository' )->getByLogId$this->id );
        endif;
    }

    
/**
     * Get poll id.
     *
     * @return int
     * @since 1.0.0
     */
    
public function getId() {
        return (int) 
$this->id;
    }

    
/**
     * Get log date.
     *
     * @return \DateTime
     * @since 1.0.0
     */
    
public function getDate() {
        return 
$this->date;
    }

    
/**
     * Get log Ip.
     *
     * @return string
     * @since 1.0.0
     */
    
public function getIp() {
        return 
$this->ip;
    }

    
/**
     * Get user agent.
     *
     * @return string
     * @since 1.0.0
     */
    
public function getUseragent() {
        return 
$this->useragent;
    }

    
/**
     * Get user ID.
     *
     * @return int|null
     * @since 1.0.0
     */
    
public function getUserId() {
        return 
$this->userId;
    }

    
/**
     * Get user.
     *
     * @return \WP_User
     * @since 1.0.0
     */
    
public function getUser() {
        return 
$this->user;
    }

    
/**
     * Get poll ID.
     *
     * @return int
     * @since 1.0.0
     */
    
public function getPollId() {
        return 
$this->pollId;
    }

    
/**
     * Get poll model.
     *
     * @return \TotalPoll\Contracts\Poll\Model
     * @since 1.0.0
     */
    
public function getPoll() {
        return 
$this->poll;
    }

    
/**
     * Get action.
     *
     * @return string
     * @since 1.0.0
     */
    
public function getAction() {
        return 
$this->action;
    }

    
/**
     * Get status.
     *
     * @return string
     * @since 1.0.0
     */
    
public function getStatus() {
        return 
$this->status;
    }

    
/**
     * Get choices.
     *
     * @return array
     * @since 1.0.0
     */
    
public function getChoices() {
        return 
$this->choices;
    }

    
/**
     * Get details.
     *
     * @return array
     * @since 1.0.0
     */
    
public function getDetails() {
        return 
$this->details;
    }

    
/**
     * Get entry.
     *
     * @return array
     * @since 4.0.8
     */
    
public function getEntry() {
        return 
$this->entry;
    }

    
/**
     * Get Serializable JSON of this instance
     *
     * @return array
     */
    
public function jsonSerialize() {
        return 
$this->toArray();
    }

    
/**
     * Get the instance as an array.
     *
     * @return array
     */
    
public function toArray() {
        return [
            
'id'        => $this->id,
            
'ip'        => $this->ip,
            
'useragent' => $this->useragent,
            
'user'      => $this->userId ? [
                
'id'    => $this->userId,
                
'login' => $this->user->user_login,
                
'name'  => $this->user->display_name,
                
'email' => $this->user->user_email,
            ] : [ 
'id' => $this->userId ],
            
'poll'      => $this->getPoll(),
            
'choices'   => $this->choices,
            
'entry'     => $this->getEntry(),
            
'action'    => ucfirst$this->action ),
            
'status'    => ucfirst$this->status ),
            
'details'   => $this->details,
            
'date'      => $this->date->formatDATE_ATOM ),
        ];
    }

    
/**
     * @param mixed $offset
     *
     * @return bool
     */
    
public function offsetExists$offset ) {
        return isset( 
$this->{$offset} );
    }

    
/**
     * @param mixed $offset
     *
     * @return mixed
     */
    
public function offsetGet$offset ) {
        return isset( 
$this->{$offset} ) ? $this->{$offset} : null;
    }

    
/**
     * @param mixed $offset
     * @param mixed $value
     */
    
public function offsetSet$offset$value ) {

    }

    
/**
     * @param mixed $offset
     */
    
public function offsetUnset$offset ) {

    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586