|
1
|
|
|
<?php namespace XoopsModules\Smallworld; |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* You may not change or alter any portion of this comment or credits |
|
5
|
|
|
* of supporting developers from this source code or any supporting source code |
|
6
|
|
|
* which is considered copyrighted (c) material of the original comment or credit authors. |
|
7
|
|
|
* |
|
8
|
|
|
* This program is distributed in the hope that it will be useful, |
|
9
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
11
|
|
|
*/ |
|
12
|
|
|
|
|
13
|
|
|
/** |
|
14
|
|
|
* SmallWorld |
|
15
|
|
|
* |
|
16
|
|
|
* @copyright The XOOPS Project (https://xoops.org) |
|
17
|
|
|
* @copyright 2011 Culex |
|
18
|
|
|
* @license GNU GPL (http://www.gnu.org/licenses/gpl-2.0.html/) |
|
19
|
|
|
* @package SmallWorld |
|
20
|
|
|
* @since 1.0 |
|
21
|
|
|
* @author Michael Albertsen (http://culex.dk) <[email protected]> |
|
22
|
|
|
*/ |
|
23
|
|
|
|
|
24
|
|
|
//include_once $GLOBALS['xoops']->path('include/common.php'); |
|
25
|
|
|
|
|
26
|
|
|
// Moderated and fitted from the tutorial by Srinivas Tamada http://9lessons.info |
|
27
|
|
|
|
|
28
|
|
|
class WallUpdates |
|
29
|
|
|
{ |
|
30
|
|
|
/** |
|
31
|
|
|
* @return array |
|
32
|
|
|
*/ |
|
33
|
|
|
private function getAdminModerators() |
|
|
|
|
|
|
34
|
|
|
{ |
|
35
|
|
|
global $xoopsDB, $xoopsUser; |
|
36
|
|
|
$data = []; |
|
37
|
|
|
$sql = 'SELECT userid |
|
38
|
|
|
FROM ' . $xoopsDB->prefix('smallworld_user') . ' su |
|
39
|
|
|
LEFT JOIN ' . $xoopsDB->prefix('groups_users_link') . ' xu ON su.userid = xu.uid |
|
40
|
|
|
WHERE xu.uid IN (1)'; |
|
41
|
|
|
$result = $xoopsDB->queryF($sql); |
|
42
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
43
|
|
|
$data[] = $row; |
|
44
|
|
|
} |
|
45
|
|
|
return $data; |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* @param $last |
|
50
|
|
|
* @param $uid |
|
51
|
|
|
* @param $followers |
|
52
|
|
|
* @return array|bool |
|
|
|
|
|
|
53
|
|
|
*/ |
|
54
|
|
|
public function Updates($last, $uid, $followers) |
|
55
|
|
|
{ |
|
56
|
|
|
global $xoopsUser, $xoopsDB, $moduleConfig; |
|
57
|
|
|
$query = ''; |
|
58
|
|
|
$hm = smallworld_GetModuleOption('msgtoshow'); |
|
59
|
|
|
$set = smallworld_checkPrivateOrPublic(); |
|
|
|
|
|
|
60
|
|
|
$followers = is_array($followers) ? $followers : [$followers]; |
|
61
|
|
|
$followers = array_unique(Smallworld_array_flatten($followers, 0)); |
|
62
|
|
|
|
|
63
|
|
|
$i = 0; |
|
64
|
|
|
if (0 == $last) { |
|
65
|
|
|
$query = 'SELECT M.msg_id, M.uid_fk, M.priv, M.message, M.created, U.username FROM ' . $xoopsDB->prefix('smallworld_messages') . ' M, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE M.uid_fk=U.userid AND M.uid_fk='" . $uid . "'"; |
|
66
|
|
|
} elseif ($last > 0) { |
|
67
|
|
|
$query = 'SELECT M.msg_id, M.uid_fk, M.priv, M.message, M.created, U.username FROM ' . $xoopsDB->prefix('smallworld_messages') . ' M, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE M.uid_fk=U.userid AND M.uid_fk='" . $uid . "' AND M.msg_id < '" . $last . "'"; |
|
68
|
|
|
} elseif ('a' === $last) { |
|
69
|
|
|
$query = 'SELECT M.msg_id, M.uid_fk, M.priv, M.message, M.created, U.username FROM ' . $xoopsDB->prefix('smallworld_messages') . ' M, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE M.uid_fk=U.userid AND M.uid_fk='" . $uid . "'"; |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
View Code Duplication |
if (is_array($followers)) { |
|
|
|
|
|
|
73
|
|
|
foreach ($followers as $k => $v) { |
|
74
|
|
|
if ($last > 0) { |
|
75
|
|
|
$query .= " OR M.uid_fk=U.userid and M.uid_fk= '" . $v . "' and M.msg_id < '" . $last . "'"; |
|
76
|
|
|
} elseif (0 == $last) { |
|
77
|
|
|
$query .= " OR M.uid_fk=U.userid and M.uid_fk= '" . $v . "'"; |
|
78
|
|
|
} elseif ('a' === $last) { |
|
79
|
|
|
$query .= " OR M.uid_fk=U.userid and M.uid_fk= '" . $v . "'"; |
|
80
|
|
|
} |
|
81
|
|
|
++$i; |
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
View Code Duplication |
if (!is_array($followers)) { |
|
|
|
|
|
|
85
|
|
|
$followers = $uid; |
|
86
|
|
|
if ($last > 0) { |
|
87
|
|
|
$query .= " OR M.uid_fk=U.userid and M.uid_fk= '" . $followers . "' and M.msg_id < '" . $last . "'"; |
|
88
|
|
|
} elseif (0 == $last) { |
|
89
|
|
|
$query .= " OR M.uid_fk=U.userid and M.uid_fk= '" . $followers . "'"; |
|
90
|
|
|
} elseif ('a' === $last) { |
|
91
|
|
|
$query .= " OR M.uid_fk=U.userid and M.uid_fk= '" . $followers . "'"; |
|
92
|
|
|
} |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
View Code Duplication |
if ($last > 0) { |
|
|
|
|
|
|
96
|
|
|
$query .= ' order by created DESC LIMIT ' . $hm; |
|
97
|
|
|
} elseif ('a' === $last) { |
|
98
|
|
|
$query .= ' order by M.msg_id DESC LIMIT ' . $hm; |
|
99
|
|
|
} else { |
|
100
|
|
|
$query .= ' order by created DESC LIMIT ' . $hm; |
|
101
|
|
|
} |
|
102
|
|
|
$result = $xoopsDB->queryF($query); |
|
103
|
|
|
$count = $xoopsDB->getRowsNum($result); |
|
104
|
|
|
if (0 == $count) { |
|
105
|
|
|
return false; |
|
106
|
|
|
} else { |
|
107
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
108
|
|
|
$data[] = $row; |
|
|
|
|
|
|
109
|
|
|
} |
|
110
|
|
|
if (!empty($data)) { |
|
111
|
|
|
return $data; |
|
112
|
|
|
} |
|
113
|
|
|
} |
|
114
|
|
|
} |
|
115
|
|
|
|
|
116
|
|
|
/** |
|
117
|
|
|
* @Get comments based on msg id |
|
118
|
|
|
* @param int $msg_id |
|
119
|
|
|
* @return array |
|
|
|
|
|
|
120
|
|
|
*/ |
|
121
|
|
|
public function Comments($msg_id) |
|
122
|
|
|
{ |
|
123
|
|
|
global $xoopsUser, $xoopsDB; |
|
124
|
|
|
$query = 'SELECT C.msg_id_fk, C.com_id, C.uid_fk, C.comment, C.created, U.username FROM ' . $xoopsDB->prefix('smallworld_comments') . ' C, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE C.uid_fk=U.userid AND C.msg_id_fk='" . $msg_id . "' ORDER BY C.com_id ASC "; |
|
125
|
|
|
$result = $xoopsDB->queryF($query); |
|
126
|
|
|
$i = $xoopsDB->getRowsNum($result); |
|
|
|
|
|
|
127
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
128
|
|
|
$data[] = $row; |
|
|
|
|
|
|
129
|
|
|
} |
|
130
|
|
|
if (!empty($data)) { |
|
131
|
|
|
return $data; |
|
132
|
|
|
} |
|
133
|
|
|
} |
|
134
|
|
|
|
|
135
|
|
|
/** |
|
136
|
|
|
* @Get user image based on uid |
|
137
|
|
|
* @param int $uid |
|
138
|
|
|
* @return string |
|
139
|
|
|
*/ |
|
140
|
|
View Code Duplication |
public function Gravatar($uid) |
|
|
|
|
|
|
141
|
|
|
{ |
|
142
|
|
|
global $xoopsUser, $xoopsDB; |
|
143
|
|
|
$image = ''; |
|
144
|
|
|
$sql = 'SELECT userimage FROM ' . $xoopsDB->prefix('smallworld_user') . " WHERE userid = '" . $uid . "'"; |
|
145
|
|
|
$result = $xoopsDB->queryF($sql); |
|
146
|
|
|
while ($r = $xoopsDB->fetchArray($result)) { |
|
147
|
|
|
$image = $r['userimage']; |
|
148
|
|
|
} |
|
149
|
|
|
|
|
150
|
|
|
$image = ('' == $image || 'blank.gif' === $image) ? smallworld_getAvatarLink($uid, $image) : $image; |
|
151
|
|
|
|
|
152
|
|
|
$type = [ |
|
153
|
|
|
1 => 'jpg', |
|
154
|
|
|
2 => 'jpeg', |
|
155
|
|
|
3 => 'png', |
|
156
|
|
|
4 => 'gif', |
|
157
|
|
|
]; |
|
158
|
|
|
|
|
159
|
|
|
$ext = explode('.', $image); |
|
160
|
|
|
|
|
161
|
|
|
if (@!in_array(strtolower($ext[1]), $type) || '' == $image) { |
|
162
|
|
|
$avatar = ''; |
|
163
|
|
|
} else { |
|
164
|
|
|
$avatar = $image; |
|
165
|
|
|
} |
|
166
|
|
|
return $avatar; |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
/** |
|
170
|
|
|
* @Insert update |
|
171
|
|
|
* @param int $uid |
|
172
|
|
|
* @param string|array $update |
|
173
|
|
|
* @param int $priv |
|
174
|
|
|
* @return array|bool |
|
|
|
|
|
|
175
|
|
|
*/ |
|
176
|
|
|
public function Insert_Update($uid, $update, $priv) |
|
177
|
|
|
{ |
|
178
|
|
|
global $xoopsUser, $xoopsDB; |
|
179
|
|
|
$update = Smallworld_sanitize(htmlentities($update, ENT_QUOTES, 'UTF-8')); |
|
180
|
|
|
$time = time(); |
|
181
|
|
|
if (!isset($priv)) { |
|
182
|
|
|
$priv = 0; |
|
183
|
|
|
} |
|
184
|
|
|
$query = 'SELECT msg_id,message FROM ' . $xoopsDB->prefix('smallworld_messages') . " WHERE uid_fk='" . $uid . "' ORDER BY msg_id DESC LIMIT 1"; |
|
185
|
|
|
$result = $xoopsDB->queryF($query); |
|
186
|
|
|
$row = $xoopsDB->fetchArray($result); |
|
187
|
|
|
if ($update != $row['message']) { |
|
188
|
|
|
$query = 'INSERT INTO ' . $xoopsDB->prefix('smallworld_messages') . " (message, uid_fk, priv, created) VALUES ('" . $update . "', '" . $uid . "', '" . $priv . "', '" . $time . "')"; |
|
189
|
|
|
$result = $xoopsDB->queryF($query); |
|
|
|
|
|
|
190
|
|
|
$newquery = 'SELECT M.msg_id, M.uid_fk, M.priv, M.message, M.created, U.username FROM ' . $xoopsDB->prefix('smallworld_messages') . ' M, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE M.uid_fk=U.userid AND M.uid_fk='" . $uid . "' ORDER BY M.msg_id DESC LIMIT 1 "; |
|
191
|
|
|
$result2 = $xoopsDB->queryF($newquery); |
|
192
|
|
|
while ($row = $xoopsDB->fetchArray($result2)) { |
|
193
|
|
|
$data[] = $row; |
|
|
|
|
|
|
194
|
|
|
} |
|
195
|
|
|
$count = $xoopsDB->getRowsNum($result2); |
|
196
|
|
|
if ($count < 1) { |
|
197
|
|
|
return false; |
|
198
|
|
|
} else { |
|
199
|
|
|
while ($row = $xoopsDB->fetchArray($result2)) { |
|
200
|
|
|
$data[] = $row; |
|
|
|
|
|
|
201
|
|
|
} |
|
202
|
|
|
if (!empty($data)) { |
|
203
|
|
|
return $data; |
|
204
|
|
|
} |
|
205
|
|
|
} |
|
206
|
|
|
} |
|
207
|
|
|
} |
|
208
|
|
|
|
|
209
|
|
|
/** |
|
210
|
|
|
* @Insert comment |
|
211
|
|
|
* @param int $uid |
|
212
|
|
|
* @param int $msg_id |
|
213
|
|
|
* @param string|array $comment |
|
214
|
|
|
* @return string / void |
|
215
|
|
|
*/ |
|
216
|
|
|
public function Insert_Comment($uid, $msg_id, $comment) |
|
217
|
|
|
{ |
|
218
|
|
|
global $xoopsUser, $xoopsDB; |
|
219
|
|
|
$comment = Smallworld_sanitize(htmlentities($comment, ENT_QUOTES, 'UTF-8')); |
|
220
|
|
|
$time = time(); |
|
221
|
|
|
$query = 'SELECT com_id,comment FROM ' . $xoopsDB->prefix('smallworld_comments') . " WHERE uid_fk='" . $uid . "' AND msg_id_fk='" . $msg_id . "' ORDER BY com_id DESC LIMIT 1 "; |
|
222
|
|
|
$result = $xoopsDB->fetchArray($query); |
|
223
|
|
|
if ($comment != $result['comment']) { |
|
224
|
|
|
$query = 'INSERT INTO ' . $xoopsDB->prefix('smallworld_comments') . " (comment, uid_fk,msg_id_fk,created) VALUES ('" . $comment . "', '" . $uid . "','" . $msg_id . "', '" . $time . "')"; |
|
225
|
|
|
$result = $xoopsDB->queryF($query); |
|
|
|
|
|
|
226
|
|
|
$newquery = 'SELECT C.com_id, C.uid_fk, C.comment, C.msg_id_fk, C.created, U.username FROM ' |
|
227
|
|
|
. $xoopsDB->prefix('smallworld_comments') |
|
228
|
|
|
. ' C, ' |
|
229
|
|
|
. $xoopsDB->prefix('smallworld_user') |
|
230
|
|
|
. " U WHERE C.uid_fk=U.userid AND C.uid_fk='" |
|
231
|
|
|
. $uid |
|
232
|
|
|
. "' AND C.msg_id_fk='" |
|
233
|
|
|
. $msg_id |
|
234
|
|
|
. "' ORDER BY C.com_id DESC LIMIT 1 "; |
|
235
|
|
|
$result2 = $xoopsDB->queryF($newquery); |
|
236
|
|
|
while ($row = $xoopsDB->fetchArray($result2)) { |
|
237
|
|
|
$data[0] = $row; |
|
|
|
|
|
|
238
|
|
|
} |
|
239
|
|
|
return $data[0]; |
|
|
|
|
|
|
240
|
|
|
} else { |
|
241
|
|
|
return false; |
|
|
|
|
|
|
242
|
|
|
} |
|
243
|
|
|
} |
|
244
|
|
|
|
|
245
|
|
|
/** |
|
246
|
|
|
* @Get array of users followers |
|
247
|
|
|
* @param int $me |
|
248
|
|
|
* @return array |
|
|
|
|
|
|
249
|
|
|
*/ |
|
250
|
|
|
public function getFollowers($me) |
|
251
|
|
|
{ |
|
252
|
|
|
global $xoopsDB, $xoopsUser; |
|
253
|
|
|
$query = 'SELECT you FROM ' . $xoopsDB->prefix('smallworld_followers') . " WHERE me = '" . $me . "'"; |
|
254
|
|
|
$result = $xoopsDB->queryF($query); |
|
255
|
|
|
$i = $xoopsDB->getRowsNum($result); |
|
256
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
257
|
|
|
$data[] = $row; |
|
|
|
|
|
|
258
|
|
|
} |
|
259
|
|
|
if (0 == $i) { |
|
260
|
|
|
$data = [$me]; |
|
261
|
|
|
} |
|
262
|
|
|
if (!empty($data)) { |
|
263
|
|
|
return $data; |
|
264
|
|
|
} |
|
265
|
|
|
} |
|
266
|
|
|
|
|
267
|
|
|
/** |
|
268
|
|
|
* @count all votes |
|
269
|
|
|
* @param int $type |
|
270
|
|
|
* @param int $val |
|
271
|
|
|
* @param int $msgid |
|
272
|
|
|
* @return int |
|
273
|
|
|
*/ |
|
274
|
|
View Code Duplication |
public function countVotes($type, $val, $msgid) |
|
|
|
|
|
|
275
|
|
|
{ |
|
276
|
|
|
global $xoopsUser, $xoopsDB; |
|
277
|
|
|
$query = 'Select SUM(' . $val . ') as sum from ' . $xoopsDB->prefix('smallworld_vote') . " where msg_id = '" . $msgid . "' and com_id = '0'"; |
|
278
|
|
|
$result = $xoopsDB->queryF($query); |
|
279
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
280
|
|
|
$sum = $row['sum']; |
|
281
|
|
|
} |
|
282
|
|
|
if ('' == $sum) { |
|
|
|
|
|
|
283
|
|
|
$sum = '0'; |
|
284
|
|
|
} |
|
285
|
|
|
return $sum; |
|
286
|
|
|
} |
|
287
|
|
|
|
|
288
|
|
|
/** |
|
289
|
|
|
* @Count comments votes |
|
290
|
|
|
* @param int $type |
|
291
|
|
|
* @param int $val |
|
292
|
|
|
* @param int $comid |
|
293
|
|
|
* @param int $msgid |
|
294
|
|
|
* @returns int |
|
295
|
|
|
* @return mixed|string |
|
296
|
|
|
* @return mixed|string |
|
297
|
|
|
*/ |
|
298
|
|
View Code Duplication |
public function countVotesCom($type, $val, $comid, $msgid) |
|
|
|
|
|
|
299
|
|
|
{ |
|
300
|
|
|
global $xoopsUser, $xoopsDB; |
|
301
|
|
|
$query = 'Select SUM(' . $val . ') as sum from ' . $xoopsDB->prefix('smallworld_vote') . " where com_id = '" . $comid . "' AND msg_id = '" . $msgid . "'"; |
|
302
|
|
|
$result = $xoopsDB->queryF($query); |
|
303
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
304
|
|
|
$sum = $row['sum']; |
|
305
|
|
|
} |
|
306
|
|
|
if ('' == $sum) { |
|
|
|
|
|
|
307
|
|
|
$sum = '0'; |
|
308
|
|
|
} |
|
309
|
|
|
return $sum; |
|
310
|
|
|
} |
|
311
|
|
|
|
|
312
|
|
|
/** |
|
313
|
|
|
* @Check if user is friend |
|
314
|
|
|
* @param int $userid |
|
315
|
|
|
* @param string $type |
|
316
|
|
|
* @param int $comid |
|
317
|
|
|
* @param int $msgid |
|
318
|
|
|
* @return int |
|
319
|
|
|
*/ |
|
320
|
|
View Code Duplication |
public function HasVoted($userid, $type, $comid, $msgid) |
|
|
|
|
|
|
321
|
|
|
{ |
|
322
|
|
|
global $xoopsUser, $xoopsDB; |
|
323
|
|
|
if ('msg' === $type) { |
|
324
|
|
|
$sql = 'SELECT * FROM ' . $xoopsDB->prefix('smallworld_vote') . " WHERE com_id = '0' AND msg_id = '" . $msgid . "' AND user_id = '" . $userid . "'"; |
|
325
|
|
|
$result = $xoopsDB->queryF($sql); |
|
326
|
|
|
$i = $xoopsDB->getRowsNum($result); |
|
327
|
|
|
} else { |
|
328
|
|
|
$sql = 'SELECT * FROM ' . $xoopsDB->prefix('smallworld_vote') . " WHERE com_id = '" . $comid . "' AND msg_id = '" . $msgid . "' AND user_id = '" . $userid . "'"; |
|
329
|
|
|
$result = $xoopsDB->queryF($sql); |
|
330
|
|
|
$i = $xoopsDB->getRowsNum($result); |
|
331
|
|
|
} |
|
332
|
|
|
return $i; |
|
333
|
|
|
} |
|
334
|
|
|
|
|
335
|
|
|
/** |
|
336
|
|
|
* @count messages per user |
|
337
|
|
|
* @param int $userid |
|
338
|
|
|
* @return int |
|
339
|
|
|
*/ |
|
340
|
|
View Code Duplication |
public function CountMsges($userid) |
|
|
|
|
|
|
341
|
|
|
{ |
|
342
|
|
|
global $xoopsDB; |
|
343
|
|
|
$sql = 'SELECT (SELECT COUNT(*) FROM ' . $xoopsDB->prefix('smallworld_comments') . " WHERE uid_fk = '" . $userid . "') + (SELECT COUNT(*) FROM " . $xoopsDB->prefix('smallworld_messages') . " WHERE uid_fk = '" . $userid . "')"; |
|
344
|
|
|
$result = $xoopsDB->queryF($sql); |
|
345
|
|
|
$sum = $xoopsDB->fetchRow($result); |
|
346
|
|
|
return $sum[0]; |
|
347
|
|
|
} |
|
348
|
|
|
|
|
349
|
|
|
/** |
|
350
|
|
|
* @Show permaling updates |
|
351
|
|
|
* @param int $updid |
|
352
|
|
|
* @param int $uid |
|
353
|
|
|
* @param int $ownerID |
|
354
|
|
|
* @return array|bool |
|
|
|
|
|
|
355
|
|
|
*/ |
|
356
|
|
View Code Duplication |
public function UpdatesPermalink($updid, $uid, $ownerID) |
|
|
|
|
|
|
357
|
|
|
{ |
|
358
|
|
|
global $xoopsUser, $xoopsDB, $moduleConfig; |
|
359
|
|
|
$query = 'SELECT M.msg_id, M.uid_fk, M.message, M.created, M.priv, U.username FROM ' . $xoopsDB->prefix('smallworld_messages') . ' M, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE M.uid_fk=U.userid AND M.uid_fk='" . $ownerID . "'"; |
|
360
|
|
|
$query .= " AND M.msg_id = '" . $updid . "'"; |
|
361
|
|
|
$query .= ' order by M.created DESC LIMIT 1'; |
|
362
|
|
|
$result = $xoopsDB->queryF($query); |
|
363
|
|
|
$count = $xoopsDB->getRowsNum($result); |
|
364
|
|
|
if ($count < 1) { |
|
365
|
|
|
return false; |
|
366
|
|
|
} else { |
|
367
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
368
|
|
|
$data[] = $row; |
|
|
|
|
|
|
369
|
|
|
} |
|
370
|
|
|
if (!empty($data)) { |
|
371
|
|
|
return $data; |
|
372
|
|
|
} |
|
373
|
|
|
} |
|
374
|
|
|
} |
|
375
|
|
|
|
|
376
|
|
|
/** |
|
377
|
|
|
* @Get share link |
|
378
|
|
|
* @param int $updid |
|
379
|
|
|
* @param int $ownerID |
|
380
|
|
|
* @return array|bool |
|
|
|
|
|
|
381
|
|
|
*/ |
|
382
|
|
View Code Duplication |
public function UpdatesSharelink($updid, $ownerID) |
|
|
|
|
|
|
383
|
|
|
{ |
|
384
|
|
|
global $xoopsUser, $xoopsDB, $moduleConfig, $xoopsLogger; |
|
385
|
|
|
$xoopsLogger->activated = false; |
|
386
|
|
|
//error_reporting(E_ALL); |
|
387
|
|
|
$query = 'SELECT M.msg_id, M.uid_fk, M.message, M.created, M.priv, U.username FROM ' . $xoopsDB->prefix('smallworld_messages') . ' M, ' . $xoopsDB->prefix('smallworld_user') . " U WHERE M.uid_fk=U.userid AND M.uid_fk='" . $ownerID . "' AND M.priv = 0"; |
|
388
|
|
|
$query .= " AND M.msg_id = '" . $updid . "'"; |
|
389
|
|
|
$query .= ' order by created DESC LIMIT 1'; |
|
390
|
|
|
$result = $xoopsDB->queryF($query); |
|
391
|
|
|
$count = $xoopsDB->getRowsNum($result); |
|
392
|
|
|
if ($count < 1) { |
|
393
|
|
|
return false; |
|
394
|
|
|
} else { |
|
395
|
|
|
while ($row = $xoopsDB->fetchArray($result)) { |
|
396
|
|
|
$data[] = $row; |
|
|
|
|
|
|
397
|
|
|
} |
|
398
|
|
|
if (!empty($data)) { |
|
399
|
|
|
return $data; |
|
400
|
|
|
} |
|
401
|
|
|
} |
|
402
|
|
|
} |
|
403
|
|
|
|
|
404
|
|
|
/** |
|
405
|
|
|
* @Get sharing link |
|
406
|
|
|
* @param int $id |
|
407
|
|
|
* @param int $priv |
|
408
|
|
|
* @return string |
|
409
|
|
|
*/ |
|
410
|
|
View Code Duplication |
public function GetSharing($id, $priv) |
|
|
|
|
|
|
411
|
|
|
{ |
|
412
|
|
|
if (1 != $priv) { |
|
413
|
|
|
$text = " | <span class='smallworld_share' id='smallworld_share'>"; |
|
414
|
|
|
$text .= "<a class='share' id='share-page" . $id . "' href='javascript:void(0);'>" . _SMALLWORLD_SHARELINK . '</a></span>'; |
|
415
|
|
|
} else { |
|
416
|
|
|
$text = ''; |
|
417
|
|
|
} |
|
418
|
|
|
return $text; |
|
419
|
|
|
} |
|
420
|
|
|
|
|
421
|
|
|
/** |
|
422
|
|
|
* @Get content for sharing div |
|
423
|
|
|
* @param int $id |
|
424
|
|
|
* @param int $priv |
|
425
|
|
|
* @param string $permalink |
|
426
|
|
|
* @param string $desc |
|
427
|
|
|
* @param string $username |
|
428
|
|
|
* @return string |
|
429
|
|
|
*/ |
|
430
|
|
View Code Duplication |
public function GetSharingDiv($id, $priv, $permalink, $desc, $username) |
|
|
|
|
|
|
431
|
|
|
{ |
|
432
|
|
|
if (1 != $priv) { |
|
433
|
|
|
$text = "<div style='display: none;' class='smallworld_bookmarks' id='share-page' name='share-page" . $id . "'>"; |
|
434
|
|
|
$text .= "<span name='share-page" . $id . "' rel1='" . $desc . "' rel2= '" . $username . "' rel=" . $permalink . " id='basicBookmark' title='" . _SMALLWORLD_SHAREBOX_TITLE . "'>"; |
|
435
|
|
|
$text .= '</span></div>'; |
|
436
|
|
|
} else { |
|
437
|
|
|
$text = ''; |
|
438
|
|
|
} |
|
439
|
|
|
return $text; |
|
440
|
|
|
} |
|
441
|
|
|
|
|
442
|
|
|
/** |
|
443
|
|
|
* @Parse update and comments array to template for public updates |
|
444
|
|
|
* @param array $updatesarray |
|
445
|
|
|
* @param int $id |
|
446
|
|
|
* @return void |
|
447
|
|
|
*/ |
|
448
|
|
|
public function ParsePubArray($updatesarray, $id) |
|
449
|
|
|
{ |
|
450
|
|
|
global $xoopsUser, $xoopsTpl, $tpl, $xoopsModule, $xoopsConfig; |
|
451
|
|
|
|
|
452
|
|
|
$check = new User(); |
|
453
|
|
|
$dBase = new SwDatabase(); |
|
454
|
|
|
$profile = $xoopsUser ? $check->checkIfProfile($id) : 0; |
|
455
|
|
|
$moduleHandler = xoops_getHandler('module'); |
|
456
|
|
|
$module = $moduleHandler->getByDirname('smallworld'); |
|
457
|
|
|
$configHandler = xoops_getHandler('config'); |
|
458
|
|
|
$moduleConfig = $configHandler->getConfigsByCat(0, $module->getVar('mid')); |
|
|
|
|
|
|
459
|
|
|
|
|
460
|
|
|
$myavatar = $this->Gravatar($id); |
|
461
|
|
|
$myavatarlink = smallworld_getAvatarLink($id, $myavatar); |
|
462
|
|
|
$myavatar_size = smallworld_getImageSize(80, 100, $myavatarlink); |
|
|
|
|
|
|
463
|
|
|
$myavatar_highwide = smallworld_imageResize($myavatar_size[0], $myavatar_size[1], 35); |
|
464
|
|
|
|
|
465
|
|
|
$xoopsTpl->assign('myavatar', $myavatar); |
|
466
|
|
|
$xoopsTpl->assign('myavatarlink', $myavatarlink); |
|
467
|
|
|
$xoopsTpl->assign('myavatar_highwide', $myavatar_highwide); |
|
468
|
|
|
|
|
469
|
|
View Code Duplication |
if (!empty($updatesarray)) { |
|
|
|
|
|
|
470
|
|
|
foreach ($updatesarray as $data) { |
|
471
|
|
|
// Is update's user a friend ? |
|
472
|
|
|
$frU = $check->friendcheck($id, $data['uid_fk']); |
|
473
|
|
|
|
|
474
|
|
|
$USW = []; |
|
475
|
|
|
$USW['posts'] = 0; |
|
476
|
|
|
$USW['comments'] = 0; |
|
477
|
|
|
|
|
478
|
|
|
if ($xoopsUser) { |
|
479
|
|
|
if ($xoopsUser->isAdmin($xoopsModule->getVar('mid')) || $data['uid_fk'] == $id) { |
|
480
|
|
|
$USW['posts'] = 1; |
|
481
|
|
|
$USW['comments'] = 1; |
|
482
|
|
|
$frU[0] = 2; |
|
483
|
|
|
} else { |
|
484
|
|
|
$USW = json_decode($dBase->GetSettings($data['uid_fk']), true); |
|
485
|
|
|
} |
|
486
|
|
|
} |
|
487
|
|
|
|
|
488
|
|
|
if (!$xoopsUser) { |
|
489
|
|
|
$USW = json_decode($dBase->GetSettings($data['uid_fk']), true); |
|
490
|
|
|
} |
|
491
|
|
|
|
|
492
|
|
|
$wm['msg_id'] = $data['msg_id']; |
|
|
|
|
|
|
493
|
|
|
$wm['orimessage'] = (1 == $USW['posts'] || $profile >= 2) ? str_replace(["\r", "\n"], '', Smallworld_stripWordsKeepUrl($data['message'])) : ''; |
|
|
|
|
|
|
494
|
|
|
$wm['message'] = (1 == $USW['posts'] || $profile >= 2) ? smallworld_tolink(htmlspecialchars_decode($data['message']), $data['uid_fk']) : _SMALLWORLD_MESSAGE_PRIVSETPOSTS; |
|
495
|
|
|
$wm['message'] = Smallworld_cleanup($wm['message']); |
|
496
|
|
|
$wm['created'] = smallworld_time_stamp($data['created']); |
|
497
|
|
|
$wm['username'] = $data['username']; |
|
498
|
|
|
$wm['uid_fk'] = $data['uid_fk']; |
|
499
|
|
|
$wm['priv'] = $data['priv']; |
|
500
|
|
|
$wm['avatar'] = $this->Gravatar($data['uid_fk']); |
|
501
|
|
|
$wm['avatar_link'] = smallworld_getAvatarLink($data['uid_fk'], $wm['avatar']); |
|
502
|
|
|
$wm['avatar_size'] = smallworld_getImageSize(80, 100, $wm['avatar_link']); |
|
|
|
|
|
|
503
|
|
|
$wm['avatar_highwide'] = smallworld_imageResize($wm['avatar_size'][0], $wm['avatar_size'][1], 50); |
|
504
|
|
|
$wm['vote_up'] = $this->countVotes('msg', 'up', $data['msg_id']); |
|
505
|
|
|
$wm['vote_down'] = $this->countVotes('msg', 'down', $data['msg_id']); |
|
506
|
|
|
$wm['sharelinkurl'] = XOOPS_URL . '/modules/smallworld/smallworldshare.php?ownerid=' . $data['uid_fk']; |
|
507
|
|
|
$wm['sharelinkurl'] .= '&updid=' . $data['msg_id'] . ''; |
|
508
|
|
|
$wm['usernameTitle'] = $wm['username'] . _SMALLWORLD_UPDATEONSITEMETA . $xoopsConfig['sitename']; |
|
509
|
|
|
if (1 == $USW['posts'] || $profile >= 2) { |
|
510
|
|
|
$wm['sharelink'] = $this->GetSharing($wm['msg_id'], $wm['priv']); |
|
511
|
|
|
} else { |
|
512
|
|
|
$wm['sharelink'] = $this->GetSharing($wm['msg_id'], 1); |
|
513
|
|
|
} |
|
514
|
|
|
|
|
515
|
|
|
if (1 == $USW['posts'] || $profile >= 2) { |
|
516
|
|
|
$wm['sharediv'] = $this->GetSharingDiv($wm['msg_id'], $wm['priv'], $wm['sharelinkurl'], $wm['orimessage'], $wm['usernameTitle']); |
|
517
|
|
|
} else { |
|
518
|
|
|
$wm['sharediv'] = $this->GetSharingDiv($wm['msg_id'], 1, $wm['sharelinkurl'], $wm['orimessage'], $wm['usernameTitle']); |
|
519
|
|
|
} |
|
520
|
|
|
$wm['linkimage'] = XOOPS_URL . '/modules/smallworld/assets/images/link.png'; |
|
521
|
|
|
$wm['permalink'] = XOOPS_URL . '/modules/smallworld/permalink.php?ownerid=' . $data['uid_fk'] . '&updid=' . $data['msg_id']; |
|
522
|
|
|
$wm['commentsarray'] = $this->Comments($data['msg_id']); |
|
523
|
|
|
|
|
524
|
|
|
if (2 == $frU[0] || 1 == $USW['posts']) { |
|
525
|
|
|
$xoopsTpl->append('walldata', $wm); |
|
526
|
|
|
} |
|
527
|
|
|
|
|
528
|
|
|
if (!empty($wm['commentsarray'])) { |
|
529
|
|
|
foreach ($wm['commentsarray'] as $cdata) { |
|
530
|
|
|
// Is commentuser a friend ? |
|
531
|
|
|
$frC = $check->friendcheck($id, $cdata['uid_fk']); |
|
532
|
|
|
|
|
533
|
|
|
$USC = []; |
|
534
|
|
|
$USC['posts'] = 0; |
|
535
|
|
|
$USC['comments'] = 0; |
|
536
|
|
|
|
|
537
|
|
|
if ($xoopsUser) { |
|
538
|
|
|
if ($xoopsUser->isAdmin($xoopsModule->getVar('mid')) || $cdata['uid_fk'] == $id) { |
|
539
|
|
|
$USC['posts'] = 1; |
|
540
|
|
|
$USC['comments'] = 1; |
|
541
|
|
|
$frC[0] = 2; |
|
542
|
|
|
} else { |
|
543
|
|
|
$USC = json_decode($dBase->GetSettings($cdata['uid_fk']), true); |
|
544
|
|
|
} |
|
545
|
|
|
} |
|
546
|
|
|
|
|
547
|
|
|
if (!$xoopsUser) { |
|
548
|
|
|
$USC = json_decode($dBase->GetSettings($cdata['uid_fk']), true); |
|
549
|
|
|
} |
|
550
|
|
|
|
|
551
|
|
|
$wc['msg_id_fk'] = $cdata['msg_id_fk']; |
|
|
|
|
|
|
552
|
|
|
$wc['com_id'] = $cdata['com_id']; |
|
553
|
|
|
$wc['comment'] = (1 == $USC['comments'] || $profile >= 2) ? smallworld_tolink(htmlspecialchars_decode($cdata['comment']), $cdata['uid_fk']) : _SMALLWORLD_MESSAGE_PRIVSETCOMMENTS; |
|
554
|
|
|
$wc['comment'] = Smallworld_cleanup($wc['comment']); |
|
555
|
|
|
$wc['time'] = smallworld_time_stamp($cdata['created']); |
|
556
|
|
|
$wc['username'] = $cdata['username']; |
|
557
|
|
|
$wc['uid'] = $cdata['uid_fk']; |
|
558
|
|
|
$wc['myavatar'] = $this->Gravatar($id); |
|
559
|
|
|
$wc['myavatar_link'] = $myavatarlink; |
|
560
|
|
|
$wc['avatar_size'] = smallworld_getImageSize(80, 100, $wc['myavatar_link']); |
|
|
|
|
|
|
561
|
|
|
$wc['avatar_highwide'] = smallworld_imageResize($wc['avatar_size'][0], $wc['avatar_size'][1], 35); |
|
562
|
|
|
$wc['cface'] = $this->Gravatar($cdata['uid_fk']); |
|
563
|
|
|
$wc['avatar_link'] = smallworld_getAvatarLink($cdata['uid_fk'], $wc['cface']); |
|
564
|
|
|
$wc['vote_up'] = $this->countVotesCom('com', 'up', $cdata['msg_id_fk'], $cdata['com_id']); |
|
565
|
|
|
$wc['vote_down'] = $this->countVotesCom('com', 'down', $cdata['msg_id_fk'], $cdata['com_id']); |
|
566
|
|
|
|
|
567
|
|
|
if (2 == $frC[0] || 1 == $USC['comments']) { |
|
568
|
|
|
$xoopsTpl->append('comm', $wc); |
|
569
|
|
|
} |
|
570
|
|
|
} |
|
571
|
|
|
} |
|
572
|
|
|
} |
|
573
|
|
|
} |
|
574
|
|
|
} |
|
575
|
|
|
} |
|
576
|
|
|
|