uid not set in webpages.php, start on editwebpage.php
This commit is contained in:
parent
4b9ec6645b
commit
9be4fcce55
@ -1,26 +1,74 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Required for setting permissions. (FIXME)
|
require_once('include/identity.php');
|
||||||
|
require_once('include/acl_selectors.php');
|
||||||
|
|
||||||
|
function editwebpage_init(&$a) {
|
||||||
|
|
||||||
|
if(argc() > 1 && argv(1) === 'sys' && is_site_admin()) {
|
||||||
|
$sys = get_sys_channel();
|
||||||
|
if($sys && intval($sys['channel_id'])) {
|
||||||
|
$a->is_sys = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(argc() > 1)
|
||||||
|
$which = argv(1);
|
||||||
|
else
|
||||||
|
return;
|
||||||
|
|
||||||
|
profile_load($a,$which);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
require_once('acl_selectors.php');
|
|
||||||
|
|
||||||
function editwebpage_content(&$a) {
|
function editwebpage_content(&$a) {
|
||||||
|
|
||||||
// We first need to figure out who owns the webpage, grab it from an argument
|
if(! $a->profile) {
|
||||||
|
notice( t('Requested profile is not available.') . EOL );
|
||||||
|
$a->error = 404;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$which = argv(1);
|
$which = argv(1);
|
||||||
|
|
||||||
// $a->get_channel() and stuff don't work here, so we've got to find the owner for ourselves.
|
$uid = local_user();
|
||||||
|
$owner = 0;
|
||||||
|
$channel = null;
|
||||||
|
$observer = $a->get_observer();
|
||||||
|
|
||||||
$r = q("select channel_id from channel where channel_address = '%s'",
|
$channel = $a->get_channel();
|
||||||
dbesc($which)
|
|
||||||
);
|
if($a->is_sys && is_site_admin()) {
|
||||||
if($r) {
|
$sys = get_sys_channel();
|
||||||
$owner = intval($r[0]['channel_id']);
|
if($sys && intval($sys['channel_id'])) {
|
||||||
//logger('owner: ' . print_r($owner,true));
|
$uid = $owner = intval($sys['channel_id']);
|
||||||
|
$channel = $sys;
|
||||||
|
$observer = $sys;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$is_owner = ((local_user() && local_user() == $owner) ? true : false);
|
if(! $owner) {
|
||||||
|
// Figure out who the page owner is.
|
||||||
|
$r = q("select channel_id from channel where channel_address = '%s'",
|
||||||
|
dbesc($which)
|
||||||
|
);
|
||||||
|
if($r) {
|
||||||
|
$owner = intval($r[0]['channel_id']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$ob_hash = (($observer) ? $observer['xchan_hash'] : '');
|
||||||
|
|
||||||
|
$perms = get_all_perms($owner,$ob_hash);
|
||||||
|
|
||||||
|
if(! $perms['write_pages']) {
|
||||||
|
notice( t('Permission denied.') . EOL);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$is_owner = (($uid && $uid == $owner) ? true : false);
|
||||||
|
|
||||||
$o = '';
|
$o = '';
|
||||||
|
|
||||||
@ -33,9 +81,6 @@ function editwebpage_content(&$a) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now we've got a post and an owner, let's find out if we're allowed to edit it
|
|
||||||
|
|
||||||
$observer = $a->get_observer();
|
|
||||||
$ob_hash = (($observer) ? $observer['xchan_hash'] : '');
|
$ob_hash = (($observer) ? $observer['xchan_hash'] : '');
|
||||||
|
|
||||||
$perms = get_all_perms($owner,$ob_hash);
|
$perms = get_all_perms($owner,$ob_hash);
|
||||||
@ -45,14 +90,13 @@ function editwebpage_content(&$a) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We've already figured out which item we want and whose copy we need,
|
||||||
|
// so we don't need anything fancy here
|
||||||
|
|
||||||
|
|
||||||
// We've already figured out which item we want and whose copy we need, so we don't need anything fancy here
|
|
||||||
$itm = q("SELECT * FROM `item` WHERE `id` = %d and uid = %s LIMIT 1",
|
$itm = q("SELECT * FROM `item` WHERE `id` = %d and uid = %s LIMIT 1",
|
||||||
intval($post_id),
|
intval($post_id),
|
||||||
intval($owner)
|
intval($owner)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
if($itm[0]['item_flags'] & ITEM_OBSCURED) {
|
if($itm[0]['item_flags'] & ITEM_OBSCURED) {
|
||||||
$key = get_config('system','prvkey');
|
$key = get_config('system','prvkey');
|
||||||
@ -63,23 +107,17 @@ function editwebpage_content(&$a) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$item_id = q("select * from item_id where service = 'WEBPAGE' and iid = %d limit 1",
|
$item_id = q("select * from item_id where service = 'WEBPAGE' and iid = %d limit 1",
|
||||||
$itm[0]['id']
|
intval($itm[0]['id'])
|
||||||
);
|
);
|
||||||
if($item_id)
|
if($item_id)
|
||||||
$page_title = $item_id[0]['sid'];
|
$page_title = $item_id[0]['sid'];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$plaintext = true;
|
$plaintext = true;
|
||||||
|
|
||||||
// if(feature_enabled($itm[0]['uid'],'richtext'))
|
|
||||||
// $plaintext = false;
|
|
||||||
|
|
||||||
$mimetype = $itm[0]['mimetype'];
|
$mimetype = $itm[0]['mimetype'];
|
||||||
|
|
||||||
if($mimetype === 'application/x-php') {
|
if($mimetype === 'application/x-php') {
|
||||||
if((! local_user()) || (local_user() != $itm[0]['uid'])) {
|
if((! $uid) || ($uid != $itm[0]['uid'])) {
|
||||||
notice( t('Permission denied.') . EOL);
|
notice( t('Permission denied.') . EOL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -101,7 +139,6 @@ function editwebpage_content(&$a) {
|
|||||||
else
|
else
|
||||||
$layoutselect = layout_select($itm[0]['uid'],$itm[0]['layout_mid']);
|
$layoutselect = layout_select($itm[0]['uid'],$itm[0]['layout_mid']);
|
||||||
|
|
||||||
|
|
||||||
$o .= replace_macros(get_markup_template('edpost_head.tpl'), array(
|
$o .= replace_macros(get_markup_template('edpost_head.tpl'), array(
|
||||||
'$title' => t('Edit Webpage')
|
'$title' => t('Edit Webpage')
|
||||||
));
|
));
|
||||||
@ -112,7 +149,7 @@ function editwebpage_content(&$a) {
|
|||||||
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
|
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
|
||||||
'$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'),
|
'$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'),
|
||||||
'$geotag' => $geotag,
|
'$geotag' => $geotag,
|
||||||
'$nickname' => $a->user['nickname'],
|
'$nickname' => $channel['channel_address'],
|
||||||
'$confirmdelete' => t('Delete webpage?')
|
'$confirmdelete' => t('Delete webpage?')
|
||||||
));
|
));
|
||||||
|
|
||||||
@ -125,11 +162,8 @@ function editwebpage_content(&$a) {
|
|||||||
call_hooks('jot_tool', $jotplugins);
|
call_hooks('jot_tool', $jotplugins);
|
||||||
call_hooks('jot_networks', $jotnets);
|
call_hooks('jot_networks', $jotnets);
|
||||||
|
|
||||||
$channel = $a->get_channel();
|
// FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD
|
||||||
|
// instead of loading a sensible page. So, send folk to the webpage list.
|
||||||
//$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
|
|
||||||
|
|
||||||
//FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD instead of loading a sensible page. So, send folk to the webpage list.
|
|
||||||
|
|
||||||
$rp = 'webpages/' . $which;
|
$rp = 'webpages/' . $which;
|
||||||
|
|
||||||
@ -171,16 +205,16 @@ function editwebpage_content(&$a) {
|
|||||||
'lockstate' => (((strlen($itm[0]['allow_cid'])) || (strlen($itm[0]['allow_gid'])) || (strlen($itm[0]['deny_cid'])) || (strlen($itm[0]['deny_gid']))) ? 'lock' : 'unlock'),
|
'lockstate' => (((strlen($itm[0]['allow_cid'])) || (strlen($itm[0]['allow_gid'])) || (strlen($itm[0]['deny_cid'])) || (strlen($itm[0]['deny_gid']))) ? 'lock' : 'unlock'),
|
||||||
'$bang' => '',
|
'$bang' => '',
|
||||||
'$profile_uid' => (intval($owner)),
|
'$profile_uid' => (intval($owner)),
|
||||||
'$preview' => ((feature_enabled(local_user(),'preview')) ? t('Preview') : ''),
|
'$preview' => ((feature_enabled($uid,'preview')) ? t('Preview') : ''),
|
||||||
'$jotplugins' => $jotplugins,
|
'$jotplugins' => $jotplugins,
|
||||||
'$sourceapp' => t($a->sourcename),
|
'$sourceapp' => $a->sourcename,
|
||||||
'$defexpire' => '',
|
'$defexpire' => '',
|
||||||
'$feature_expire' => false,
|
'$feature_expire' => false,
|
||||||
'$expires' => t('Set expiration date'),
|
'$expires' => t('Set expiration date'),
|
||||||
|
|
||||||
));
|
));
|
||||||
|
|
||||||
$ob = get_observer_hash();
|
$ob = (($observer) ? $observer['xchan_hash'] : '');
|
||||||
|
|
||||||
if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob))
|
if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob))
|
||||||
$o .= '<br /><br /><a class="page-delete-link" href="item/drop/' . $itm[0]['id'] . '" >' . t('Delete Webpage') . '</a><br />';
|
$o .= '<br /><br /><a class="page-delete-link" href="item/drop/' . $itm[0]['id'] . '" >' . t('Delete Webpage') . '</a><br />';
|
||||||
|
@ -33,7 +33,7 @@ function webpages_content(&$a) {
|
|||||||
|
|
||||||
$which = argv(1);
|
$which = argv(1);
|
||||||
|
|
||||||
$uid = 0;
|
$uid = local_user();
|
||||||
$owner = 0;
|
$owner = 0;
|
||||||
$channel = null;
|
$channel = null;
|
||||||
$observer = $a->get_observer();
|
$observer = $a->get_observer();
|
||||||
|
Reference in New Issue
Block a user