-
Notifications
You must be signed in to change notification settings - Fork 4
/
friends.php
114 lines (109 loc) · 5.25 KB
/
friends.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
<?php
declare(strict_types=1);
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @category Module
* @package suico
* @copyright {@link https://xoops.org/ XOOPS Project}
* @license GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @author Marcello Brandão aka Suico, Mamba, LioMJ <https://xoops.org>
*/
use Xmf\Request;
use XoopsModules\Suico\{
FriendsController
};
$GLOBALS['xoopsOption']['template_main'] = 'suico_friends.tpl';
require __DIR__ . '/header.php';
$controller = new FriendsController($xoopsDB, $xoopsUser);
/**
* Fetching numbers of groups friends videos pictures etc...
*/
$nbSections = $controller->getNumbersSections();
$start = Request::getInt('start', 0, 'GET');
/**
* Filter for new friend friendrequest
*/
$friendrequest = 0;
if (1 === $controller->isOwner) {
$criteria_uidfriendrequest = new Criteria('friendrequestto_uid', $controller->uidOwner);
$newFriendrequest = $controller->friendrequestFactory->getObjects($criteria_uidfriendrequest);
if ($newFriendrequest) {
$countFriendrequest = count($newFriendrequest);
$friendrequesterHandler = xoops_getHandler('member');
$friendrequester = $friendrequesterHandler->getUser($newFriendrequest[0]->getVar('friendrequester_uid'));
$friendrequester_uid = $friendrequester->getVar('uid');
$friendrequester_uname = $friendrequester->getVar('uname');
$friendrequester_avatar = $friendrequester->getVar('user_avatar');
$friendrequest_id = $newFriendrequest[0]->getVar('friendreq_id');
$friendrequest = 1;
}
}
/**
* Friends
*/
$criteria_friends = new Criteria('friend1_uid', (int)$controller->uidOwner);
$countFriends = $controller->friendshipsFactory->getCount($criteria_friends);
$criteria_friends->setLimit($helper->getConfig('friendsperpage'));
$criteria_friends->setStart($start);
$vetor = $controller->friendshipsFactory->getFriends('', $criteria_friends, 0);
if (0 === $countFriends) {
$xoopsTpl->assign('lang_nofriendsyet', _MD_SUICO_NOFRIENDSYET);
}
/**
* Let's get the user name of the owner of the album
*/
$owner = new \XoopsUser();
$identifier = $owner::getUnameFromId($controller->uidOwner);
/**
* Creating the navigation bar if you have a lot of friends
*/
$navigationBar = new \XoopsPageNav(
$nbSections['countFriends'], $helper->getConfig('friendsperpage'), $start, 'start', 'uid=' . (int)$controller->uidOwner
);
$navegacao = $navigationBar->renderImageNav(2);
//requests to become friend
if (1 === $friendrequest) {
$xoopsTpl->assign('lang_you_have_x_friendrequests', sprintf(_MD_SUICO_YOU_HAVE_X_FRIENDREQUESTS, $countFriendrequest));
$xoopsTpl->assign('friendrequester_uid', $friendrequester_uid);
$xoopsTpl->assign('friendrequester_uname', $friendrequester_uname);
$xoopsTpl->assign('friendrequester_avatar', $friendrequester_avatar);
$xoopsTpl->assign('friendrequest', $friendrequest);
$xoopsTpl->assign('friendrequest_id', $friendrequest_id);
$xoopsTpl->assign('lang_rejected', _MD_SUICO_UNKNOWN_REJECTING);
$xoopsTpl->assign('lang_accepted', _MD_SUICO_UNKNOWN_ACCEPTING);
$xoopsTpl->assign('lang_acquaintance', _MD_SUICO_AQUAITANCE);
$xoopsTpl->assign('lang_friend', _MD_SUICO_FRIEND);
$xoopsTpl->assign('lang_bestfriend', _MD_SUICO_BESTFRIEND);
$linkedpetioner = '<a href="index.php?uid=' . $friendrequester_uid . '">' . $friendrequester_uname . '</a>';
$xoopsTpl->assign('lang_askingfriend', sprintf(_MD_SUICO_ASKINGFRIEND, $linkedpetioner));
}
$xoopsTpl->assign('lang_askusertobefriend', _MD_SUICO_ASKBEFRIEND);
$xoopsTpl->assign('lang_addfriend', _MD_SUICO_ADDFRIEND);
$xoopsTpl->assign('lang_friendrequestpending', _MD_SUICO_FRIENDREQUEST_PENDING);
$xoopsTpl->assign('lang_myfriend', _MD_SUICO_MYFRIEND);
$xoopsTpl->assign('lang_friendrequestsent', _MD_SUICO_FRIENDREQUEST_SENT);
$xoopsTpl->assign('lang_acceptfriend', _MD_SUICO_FRIEND_ACCEPT);
$xoopsTpl->assign('lang_rejectfriend', _MD_SUICO_FRIEND_REJECT);
$xoopsTpl->assign('lang_deletefriend', _MD_SUICO_FRIENDSHIP_DELETE);
$xoopsTpl->assign('lang_friendshipsettings', _MD_SUICO_FRIENDSHIP_SETTINGS);
//navbar
$xoopsTpl->assign('module_name', $xoopsModule->getVar('name'));
$xoopsTpl->assign('lang_mysection', _MD_SUICO_MYFRIENDS);
$xoopsTpl->assign('lang_friendstitle', sprintf(_MD_SUICO_FRIENDSTITLE, $identifier));
//$xoopsTpl->assign('path_suico_uploads',$helper->getConfig('link_path_upload'));
$xoopsTpl->assign('friends', $vetor);
$xoopsTpl->assign('lang_delete', _MD_SUICO_DELETE);
$xoopsTpl->assign('lang_evaluate', _MD_SUICO_FRIENDSHIP_CONFIGS);
$xoopsTpl->assign('allow_friendshiplevel', $helper->getConfig('allow_friendshiplevel'));
$xoopsTpl->assign('allow_fanssevaluation', $helper->getConfig('allow_fanssevaluation'));
// Navigation
$xoopsTpl->assign('navegacao', $navegacao);
require __DIR__ . '/footer.php';
require dirname(__DIR__, 2) . '/footer.php';