streams/mod/webpages.php

197 lines
5.1 KiB
PHP
Raw Normal View History

2013-07-10 18:46:06 +00:00
<?php
2013-07-10 18:53:11 +00:00
2014-11-12 04:44:43 +00:00
require_once('include/identity.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
function webpages_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;
}
}
2013-07-10 18:53:11 +00:00
if(argc() > 1)
$which = argv(1);
else
return;
2014-11-12 04:44:43 +00:00
profile_load($a,$which);
}
function webpages_content(&$a) {
if(! $a->profile) {
2013-07-10 18:53:11 +00:00
notice( t('Requested profile is not available.') . EOL );
$a->error = 404;
return;
}
2014-11-12 04:44:43 +00:00
$which = argv(1);
$_SESSION['return_url'] = $a->query_string;
2014-11-12 04:44:43 +00:00
2015-01-29 04:56:04 +00:00
$uid = local_channel();
2014-11-12 02:57:59 +00:00
$owner = 0;
$channel = null;
$observer = $a->get_observer();
2013-07-10 18:53:11 +00:00
$channel = $a->get_channel();
if($a->is_sys && is_site_admin()) {
2014-11-12 02:57:59 +00:00
$sys = get_sys_channel();
if($sys && intval($sys['channel_id'])) {
$uid = $owner = intval($sys['channel_id']);
$channel = $sys;
$observer = $sys;
}
2013-07-10 18:53:11 +00:00
}
2014-11-12 02:57:59 +00:00
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']);
}
}
2014-04-30 01:28:05 +00:00
$ob_hash = (($observer) ? $observer['xchan_hash'] : '');
2014-04-30 01:28:05 +00:00
$perms = get_all_perms($owner,$ob_hash);
2013-07-10 18:46:06 +00:00
2014-04-30 01:28:05 +00:00
if(! $perms['write_pages']) {
notice( t('Permission denied.') . EOL);
return;
}
2013-07-10 18:53:11 +00:00
2015-04-14 09:50:21 +00:00
$mimetype = (($_REQUEST['mimetype']) ? $_REQUEST['mimetype'] : get_pconfig($owner,'system','page_mimetype'));
if(! $mimetype) {
$mimetype = 'choose';
}
$layout = (($_REQUEST['layout']) ? $_REQUEST['layout'] : get_pconfig($owner,'system','page_layout'));
2014-04-30 01:28:05 +00:00
if(! $layout)
$layout = 'choose';
2013-09-03 03:25:33 +00:00
2014-11-12 02:57:59 +00:00
// Create a status editor (for now - we'll need a WYSIWYG eventually) to create pages
// Nickname is set to the observers xchan, and profile_uid to the owner's.
// This lets you post pages at other people's channels.
if((! $channel) && ($uid) && ($uid == $a->profile_uid)) {
2014-04-30 01:28:05 +00:00
$channel = $a->get_channel();
2014-11-12 02:57:59 +00:00
}
if($channel) {
2014-04-30 01:28:05 +00:00
$channel_acl = array(
'allow_cid' => $channel['channel_allow_cid'],
'allow_gid' => $channel['channel_allow_gid'],
'deny_cid' => $channel['channel_deny_cid'],
'deny_gid' => $channel['channel_deny_gid']
2013-07-10 18:53:11 +00:00
);
2014-04-30 01:28:05 +00:00
}
else
$channel_acl = array();
2015-04-22 10:31:30 +00:00
$is_owner = ($uid && $uid == $owner);
$o = profile_tabs($a, $is_owner, $a->profile['channel_address']);
2014-04-30 01:28:05 +00:00
$x = array(
2014-11-12 04:44:43 +00:00
'webpage' => ITEM_WEBPAGE,
'is_owner' => true,
'nickname' => $a->profile['channel_address'],
'lockstate' => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
'bang' => '',
2015-04-22 10:31:30 +00:00
'acl' => (($is_owner) ? populate_acl($channel_acl,false) : ''),
'showacl' => (($is_owner) ? true : false),
2014-11-12 04:44:43 +00:00
'visitor' => true,
2014-04-30 01:28:05 +00:00
'profile_uid' => intval($owner),
2014-11-12 04:44:43 +00:00
'mimetype' => $mimetype,
'layout' => $layout,
'expanded' => true,
'novoting' => true
2014-04-30 01:28:05 +00:00
);
if($_REQUEST['title'])
$x['title'] = $_REQUEST['title'];
if($_REQUEST['body'])
$x['body'] = $_REQUEST['body'];
if($_REQUEST['pagetitle'])
$x['pagetitle'] = $_REQUEST['pagetitle'];
$editor = status_editor($a,$x);
2013-07-10 18:53:11 +00:00
2014-11-12 04:44:43 +00:00
// Get a list of webpages. We can't display all them because endless scroll makes that unusable,
// so just list titles and an edit link.
/** @TODO - this should be replaced with pagelist_widget */
2013-07-10 18:53:11 +00:00
2015-04-22 10:00:15 +00:00
$sql_extra = item_permissions_sql($owner);
2014-11-12 04:44:43 +00:00
$r = q("select * from item_id left join item on item_id.iid = item.id
where item_id.uid = %d and service = 'WEBPAGE' and item_restrict = %d $sql_extra order by item.created desc",
intval($owner),
intval(ITEM_WEBPAGE)
);
2013-07-10 18:46:06 +00:00
$pages = null;
2013-07-10 18:46:06 +00:00
if($r) {
$pages = array();
foreach($r as $rr) {
2014-06-16 02:21:32 +00:00
unobscure($rr);
2015-04-21 21:08:54 +00:00
$lockstate = (($rr['allow_cid'] || $rr['allow_gid'] || $rr['deny_cid'] || $rr['deny_gid']) ? 'lock' : 'unlock');
$element_arr = array(
2015-04-16 08:46:59 +00:00
'type' => 'webpage',
'title' => $rr['title'],
'body' => $rr['body'],
'created' => $rr['created'],
'edited' => $rr['edited'],
'mimetype' => $rr['mimetype'],
'pagetitle' => $rr['sid'],
'mid' => $rr['mid']
);
2014-11-12 04:44:43 +00:00
$pages[$rr['iid']][] = array(
2015-04-16 08:46:59 +00:00
'url' => $rr['iid'],
'pagetitle' => $rr['sid'],
'title' => $rr['title'],
'created' => datetime_convert('UTC',date_default_timezone_get(),$rr['created']),
'edited' => datetime_convert('UTC',date_default_timezone_get(),$rr['edited']),
2015-04-21 21:08:54 +00:00
'bb_element' => '[element]' . base64url_encode(json_encode($element_arr)) . '[/element]',
'lockstate' => $lockstate
2014-11-12 04:44:43 +00:00
);
2014-04-30 01:28:05 +00:00
}
}
2013-07-10 18:46:06 +00:00
2014-11-12 04:44:43 +00:00
//Build the base URL for edit links
$url = z_root() . '/editwebpage/' . $which;
$o .= replace_macros(get_markup_template('webpagelist.tpl'), array(
'$listtitle' => t('Webpages'),
2014-11-12 04:44:43 +00:00
'$baseurl' => $url,
'$create' => t('Create'),
2014-11-12 04:44:43 +00:00
'$edit' => t('Edit'),
'$share' => t('Share'),
2015-04-13 21:38:36 +00:00
'$delete' => t('Delete'),
2014-11-12 04:44:43 +00:00
'$pages' => $pages,
'$channel' => $which,
2015-04-13 21:38:36 +00:00
'$editor' => $editor,
2014-11-12 04:44:43 +00:00
'$view' => t('View'),
'$preview' => t('Preview'),
'$actions_txt' => t('Actions'),
2014-04-30 01:28:05 +00:00
'$pagelink_txt' => t('Page Link'),
2015-04-13 21:38:36 +00:00
'$title_txt' => t('Page Title'),
2014-11-12 04:44:43 +00:00
'$created_txt' => t('Created'),
'$edited_txt' => t('Edited')
));
2014-04-30 01:28:05 +00:00
2014-11-12 04:44:43 +00:00
return $o;
2013-07-10 18:53:11 +00:00
}