2011-04-13 06:25:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function profperm_init(&$a) {
|
|
|
|
|
|
|
|
if(! local_user())
|
|
|
|
return;
|
|
|
|
|
|
|
|
$which = $a->user['nickname'];
|
2014-03-11 23:52:32 +01:00
|
|
|
$profile = $a->argv[1];
|
2011-04-13 06:25:00 +02:00
|
|
|
|
|
|
|
profile_load($a,$which,$profile);
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-04-13 06:25:00 +02:00
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-04-13 06:25:00 +02:00
|
|
|
function profperm_content(&$a) {
|
|
|
|
|
|
|
|
if(! local_user()) {
|
|
|
|
notice( t('Permission denied') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if($a->argc < 2) {
|
|
|
|
notice( t('Invalid profile identifier.') . EOL );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-30 05:42:16 +02:00
|
|
|
// Switch to text mod interface if we have more than 'n' contacts or group members
|
|
|
|
|
|
|
|
$switchtotext = get_pconfig(local_user(),'system','groupedit_image_limit');
|
|
|
|
if($switchtotext === false)
|
|
|
|
$switchtotext = get_config('system','groupedit_image_limit');
|
|
|
|
if($switchtotext === false)
|
|
|
|
$switchtotext = 400;
|
|
|
|
|
|
|
|
|
2011-04-13 06:25:00 +02:00
|
|
|
if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0
|
2015-04-11 22:14:56 +02:00
|
|
|
AND `network` = '%s' AND `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc(NETWORK_DFRN),
|
2011-04-13 06:25:00 +02:00
|
|
|
intval($a->argv[2]),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(count($r))
|
|
|
|
$change = intval($a->argv[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(($a->argc > 1) && (intval($a->argv[1]))) {
|
|
|
|
$r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
|
|
|
|
intval($a->argv[1]),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(! count($r)) {
|
|
|
|
notice( t('Invalid profile identifier.') . EOL );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$profile = $r[0];
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `profile-id` = %d",
|
|
|
|
intval(local_user()),
|
|
|
|
intval($a->argv[1])
|
|
|
|
);
|
|
|
|
|
|
|
|
$ingroup = array();
|
|
|
|
if(count($r))
|
|
|
|
foreach($r as $member)
|
|
|
|
$ingroup[] = $member['id'];
|
|
|
|
|
|
|
|
$members = $r;
|
|
|
|
|
|
|
|
if($change) {
|
|
|
|
if(in_array($change,$ingroup)) {
|
2014-03-11 23:52:32 +01:00
|
|
|
q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d",
|
2011-04-13 06:25:00 +02:00
|
|
|
intval($change),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
2014-03-11 23:52:32 +01:00
|
|
|
q("UPDATE `contact` SET `profile-id` = %d WHERE `id` = %d AND `uid` = %d",
|
2011-04-13 06:25:00 +02:00
|
|
|
intval($a->argv[1]),
|
|
|
|
intval($change),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `profile-id` = %d",
|
|
|
|
intval(local_user()),
|
|
|
|
intval($a->argv[1])
|
|
|
|
);
|
|
|
|
|
|
|
|
$members = $r;
|
|
|
|
|
|
|
|
$ingroup = array();
|
|
|
|
if(count($r))
|
|
|
|
foreach($r as $member)
|
|
|
|
$ingroup[] = $member['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '<h2>' . t('Profile Visibility Editor') . '</h2>';
|
|
|
|
|
|
|
|
$o .= '<h3>' . t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
|
|
|
|
|
|
|
|
$o .= '<div id="prof-edit-desc">' . t('Click on a contact to add or remove.') . '</div>';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '<div id="prof-update-wrapper">';
|
2016-02-07 15:11:34 +01:00
|
|
|
if($change)
|
2011-04-13 06:25:00 +02:00
|
|
|
$o = '';
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-10-04 18:10:57 +02:00
|
|
|
$o .= '<div id="prof-members-title">';
|
2011-04-13 06:25:00 +02:00
|
|
|
$o .= '<h3>' . t('Visible To') . '</h3>';
|
2011-10-04 18:10:57 +02:00
|
|
|
$o .= '</div>';
|
|
|
|
$o .= '<div id="prof-members">';
|
2011-06-30 05:42:16 +02:00
|
|
|
|
|
|
|
$textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
|
|
|
|
|
2011-04-13 06:25:00 +02:00
|
|
|
foreach($members as $member) {
|
|
|
|
if($member['url']) {
|
|
|
|
$member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
|
2011-06-30 05:42:16 +02:00
|
|
|
$o .= micropro($member,true,'mpprof', $textmode);
|
2011-04-13 06:25:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$o .= '</div><div id="prof-members-end"></div>';
|
|
|
|
$o .= '<hr id="prof-separator" />';
|
|
|
|
|
2011-10-04 18:10:57 +02:00
|
|
|
$o .= '<div id="prof-all-contcts-title">';
|
|
|
|
$o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
|
|
|
|
$o .= '</div>';
|
|
|
|
$o .= '<div id="prof-all-contacts">';
|
2015-04-11 22:14:56 +02:00
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0
|
|
|
|
AND `network` = '%s' ORDER BY `name` ASC",
|
|
|
|
intval(local_user()),
|
|
|
|
dbesc(NETWORK_DFRN)
|
2011-04-13 06:25:00 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
if(count($r)) {
|
2011-06-30 05:42:16 +02:00
|
|
|
$textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
|
2011-04-13 06:25:00 +02:00
|
|
|
foreach($r as $member) {
|
|
|
|
if(! in_array($member['id'],$ingroup)) {
|
|
|
|
$member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
|
2011-06-30 05:42:16 +02:00
|
|
|
$o .= micropro($member,true,'mpprof',$textmode);
|
2011-04-13 06:25:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$o .= '</div><div id="prof-all-contacts-end"></div>';
|
|
|
|
|
|
|
|
if($change) {
|
|
|
|
echo $o;
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
$o .= '</div>';
|
|
|
|
return $o;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-04-13 06:25:00 +02:00
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|