1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Copyright (c) 2017 Vinzenz Rosenkranz <[email protected]> |
4
|
|
|
* |
5
|
|
|
* @author Vinzenz Rosenkranz <[email protected]> |
6
|
|
|
* @author Kai Schröer <[email protected]> |
7
|
|
|
* @author René Gieling <[email protected]> |
8
|
|
|
* |
9
|
|
|
* @license GNU AGPL version 3 or any later version |
10
|
|
|
* |
11
|
|
|
* This program is free software: you can redistribute it and/or modify |
12
|
|
|
* it under the terms of the GNU Affero General Public License as |
13
|
|
|
* published by the Free Software Foundation, either version 3 of the |
14
|
|
|
* License, or (at your option) any later version. |
15
|
|
|
* |
16
|
|
|
* This program is distributed in the hope that it will be useful, |
17
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
18
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19
|
|
|
* GNU Affero General Public License for more details. |
20
|
|
|
* |
21
|
|
|
* You should have received a copy of the GNU Affero General Public License |
22
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
23
|
|
|
* |
24
|
|
|
*/ |
25
|
|
|
|
26
|
|
|
namespace OCA\Polls\Db; |
27
|
|
|
|
28
|
|
|
use JsonSerializable; |
29
|
|
|
|
30
|
|
|
use OCP\IUser; |
31
|
|
|
use OCP\AppFramework\Db\Entity; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @method int getId() |
35
|
|
|
* @method void setId(integer $value) |
36
|
|
|
* @method int getPollId() |
37
|
|
|
* @method void setPollId(integer $value) |
38
|
|
|
* @method string getUserId() |
39
|
|
|
* @method void setUserId(string $value) |
40
|
|
|
* @method string getDt() |
41
|
|
|
* @method void setDt(string $value) |
42
|
|
|
* @method string getComment() |
43
|
|
|
* @method void setComment(string $value) |
44
|
|
|
* @method string getTimestamp() |
45
|
|
|
* @method void setTimestamp(integer $value) |
46
|
|
|
*/ |
47
|
|
|
class Comment extends Entity implements JsonSerializable { |
48
|
|
|
|
49
|
|
|
/** @var int $pollId */ |
50
|
|
|
protected $pollId; |
51
|
|
|
|
52
|
|
|
/** @var string $userId */ |
53
|
|
|
protected $userId; |
54
|
|
|
|
55
|
|
|
/** @var string $dt */ |
56
|
|
|
protected $dt; |
57
|
|
|
|
58
|
|
|
/** @var int $timestamp */ |
59
|
|
|
protected $timestamp; |
60
|
|
|
|
61
|
|
|
/** @var string $comment */ |
62
|
|
|
protected $comment; |
63
|
|
|
|
64
|
|
|
public function jsonSerialize() { |
65
|
|
|
return [ |
66
|
|
|
'id' => intval($this->id), |
67
|
|
|
'pollId' => intval($this->pollId), |
68
|
|
|
'userId' => $this->userId, |
69
|
|
|
'dt' => $this->dt, |
70
|
|
|
'timestamp' => $this->getTimestamp(), |
71
|
|
|
'comment' => $this->comment, |
72
|
|
|
'isNoUser' => $this->getIsNoUser(), |
73
|
|
|
'displayName' => $this->getDisplayName() |
74
|
|
|
]; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
public function getTimestamp(): int { |
78
|
|
|
// too lazy for a migration |
79
|
|
|
// use timestamp if set, |
80
|
|
|
// otherwise use dt and convert to timestamp |
81
|
|
|
return intval($this->timestamp ? $this->timestamp : strtotime($this->dt)); |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
public function getDisplayName(): string { |
85
|
|
|
return \OC::$server->getUserManager()->get($this->userId) instanceof IUser |
86
|
|
|
? \OC::$server->getUserManager()->get($this->userId)->getDisplayName() |
87
|
|
|
: $this->userId; |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
public function getIsNoUser(): bool { |
91
|
|
|
return !(\OC::$server->getUserManager()->get($this->userId) instanceof IUser); |
92
|
|
|
} |
93
|
|
|
} |
94
|
|
|
|