Merge pull request #9845 from Extarys/frio-eslint-prettier
[friendica.git/.git] / mod / notes.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\Content\Nav;
24 use Friendica\Content\Pager;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Model\Item;
28 use Friendica\Model\Post;
29 use Friendica\Module\BaseProfile;
30
31 function notes_init(App $a)
32 {
33         if (! local_user()) {
34                 return;
35         }
36
37         Nav::setSelected('home');
38 }
39
40
41 function notes_content(App $a, $update = false)
42 {
43         if (!local_user()) {
44                 notice(DI::l10n()->t('Permission denied.'));
45                 return;
46         }
47
48         $o = BaseProfile::getTabsHTML($a, 'notes', true);
49
50         if (!$update) {
51                 $o .= '<h3>' . DI::l10n()->t('Personal Notes') . '</h3>';
52
53                 $x = [
54                         'is_owner' => true,
55                         'allow_location' => (($a->user['allow_location']) ? true : false),
56                         'default_location' => $a->user['default-location'],
57                         'nickname' => $a->user['nickname'],
58                         'lockstate' => 'lock',
59                         'acl' => \Friendica\Core\ACL::getSelfOnlyHTML(local_user(), DI::l10n()->t('Personal notes are visible only by yourself.')),
60                         'bang' => '',
61                         'visitor' => 'block',
62                         'profile_uid' => local_user(),
63                         'button' => DI::l10n()->t('Save'),
64                         'acl_data' => '',
65                 ];
66
67                 $o .= status_editor($a, $x, $a->contact['id']);
68         }
69
70         $condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
71                 'contact-id'=> $a->contact['id']];
72
73         if (DI::mode()->isMobile()) {
74                 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
75                         DI::config()->get('system', 'itemspage_network_mobile'));
76         } else {
77                 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
78                         DI::config()->get('system', 'itemspage_network'));
79         }
80
81         $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
82
83         $params = ['order' => ['created' => true],
84                 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
85         $r = Post::selectThreadForUser(local_user(), ['uri'], $condition, $params);
86
87         $count = 0;
88
89         if (DBA::isResult($r)) {
90                 $notes = Post::toArray($r);
91
92                 $count = count($notes);
93
94                 $o .= conversation($a, $notes, 'notes', $update);
95         }
96
97         $o .= $pager->renderMinimal($count);
98
99         return $o;
100 }