]> git.mxchange.org Git - friendica.git/blobdiff - include/group.php
Typo in notifier.
[friendica.git] / include / group.php
index 1ebae7b7b07f8a02e2e674f2cc133def7d94bb3a..854ac06a9ad53165f51bae8eb6a918b232811f53 100644 (file)
@@ -6,8 +6,26 @@ function group_add($uid,$name) {
        $ret = false;
        if(x($uid) && x($name)) {
                $r = group_byname($uid,$name); // check for dups
-               if($r !== false) 
+               if($r !== false) {
+
+                       // This could be a problem. 
+                       // Let's assume we've just created a group which we once deleted
+                       // all the old members are gone, but the group remains so we don't break any security
+                       // access lists. What we're doing here is reviving the dead group, but old content which
+                       // was restricted to this group may now be seen by the new group members. 
+
+                       $z = q("SELECT * FROM `group` WHERE `id` = %d LIMIT 1",
+                               intval($r)
+                       );
+                       if(count($z) && $z[0]['deleted']) {
+                               $r = q("UPDATE `group` SET `deleted` = 0 WHERE `uid` = %d AND `name` = '%s' LIMIT 1",
+                                       intval($uid),
+                                       dbesc($name)
+                               );
+                               notice( t('A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name.') . EOL); 
+                       }
                        return true;
+               }
                $r = q("INSERT INTO `group` ( `uid`, `name` )
                        VALUES( %d, '%s' ) ",
                        intval($uid),
@@ -79,8 +97,9 @@ function group_rmv_member($uid,$name,$member) {
 }
 
 
-function group_add_member($uid,$name,$member) {
-       $gid = group_byname($uid,$name);
+function group_add_member($uid,$name,$member,$gid = 0) {
+       if(! $gid)
+               $gid = group_byname($uid,$name);
        if((! $gid) || (! $uid) || (! $member))
                return false;
 
@@ -91,7 +110,7 @@ function group_add_member($uid,$name,$member) {
        );
        if(count($r))
                return true;    // You might question this, but 
-                               // we indicate success because the group was in fact created
+                               // we indicate success because the group member was in fact created
                                // -- It was just created at another time
        if(! count($r))
                $r = q("INSERT INTO `group_member` (`uid`, `gid`, `contact-id`)
@@ -124,9 +143,10 @@ function group_public_members($gid) {
                $r = q("SELECT `contact`.`id` AS `contact-id` FROM `group_member` 
                        LEFT JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id` 
                        WHERE `gid` = %d AND `group_member`.`uid` = %d 
-                       AND `contact`.`network` != 'dfrn' AND `contact`.`network` != 'mail' AND `contact`.`network` != 'face' ",
+                       AND  `contact`.`network` = '%s' AND `contact`.`notify` != '' ",
                        intval($gid),
-                       intval(local_user())
+                       intval(local_user()),
+                       dbesc(NETWORK_OSTATUS)
                );              
                if(count($r))
                        $ret = count($r);
@@ -135,6 +155,32 @@ function group_public_members($gid) {
 }
 
 
+function mini_group_select($uid,$gid = 0) {
+       
+       $grps = array();
+       $o = '';
+
+       $r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d ORDER BY `name` ASC",
+               intval($uid)
+       );
+       $grps[] = array('name' => '', 'id' => '0', 'selected' => '');
+       if(count($r)) {
+               foreach($r as $rr) {
+                       $grps[] = array('name' => $rr['name'], 'id' => $rr['id'], 'selected' => (($gid == $rr['id']) ? 'true' : ''));
+               }
+
+       }
+       logger('groups: ' . print_r($grps,true));
+
+       $o = replace_macros(get_markup_template('group_selection.tpl'), array(
+               '$label' => t('Default privacy group for new contacts'),
+               '$groups' => $grps 
+       ));
+       return $o;
+}
+
+
+
 
 function group_side($every="contacts",$each="group",$edit = false, $group_id = 0, $cid = 0) {
 
@@ -143,49 +189,62 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0
        if(! local_user())
                return '';
 
-       $createtext = t('Create a new group');
-       $linktext= t('Everybody');
-       $selected = (($group_id == 0) ? ' class="group-selected" ' : '');
-$o .= <<< EOT
-
-<div id="group-sidebar">
-<h3>Groups</h3>
+       $groups = array();
+       
+       $groups[] = array(
+               'text'  => t('Everybody'),
+               'id' => 0,
+               'selected' => (($group_id == 0) ? 'group-selected' : ''),
+               'href'  => $every,
+       );
 
-<div id="sidebar-group-list">
-       <ul id="sidebar-group-ul">
-       <li class="sidebar-group-li" ><a href="$every" $selected >$linktext</a></li>
 
-EOT;
 
        $r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d ORDER BY `name` ASC",
                intval($_SESSION['uid'])
        );
+       $member_of = array();
        if($cid) {
                $member_of = groups_containing(local_user(),$cid);
        } 
 
        if(count($r)) {
                foreach($r as $rr) {
-                       $selected = (($group_id == $rr['id']) ? ' class="group-selected" ' : '');
-                       $o .= ' <li class="sidebar-group-li">' 
-                       . (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit') 
-                               . "\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "") 
-                       . (($cid) ? '<input type="checkbox" class="' . (($selected) ? 'ticked' : 'unticked') . '" onclick="contactgroupChangeMember(' . $rr['id'] . ',' . $cid . ');return true;" '
-                               . ((in_array($rr['id'],$member_of)) ? ' checked="checked" ' : '') . '/>' : '')
-                       . "<a href=\"$each/{$rr['id']}\" $selected >{$rr['name']}</a></li>\r\n";
+                       $selected = (($group_id == $rr['id']) ? ' group-selected' : '');
+                       
+                       if ($edit) {
+                               $groupedit = array(
+                                       'href' => "group/".$rr['id'],
+                                       'title' => t('edit'),
+                               );
+                       } else {
+                               $groupedit = null;
+                       }
+                       
+                       $groups[] = array(
+                               'id'            => $rr['id'],
+                               'cid'           => $cid,
+                               'text'          => $rr['name'],
+                               'selected'      => $selected,
+                               'href'          => $each."/".$rr['id'],
+                               'edit'          => $groupedit,
+                               'ismember'      => in_array($rr['id'],$member_of),
+                       );
                }
        }
-       $o .= " </ul>\r\n       </div>";
-
-       $o .= <<< EOT
-
-  <div id="sidebar-new-group">
-  <a href="group/new">$createtext</a>
-  </div>
-</div>
        
-EOT;
-
+       
+       $tpl = get_markup_template("group_side.tpl");
+       $o = replace_macros($tpl, array(
+               '$title'                => t('Groups'),
+               '$edittext'     => t('Edit group'),
+               '$createtext'   => t('Create a new group'),
+               '$ungrouped'    => (($every === 'contacts') ? t('Contacts not in any group') : ''),
+               '$groups'               => $groups,
+               '$add'                  => t('add'),
+       ));
+               
+       
        return $o;
 }
 
@@ -227,4 +286,4 @@ function groups_containing($uid,$c) {
        }
 
        return $ret;
-}
\ No newline at end of file
+}