]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/ACL.php
Remove confirm template obsolete uses (except for contacts)
[friendica.git] / src / Core / ACL.php
index f35889061dc17153429bb6e63aab8db59b36a182..5f69d78b683921cccca5c75a9d3a3340d1bd700e 100644 (file)
@@ -33,75 +33,73 @@ use Friendica\Model\Group;
 class ACL
 {
        /**
-        * Returns a select input tag with all the contact of the local user
+        * Returns a select input tag for private message recipient
         *
-        * @param string $selname     Name attribute of the select input tag
-        * @param string $selclass    Class attribute of the select input tag
-        * @param array  $preselected Contact IDs that should be already selected
-        * @param int    $size        Length of the select box
-        * @param int    $tabindex    Select input tag tabindex attribute
+        * @param int  $selected Existing recipien contact ID
         * @return string
         * @throws \Exception
         */
-       public static function getMessageContactSelectHTML($selname, $selclass, array $preselected = [], $size = 4, $tabindex = null)
+       public static function getMessageContactSelectHTML(int $selected = null)
        {
-               $a = DI::app();
-
                $o = '';
 
-               // When used for private messages, we limit correspondence to mutual DFRN/Friendica friends and the selector
-               // to one recipient. By default our selector allows multiple selects amongst all contacts.
-               $sql_extra = sprintf(" AND `rel` = %d ", intval(Contact::FRIEND));
-               $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ", Protocol::DFRN, Protocol::DIASPORA);
-
-               $tabindex_attr = !empty($tabindex) ? ' tabindex="' . intval($tabindex) . '"' : '';
+               $page = DI::page();
 
-               $hidepreselected = '';
-               if ($preselected) {
-                       $sql_extra .= " AND `id` IN (" . implode(",", $preselected) . ")";
-                       $hidepreselected = ' style="display: none;"';
-               }
+               $page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
+               $page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js'));
+               $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
+               $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
 
-               $o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\"$tabindex_attr$hidepreselected>\r\n";
+               // When used for private messages, we limit correspondence to mutual DFRN/Friendica friends and the selector
+               // to one recipient. By default our selector allows multiple selects amongst all contacts.
+               $condition = [
+                       'uid' => local_user(),
+                       'self' => false,
+                       'blocked' => false,
+                       'pending' => false,
+                       'archive' => false,
+                       'deleted' => false,
+                       'rel' => [Contact::FOLLOWER, Contact::SHARING, Contact::FRIEND],
+                       'network' => Protocol::FEDERATED,
+               ];
 
-               $stmt = DBA::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
-                       WHERE `uid` = ? AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND NOT `deleted` AND `notify` != ''
-                       $sql_extra
-                       ORDER BY `name` ASC ", intval(local_user())
+               $contacts = Contact::selectToArray(
+                       ['id', 'name', 'addr', 'micro'],
+                       DBA::mergeConditions($condition, ["`notify` != ''"])
                );
 
-               $contacts = DBA::toArray($stmt);
-
                $arr = ['contact' => $contacts, 'entry' => $o];
 
-               // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
-               Hook::callAll(DI::module()->getName() . '_pre_' . $selname, $arr);
-
-               $receiverlist = [];
-
-               if (DBA::isResult($contacts)) {
-                       foreach ($contacts as $contact) {
-                               if (in_array($contact['id'], $preselected)) {
-                                       $selected = ' selected="selected"';
-                               } else {
-                                       $selected = '';
-                               }
-
-                               $trimmed = Protocol::formatMention($contact['url'], $contact['name']);
+               Hook::callAll(DI::module()->getName() . '_pre_recipient', $arr);
 
-                               $receiverlist[] = $trimmed;
+               $tpl = Renderer::getMarkupTemplate('acl/message_recipient.tpl');
+               $o = Renderer::replaceMacros($tpl, [
+                       '$contacts' => $contacts,
+                       '$selected' => $selected,
+               ]);
 
-                               $o .= "<option value=\"{$contact['id']}\"$selected title=\"{$contact['name']}|{$contact['url']}\" >$trimmed</option>\r\n";
-                       }
-               }
+               Hook::callAll(DI::module()->getName() . '_post_recipient', $o);
 
-               $o .= '</select>' . PHP_EOL;
+               return $o;
+       }
 
-               if ($preselected) {
-                       $o .= implode(', ', $receiverlist);
-               }
+       /**
+        * Returns a minimal ACL block for self-only permissions
+        *
+        * @param int    $localUserId
+        * @param string $explanation
+        * @return string
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       public static function getSelfOnlyHTML(int $localUserId, string $explanation)
+       {
+               $selfPublicContactId = Contact::getPublicIdByUserId($localUserId);
 
-               Hook::callAll(DI::module()->getName() . '_post_' . $selname, $o);
+               $tpl = Renderer::getMarkupTemplate('acl/self_only.tpl');
+               $o = Renderer::replaceMacros($tpl, [
+                       '$selfPublicContactId' => $selfPublicContactId,
+                       '$explanation' => $explanation,
+               ]);
 
                return $o;
        }
@@ -303,7 +301,7 @@ class ACL
                        'emailcc'       => $form_prefix ? $form_prefix . '[emailcc]'       : 'emailcc',
                ];
 
-               $tpl = Renderer::getMarkupTemplate('acl_selector.tpl');
+               $tpl = Renderer::getMarkupTemplate('acl/full_selector.tpl');
                $o = Renderer::replaceMacros($tpl, [
                        '$public_title'   => DI::l10n()->t('Public'),
                        '$public_desc'    => DI::l10n()->t('This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'),