2017-12-09 19:31:00 +01:00
< ? php
/**
* @ file src / Model / Group . php
*/
namespace Friendica\Model ;
2018-10-17 21:30:41 +02:00
use Friendica\BaseModule ;
2017-12-09 19:31:00 +01:00
use Friendica\BaseObject ;
2018-02-26 01:58:23 +01:00
use Friendica\Core\L10n ;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger ;
2018-10-31 15:35:50 +01:00
use Friendica\Core\Renderer ;
2018-07-20 14:19:26 +02:00
use Friendica\Database\DBA ;
2018-10-17 14:19:58 +02:00
use Friendica\Util\Security ;
2017-12-09 19:31:00 +01:00
require_once 'boot.php' ;
2017-12-17 21:24:57 +01:00
require_once 'include/dba.php' ;
2017-12-09 19:31:00 +01:00
require_once 'include/text.php' ;
/**
* @ brief functions for interacting with the group database table
*/
class Group extends BaseObject
{
/**
* @ brief Create a new contact group
*
* Note : If we found a deleted group with the same name , we restore it
*
* @ param int $uid
* @ param string $name
* @ return boolean
*/
public static function create ( $uid , $name )
{
$return = false ;
if ( x ( $uid ) && x ( $name )) {
$gid = self :: getIdByName ( $uid , $name ); // check for dupes
if ( $gid !== 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.
2018-07-20 14:19:26 +02:00
$group = DBA :: selectFirst ( 'group' , [ 'deleted' ], [ 'id' => $gid ]);
2018-07-21 14:46:04 +02:00
if ( DBA :: isResult ( $group ) && $group [ 'deleted' ]) {
2018-07-20 14:19:26 +02:00
DBA :: update ( 'group' , [ 'deleted' => 0 ], [ 'id' => $gid ]);
2018-01-21 19:33:59 +01:00
notice ( L10n :: 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 );
2017-12-09 19:31:00 +01:00
}
return true ;
}
2018-07-20 14:19:26 +02:00
$return = DBA :: insert ( 'group' , [ 'uid' => $uid , 'name' => $name ]);
2017-12-13 02:52:50 +01:00
if ( $return ) {
2018-07-20 14:19:26 +02:00
$return = DBA :: lastInsertId ();
2017-12-13 02:52:50 +01:00
}
2017-12-09 19:31:00 +01:00
}
return $return ;
}
2018-04-07 15:54:26 +02:00
/**
* Update group information .
*
* @ param int $id Group ID
* @ param string $name Group name
*
* @ return bool Was the update successful ?
*/
public static function update ( $id , $name )
{
2018-07-20 14:19:26 +02:00
return DBA :: update ( 'group' , [ 'name' => $name ], [ 'id' => $id ]);
2018-04-07 15:54:26 +02:00
}
2017-12-09 19:31:00 +01:00
/**
* @ brief Get a list of group ids a contact belongs to
*
* @ param int $cid
* @ return array
*/
2017-12-17 01:21:56 +01:00
public static function getIdsByContactId ( $cid )
2017-12-09 19:31:00 +01:00
{
2017-12-16 17:50:58 +01:00
$condition = [ 'contact-id' => $cid ];
2018-07-20 14:19:26 +02:00
$stmt = DBA :: select ( 'group_member' , [ 'gid' ], $condition );
2017-12-09 19:31:00 +01:00
$return = [];
2017-12-10 21:12:23 +01:00
2018-07-20 14:19:26 +02:00
while ( $group = DBA :: fetch ( $stmt )) {
2017-12-10 21:12:23 +01:00
$return [] = $group [ 'gid' ];
2017-12-09 19:31:00 +01:00
}
return $return ;
}
/**
* @ brief count unread group items
*
* Count unread items of each groups of the local user
*
* @ return array
* 'id' => group id
* 'name' => group name
* 'count' => counted unseen group items
*/
public static function countUnseen ()
{
2018-07-20 14:19:26 +02:00
$stmt = DBA :: p ( " SELECT `group`.`id`, `group`.`name`,
2017-12-09 19:31:00 +01:00
( SELECT COUNT ( * ) FROM `item` FORCE INDEX ( `uid_unseen_contactid` )
WHERE `uid` = ?
AND `unseen`
AND `contact-id` IN
( SELECT `contact-id`
FROM `group_member`
2017-12-15 04:47:58 +01:00
WHERE `group_member` . `gid` = `group` . `id` )
2017-12-09 19:31:00 +01:00
) AS `count`
FROM `group`
WHERE `group` . `uid` = ? ; " ,
local_user (),
local_user ()
);
2018-07-21 04:03:40 +02:00
return DBA :: toArray ( $stmt );
2017-12-09 19:31:00 +01:00
}
/**
* @ brief Get the group id for a user / name couple
*
* Returns false if no group has been found .
*
* @ param int $uid
* @ param string $name
* @ return int | boolean
*/
public static function getIdByName ( $uid , $name )
{
2017-12-10 07:07:48 +01:00
if ( ! $uid || ! strlen ( $name )) {
2017-12-09 19:31:00 +01:00
return false ;
}
2018-07-20 14:19:26 +02:00
$group = DBA :: selectFirst ( 'group' , [ 'id' ], [ 'uid' => $uid , 'name' => $name ]);
2018-07-21 14:46:04 +02:00
if ( DBA :: isResult ( $group )) {
2017-12-09 19:31:00 +01:00
return $group [ 'id' ];
}
return false ;
}
/**
* @ brief Mark a group as deleted
*
2017-12-17 21:27:50 +01:00
* @ param int $gid
2017-12-09 19:31:00 +01:00
* @ return boolean
*/
public static function remove ( $gid ) {
if ( ! $gid ) {
return false ;
}
2018-07-20 14:19:26 +02:00
$group = DBA :: selectFirst ( 'group' , [ 'uid' ], [ 'id' => $gid ]);
2018-07-21 14:46:04 +02:00
if ( ! DBA :: isResult ( $group )) {
2017-12-17 21:31:37 +01:00
return false ;
}
2017-12-09 19:31:00 +01:00
// remove group from default posting lists
2018-07-20 14:19:26 +02:00
$user = DBA :: selectFirst ( 'user' , [ 'def_gid' , 'allow_gid' , 'deny_gid' ], [ 'uid' => $group [ 'uid' ]]);
2018-07-21 14:46:04 +02:00
if ( DBA :: isResult ( $user )) {
2017-12-09 19:31:00 +01:00
$change = false ;
if ( $user [ 'def_gid' ] == $gid ) {
$user [ 'def_gid' ] = 0 ;
$change = true ;
}
if ( strpos ( $user [ 'allow_gid' ], '<' . $gid . '>' ) !== false ) {
$user [ 'allow_gid' ] = str_replace ( '<' . $gid . '>' , '' , $user [ 'allow_gid' ]);
$change = true ;
}
if ( strpos ( $user [ 'deny_gid' ], '<' . $gid . '>' ) !== false ) {
$user [ 'deny_gid' ] = str_replace ( '<' . $gid . '>' , '' , $user [ 'deny_gid' ]);
$change = true ;
}
if ( $change ) {
2018-07-20 14:19:26 +02:00
DBA :: update ( 'user' , $user , [ 'uid' => $group [ 'uid' ]]);
2017-12-09 19:31:00 +01:00
}
}
// remove all members
2018-07-20 14:19:26 +02:00
DBA :: delete ( 'group_member' , [ 'gid' => $gid ]);
2017-12-09 19:31:00 +01:00
// remove group
2018-07-20 14:19:26 +02:00
$return = DBA :: update ( 'group' , [ 'deleted' => 1 ], [ 'id' => $gid ]);
2017-12-09 19:31:00 +01:00
return $return ;
}
/**
* @ brief Mark a group as deleted based on its name
*
* @ deprecated Use Group :: remove instead
*
2017-12-17 21:27:50 +01:00
* @ param int $uid
* @ param string $name
* @ return bool
2017-12-09 19:31:00 +01:00
*/
public static function removeByName ( $uid , $name ) {
$return = false ;
if ( x ( $uid ) && x ( $name )) {
$gid = self :: getIdByName ( $uid , $name );
$return = self :: remove ( $gid );
}
return $return ;
}
/**
* @ brief Adds a contact to a group
*
* @ param int $gid
* @ param int $cid
* @ return boolean
*/
public static function addMember ( $gid , $cid )
{
2017-12-10 07:06:12 +01:00
if ( ! $gid || ! $cid ) {
2017-12-09 19:31:00 +01:00
return false ;
}
2018-07-20 14:19:26 +02:00
$row_exists = DBA :: exists ( 'group_member' , [ 'gid' => $gid , 'contact-id' => $cid ]);
2017-12-09 19:31:00 +01:00
if ( $row_exists ) {
// Row already existing, nothing to do
$return = true ;
} else {
2018-07-20 14:19:26 +02:00
$return = DBA :: insert ( 'group_member' , [ 'gid' => $gid , 'contact-id' => $cid ]);
2017-12-09 19:31:00 +01:00
}
return $return ;
}
/**
* @ brief Removes a contact from a group
*
* @ param int $gid
* @ param int $cid
* @ return boolean
*/
public static function removeMember ( $gid , $cid )
{
2017-12-10 07:06:12 +01:00
if ( ! $gid || ! $cid ) {
2017-12-09 19:31:00 +01:00
return false ;
}
2018-07-20 14:19:26 +02:00
$return = DBA :: delete ( 'group_member' , [ 'gid' => $gid , 'contact-id' => $cid ]);
2017-12-09 19:31:00 +01:00
return $return ;
}
/**
* @ brief Removes a contact from a group based on its name
*
* @ deprecated Use Group :: removeMember instead
*
* @ param int $uid
* @ param string $name
* @ param int $cid
* @ return boolean
*/
public static function removeMemberByName ( $uid , $name , $cid )
{
$gid = self :: getIdByName ( $uid , $name );
$return = self :: removeMember ( $gid , $cid );
return $return ;
}
/**
* @ brief Returns the combined list of contact ids from a group id list
*
* @ param array $group_ids
* @ param boolean $check_dead
* @ return array
*/
2018-08-23 15:51:58 +02:00
public static function expand ( $group_ids , $check_dead = false )
2017-12-09 19:31:00 +01:00
{
2017-12-10 07:06:12 +01:00
if ( ! is_array ( $group_ids ) || ! count ( $group_ids )) {
2017-12-09 19:31:00 +01:00
return [];
}
2018-08-23 15:51:58 +02:00
$stmt = DBA :: select ( 'group_member' , [ 'contact-id' ], [ 'gid' => $group_ids ]);
2017-12-09 19:31:00 +01:00
2017-12-10 07:06:12 +01:00
$return = [];
2018-07-20 14:19:26 +02:00
while ( $group_member = DBA :: fetch ( $stmt )) {
2017-12-10 07:06:12 +01:00
$return [] = $group_member [ 'contact-id' ];
2017-12-09 19:31:00 +01:00
}
2018-08-23 15:51:58 +02:00
if ( $check_dead ) {
2018-02-26 01:58:23 +01:00
Contact :: pruneUnavailable ( $return );
2017-12-09 19:31:00 +01:00
}
2018-08-23 15:51:58 +02:00
2017-12-09 19:31:00 +01:00
return $return ;
}
/**
* @ brief Returns a templated group selection list
*
* @ param int $uid
* @ param int $gid An optional pre - selected group
* @ param string $label An optional label of the list
* @ return string
*/
public static function displayGroupSelection ( $uid , $gid = 0 , $label = '' )
{
$o = '' ;
2018-07-20 14:19:26 +02:00
$stmt = DBA :: select ( 'group' , [], [ 'deleted' => 0 , 'uid' => $uid ], [ 'order' => [ 'name' ]]);
2017-12-09 19:31:00 +01:00
$display_groups = [
[
'name' => '' ,
'id' => '0' ,
'selected' => ''
]
];
2018-07-20 14:19:26 +02:00
while ( $group = DBA :: fetch ( $stmt )) {
2017-12-09 19:31:00 +01:00
$display_groups [] = [
'name' => $group [ 'name' ],
'id' => $group [ 'id' ],
'selected' => $gid == $group [ 'id' ] ? 'true' : ''
];
}
2018-10-29 22:20:46 +01:00
Logger :: log ( 'groups: ' . print_r ( $display_groups , true ));
2017-12-09 19:31:00 +01:00
if ( $label == '' ) {
2018-01-22 15:54:13 +01:00
$label = L10n :: t ( 'Default privacy group for new contacts' );
2017-12-09 19:31:00 +01:00
}
2018-10-31 15:44:06 +01:00
$o = Renderer :: replaceMacros ( Renderer :: getMarkupTemplate ( 'group_selection.tpl' ), [
2017-12-09 19:31:00 +01:00
'$label' => $label ,
'$groups' => $display_groups
2018-01-15 14:05:12 +01:00
]);
2017-12-09 19:31:00 +01:00
return $o ;
}
/**
* @ brief Create group sidebar widget
*
* @ param string $every
* @ param string $each
* @ param string $editmode
* 'standard' => include link 'Edit groups'
* 'extended' => include link 'Create new group'
* 'full' => include link 'Create new group' and provide for each group a link to edit this group
* @ param int $group_id
* @ param int $cid
* @ return string
*/
2018-10-15 00:02:54 +02:00
public static function sidebarWidget ( $every = 'contact' , $each = 'group' , $editmode = 'standard' , $group_id = '' , $cid = 0 )
2017-12-09 19:31:00 +01:00
{
$o = '' ;
if ( ! local_user ()) {
return '' ;
}
$display_groups = [
[
2018-01-22 15:54:13 +01:00
'text' => L10n :: t ( 'Everybody' ),
2017-12-09 19:31:00 +01:00
'id' => 0 ,
2018-07-10 00:36:50 +02:00
'selected' => (( $group_id === 'everyone' ) ? 'group-selected' : '' ),
2017-12-09 19:31:00 +01:00
'href' => $every ,
]
];
2018-07-20 14:19:26 +02:00
$stmt = DBA :: select ( 'group' , [], [ 'deleted' => 0 , 'uid' => local_user ()], [ 'order' => [ 'name' ]]);
2017-12-09 19:31:00 +01:00
2018-01-15 14:05:12 +01:00
$member_of = [];
2017-12-09 19:31:00 +01:00
if ( $cid ) {
2017-12-16 17:50:58 +01:00
$member_of = self :: getIdsByContactId ( $cid );
2017-12-09 19:31:00 +01:00
}
2018-07-20 14:19:26 +02:00
while ( $group = DBA :: fetch ( $stmt )) {
2017-12-10 07:06:12 +01:00
$selected = (( $group_id == $group [ 'id' ]) ? ' group-selected' : '' );
2017-12-09 19:31:00 +01:00
2017-12-10 07:06:12 +01:00
if ( $editmode == 'full' ) {
$groupedit = [
'href' => 'group/' . $group [ 'id' ],
2018-01-22 15:54:13 +01:00
'title' => L10n :: t ( 'edit' ),
2017-12-09 19:31:00 +01:00
];
2017-12-10 07:06:12 +01:00
} else {
$groupedit = null ;
2017-12-09 19:31:00 +01:00
}
2017-12-10 07:06:12 +01:00
$display_groups [] = [
'id' => $group [ 'id' ],
'cid' => $cid ,
'text' => $group [ 'name' ],
'href' => $each . '/' . $group [ 'id' ],
'edit' => $groupedit ,
'selected' => $selected ,
'ismember' => in_array ( $group [ 'id' ], $member_of ),
];
2017-12-09 19:31:00 +01:00
}
2018-11-24 13:10:30 +01:00
// Don't show the groups when there is only one
if ( count ( $display_groups ) <= 2 ) {
return '' ;
}
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( 'group_side.tpl' );
2018-10-31 15:35:50 +01:00
$o = Renderer :: replaceMacros ( $tpl , [
2018-01-22 15:54:13 +01:00
'$add' => L10n :: t ( 'add' ),
'$title' => L10n :: t ( 'Groups' ),
2017-12-09 19:31:00 +01:00
'$groups' => $display_groups ,
'newgroup' => $editmode == 'extended' || $editmode == 'full' ? 1 : '' ,
'grouppage' => 'group/' ,
2018-01-22 15:54:13 +01:00
'$edittext' => L10n :: t ( 'Edit group' ),
2018-10-15 00:02:54 +02:00
'$ungrouped' => $every === 'contact' ? L10n :: t ( 'Contacts not in any group' ) : '' ,
2018-07-10 00:36:50 +02:00
'$ungrouped_selected' => (( $group_id === 'none' ) ? 'group-selected' : '' ),
2018-01-22 15:54:13 +01:00
'$createtext' => L10n :: t ( 'Create a new group' ),
'$creategroup' => L10n :: t ( 'Group Name: ' ),
'$editgroupstext' => L10n :: t ( 'Edit groups' ),
2018-10-17 21:30:41 +02:00
'$form_security_token' => BaseModule :: getFormSecurityToken ( 'group_edit' ),
2017-12-09 19:31:00 +01:00
]);
return $o ;
}
}