aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-12 23:08:07 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-12 23:08:07 -0700
commit7e16f8cdae597cc8329c3cc9ce769d512ba84085 (patch)
treecf16a878c11fefc2e60950792cc028016cc0a8d0 /mod
parenta4dbd6657ca48131731da050c5378be8c84eda0e (diff)
downloadvolse-hubzilla-7e16f8cdae597cc8329c3cc9ce769d512ba84085.tar.gz
volse-hubzilla-7e16f8cdae597cc8329c3cc9ce769d512ba84085.tar.bz2
volse-hubzilla-7e16f8cdae597cc8329c3cc9ce769d512ba84085.zip
groups and acls
Diffstat (limited to 'mod')
-rw-r--r--mod/group.php27
-rw-r--r--mod/item.php50
-rw-r--r--mod/profile.php8
3 files changed, 76 insertions, 9 deletions
diff --git a/mod/group.php b/mod/group.php
index 16298e63e..538277a0c 100644
--- a/mod/group.php
+++ b/mod/group.php
@@ -4,6 +4,7 @@
function group_init(&$a) {
require_once('include/group.php');
+ $a->page['aside'] .= group_side();
}
@@ -46,11 +47,33 @@ function group_content(&$a) {
));
+ }
+
+dbg(2);
+ if(($a->argc == 2) && (intval($a->argv[1]))) {
+ require_once('view/acl_selectors.php');
+ $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
+ intval($a->argv[1]),
+ intval($_SESSION['uid'])
+ );
+ if(! count($r)) {
+ notice("Group not found." . EOL );
+ goaway($a->get_baseurl() . '/contacts');
+ }
+ $ret = group_get_members($r[0]['id']);
+ $preselected = array();
+ if(count($ret)) {
+ foreach($ret as $p)
+ $preselected[] = $p['id'];
+ }
+ $sel = contact_select('group_members_select','group_members_select',$preselected);
+ $o .= $sel;
+ }
+
+
- }
-
return $o;
} \ No newline at end of file
diff --git a/mod/item.php b/mod/item.php
index 29e38fce7..672084fe8 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -1,5 +1,13 @@
<?php
+function sanitise_intacl(&$item) {
+ $item = '<' . intval(notags(trim($item))) . '>';
+}
+
+
+function sanitise_acl(&$item) {
+ $item = '<' . notags(trim($item)) . '>';
+}
function item_post(&$a) {
@@ -16,8 +24,38 @@ function item_post(&$a) {
notice("Permission denied." . EOL) ;
return;
}
+
+ $str_group_allow = '';
+ $group_allow = $_POST['group_allow'];
+ if(is_array($group_allow)) {
+ array_walk($group_allow,'sanitise_acl');
+ $str_group_allow = implode('',$group_allow);
+ }
+
+ $str_contact_allow = '';
+ $contact_allow = $_POST['contact_allow'];
+ if(is_array($contact_allow)) {
+ array_walk($contact_allow,'sanitise_intacl');
+ $str_contact_allow = implode('',$contact_allow);
+ }
+
+ $str_group_deny = '';
+ $group_deny = $_POST['group_deny'];
+ if(is_array($group_deny)) {
+ array_walk($group_deny,'sanitise_acl');
+ $str_group_deny = implode('',$group_deny);
+ }
+
+ $str_contact_deny = '';
+ $contact_deny = $_POST['contact_deny'];
+ if(is_array($contact_deny)) {
+ array_walk($contact_deny,'sanitise_intacl');
+ $str_contact_deny = implode('',$contact_deny);
+ }
+
$body = escape_tags(trim($_POST['body']));
+
if(! strlen($body)) {
notice("Empty post discarded." . EOL );
goaway($a->get_baseurl() . "/profile/$profile_uid");
@@ -46,15 +84,21 @@ function item_post(&$a) {
} while($dups == true);
- $r = q("INSERT INTO `item` (`uid`,`type`,`contact-id`,`created`,`edited`,`hash`,`body`)
- VALUES( %d, '%s', %d, '%s', '%s', '%s', '%s' )",
+ $r = q("INSERT INTO `item` (`uid`,`type`,`contact-id`,`created`,`edited`,`hash`,`body`,
+ `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`)
+ VALUES( %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
intval($profile_uid),
"jot",
intval($contact_id),
datetime_convert(),
datetime_convert(),
dbesc($hash),
- dbesc(escape_tags(trim($_POST['body'])))
+ dbesc(escape_tags(trim($_POST['body']))),
+ dbesc($str_contact_allow),
+ dbesc($str_group_allow),
+ dbesc($str_contact_deny),
+ dbesc($str_group_deny)
+
);
$r = q("SELECT `id` FROM `item` WHERE `hash` = '%s' LIMIT 1",
dbesc($hash));
diff --git a/mod/profile.php b/mod/profile.php
index 5d1b04b33..37bf04a0c 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -141,8 +141,9 @@ function profile_content(&$a) {
$o .= replace_macros($tpl,array(
'$baseurl' => $a->get_baseurl(),
+ '$visitor' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? 'block' : 'none'),
'$lockstate' => 'unlock',
- '$acl' => populate_acl(),
+ '$acl' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? populate_acl() : ''),
'$profile_uid' => $a->profile['profile_uid']
));
}
@@ -165,7 +166,6 @@ function profile_content(&$a) {
$sql_extra = '';
// authenticated visitor - here lie dragons
-
elseif(remote_user()) {
$gs = '<<>>'; // should be impossible to match
if(count($groups)) {
@@ -178,8 +178,8 @@ function profile_content(&$a) {
AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s') ",
- intval($visitor_id),
- intval($visitor_id),
+ intval($_SESSION['visitor_id']),
+ intval($_SESSION['visitor_id']),
$gs,
$gs
);