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