]> git.mxchange.org Git - friendica.git/blob - src/Content/ForumManager.php
Merge pull request #6177 from annando/oembed-escaping
[friendica.git] / src / Content / ForumManager.php
1 <?php
2 /**
3  * @file src/Content/ForumManager.php
4  * @brief ForumManager class with its methods related to forum functionality
5  */
6 namespace Friendica\Content;
7
8 use Friendica\Core\Protocol;
9 use Friendica\Content\Feature;
10 use Friendica\Content\Text\HTML;
11 use Friendica\Core\L10n;
12 use Friendica\Core\Renderer;
13 use Friendica\Core\System;
14 use Friendica\Database\DBA;
15 use Friendica\Model\Contact;
16 use Friendica\Util\Proxy as ProxyUtils;
17
18 require_once 'include/dba.php';
19
20 /**
21  * @brief This class handles methods related to the forum functionality
22  */
23 class ForumManager
24 {
25         /**
26          * @brief Function to list all forums a user is connected with
27          *
28          * @param int     $uid         of the profile owner
29          * @param boolean $lastitem    Sort by lastitem
30          * @param boolean $showhidden  Show frorums which are not hidden
31          * @param boolean $showprivate Show private groups
32          *
33          * @return array
34          *      'url'   => forum url
35          *      'name'  => forum name
36          *      'id'    => number of the key from the array
37          *      'micro' => contact photo in format micro
38          *      'thumb' => contact photo in format thumb
39          */
40         public static function getList($uid, $lastitem, $showhidden = true, $showprivate = false)
41         {
42                 if ($lastitem) {
43                         $params = ['order' => ['last-item' => true]];
44                 } else {
45                         $params = ['order' => ['name']];
46                 }
47
48                 $condition_str = "`network` = ? AND `uid` = ? AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `success_update` > `failure_update` AND ";
49
50                 if ($showprivate) {
51                         $condition_str .= '(`forum` OR `prv`)';
52                 } else {
53                         $condition_str .= '`forum`';
54                 }
55
56                 if (!$showhidden) {
57                         $condition_str .=  ' AND NOT `hidden`';
58                 }
59
60                 $forumlist = [];
61
62                 $fields = ['id', 'url', 'name', 'micro', 'thumb'];
63                 $condition = [$condition_str, Protocol::DFRN, $uid];
64                 $contacts = DBA::select('contact', $fields, $condition, $params);
65                 if (!$contacts) {
66                         return($forumlist);
67                 }
68
69                 while ($contact = DBA::fetch($contacts)) {
70                         $forumlist[] = [
71                                 'url'   => $contact['url'],
72                                 'name'  => $contact['name'],
73                                 'id'    => $contact['id'],
74                                 'micro' => $contact['micro'],
75                                 'thumb' => $contact['thumb'],
76                         ];
77                 }
78                 DBA::close($contacts);
79
80                 return($forumlist);
81         }
82
83
84         /**
85          * @brief Forumlist widget
86          *
87          * Sidebar widget to show subcribed friendica forums. If activated
88          * in the settings, it appears at the notwork page sidebar
89          *
90          * @param int $uid The ID of the User
91          * @param int $cid The contact id which is used to mark a forum as "selected"
92          * @return string
93          */
94         public static function widget($uid, $cid = 0)
95         {
96                 $o = '';
97
98                 //sort by last updated item
99                 $lastitem = true;
100
101                 $contacts = self::getList($uid, $lastitem, true, true);
102                 $total = count($contacts);
103                 $visible_forums = 10;
104
105                 if (DBA::isResult($contacts)) {
106                         $id = 0;
107
108                         foreach ($contacts as $contact) {
109                                 $selected = (($cid == $contact['id']) ? ' forum-selected' : '');
110
111                                 $entry = [
112                                         'url' => 'network?f=&cid=' . $contact['id'],
113                                         'external_url' => Contact::magicLink($contact['url']),
114                                         'name' => $contact['name'],
115                                         'cid' => $contact['id'],
116                                         'selected'      => $selected,
117                                         'micro' => System::removedBaseUrl(ProxyUtils::proxifyUrl($contact['micro'], false, ProxyUtils::SIZE_MICRO)),
118                                         'id' => ++$id,
119                                 ];
120                                 $entries[] = $entry;
121                         }
122
123                         $tpl = Renderer::getMarkupTemplate('widget_forumlist.tpl');
124
125                         $o .= Renderer::replaceMacros(
126                                 $tpl,
127                                 [
128                                         '$title'        => L10n::t('Forums'),
129                                         '$forums'       => $entries,
130                                         '$link_desc'    => L10n::t('External link to forum'),
131                                         '$total'        => $total,
132                                         '$visible_forums' => $visible_forums,
133                                         '$showmore'     => L10n::t('show more')]
134                         );
135                 }
136
137                 return $o;
138         }
139
140         /**
141          * @brief Format forumlist as contact block
142          *
143          * This function is used to show the forumlist in
144          * the advanced profile.
145          *
146          * @param int $uid The ID of the User
147          * @return string
148          */
149         public static function profileAdvanced($uid)
150         {
151                 $profile = intval(Feature::isEnabled($uid, 'forumlist_profile'));
152                 if (! $profile) {
153                         return;
154                 }
155
156                 $o = '';
157
158                 // place holder in case somebody wants configurability
159                 $show_total = 9999;
160
161                 //don't sort by last updated item
162                 $lastitem = false;
163
164                 $contacts = self::getList($uid, $lastitem, false, false);
165
166                 $total_shown = 0;
167                 $forumlist = '';
168                 foreach ($contacts as $contact) {
169                         $forumlist .= HTML::micropro($contact, false, 'forumlist-profile-advanced');
170                         $total_shown ++;
171                         if ($total_shown == $show_total) {
172                                 break;
173                         }
174                 }
175
176                 if (count($contacts) > 0) {
177                         $o .= $forumlist;
178                         return $o;
179                 }
180         }
181
182         /**
183          * @brief count unread forum items
184          *
185          * Count unread items of connected forums and private groups
186          *
187          * @return array
188          *      'id' => contact id
189          *      'name' => contact/forum name
190          *      'count' => counted unseen forum items
191          */
192         public static function countUnseenItems()
193         {
194                 $r = q(
195                         "SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `item`
196                                 INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
197                                 WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted` AND `item`.`unseen`
198                                 AND `contact`.`network`= 'dfrn' AND (`contact`.`forum` OR `contact`.`prv`)
199                                 AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
200                                 AND NOT `contact`.`pending` AND NOT `contact`.`archive`
201                                 AND `contact`.`success_update` > `failure_update`
202                                 GROUP BY `contact`.`id` ",
203                         intval(local_user())
204                 );
205
206                 return $r;
207         }
208 }