aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profperm.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-12 21:25:00 -0700
committerFriendika <info@friendika.com>2011-04-12 21:25:00 -0700
commit080efe4d1eaf2ceb85f230a48eac7e2e8103580b (patch)
tree603debdda27c0991243807a35b5fd713ca11f945 /mod/profperm.php
parent2d7366bf817db1f6ea7d03e98f7a33d7a13545d1 (diff)
downloadvolse-hubzilla-080efe4d1eaf2ceb85f230a48eac7e2e8103580b.tar.gz
volse-hubzilla-080efe4d1eaf2ceb85f230a48eac7e2e8103580b.tar.bz2
volse-hubzilla-080efe4d1eaf2ceb85f230a48eac7e2e8103580b.zip
missed file addition
Diffstat (limited to 'mod/profperm.php')
-rw-r--r--mod/profperm.php141
1 files changed, 141 insertions, 0 deletions
diff --git a/mod/profperm.php b/mod/profperm.php
new file mode 100644
index 000000000..2a1814639
--- /dev/null
+++ b/mod/profperm.php
@@ -0,0 +1,141 @@
+<?php
+
+function profperm_init(&$a) {
+
+ if(! local_user())
+ return;
+
+ $which = $a->user['nickname'];
+ $profile = $a->argv[1];
+
+ profile_load($a,$which,$profile);
+
+}
+
+
+function profperm_content(&$a) {
+
+ if(! local_user()) {
+ notice( t('Permission denied') . EOL);
+ return;
+ }
+
+
+ if($a->argc < 2) {
+ notice( t('Invalid profile identifier.') . EOL );
+ return;
+ }
+
+ if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
+ $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0
+ AND `network` = 'dfrn' AND `id` = %d AND `uid` = %d LIMIT 1",
+ 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)) {
+ q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1",
+ intval($change),
+ intval(local_user())
+ );
+ }
+ else {
+ q("UPDATE `contact` SET `profile-id` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
+ 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">';
+ if($change)
+ $o = '';
+
+ $o .= '<div id="prof-members">';
+ $o .= '<h3>' . t('Visible To') . '</h3>';
+ foreach($members as $member) {
+ if($member['url']) {
+ $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
+ $o .= micropro($member,true,'mpprof');
+ }
+ }
+ $o .= '</div><div id="prof-members-end"></div>';
+ $o .= '<hr id="prof-separator" />';
+ $o .= '<div id="prof-all-contacts">';
+
+ $o .= '<h3>' . t("All Contacts \x28with remote profile access\x29") . '</h3>';
+ $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0
+ AND `network` = 'dfrn' ORDER BY `name` ASC",
+ intval(local_user())
+ );
+
+ if(count($r)) {
+ foreach($r as $member) {
+ if(! in_array($member['id'],$ingroup)) {
+ $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
+ $o .= micropro($member,true,'mpprof');
+ }
+ }
+ }
+
+ $o .= '</div><div id="prof-all-contacts-end"></div>';
+
+ if($change) {
+ echo $o;
+ killme();
+ }
+ $o .= '</div>';
+ return $o;
+
+}
+