2011-03-17 03:36:59 +01:00
|
|
|
<?php
|
|
|
|
|
2012-12-28 22:51:50 +01:00
|
|
|
require_once('include/bbcode.php');
|
2011-03-17 03:36:59 +01:00
|
|
|
|
|
|
|
function share_init(&$a) {
|
|
|
|
|
|
|
|
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
|
|
|
if((! $post_id) || (! local_user()))
|
|
|
|
killme();
|
|
|
|
|
2012-06-23 12:25:11 +02:00
|
|
|
$r = q("SELECT item.*, contact.network FROM `item`
|
2014-03-09 09:19:14 +01:00
|
|
|
inner join contact on `item`.`contact-id` = `contact`.`id`
|
2012-06-23 12:25:11 +02:00
|
|
|
WHERE `item`.`id` = %d AND `item`.`uid` = %d LIMIT 1",
|
|
|
|
|
|
|
|
intval($post_id),
|
|
|
|
intval(local_user())
|
2011-03-17 03:36:59 +01:00
|
|
|
);
|
2012-06-29 02:43:29 +02:00
|
|
|
if(! count($r) || ($r[0]['private'] == 1))
|
2011-03-17 03:36:59 +01:00
|
|
|
killme();
|
|
|
|
|
2013-10-15 00:49:49 +02:00
|
|
|
if (!intval(get_config('system','old_share'))) {
|
2012-12-21 00:08:58 +01:00
|
|
|
if (strpos($r[0]['body'], "[/share]") !== false) {
|
|
|
|
$pos = strpos($r[0]['body'], "[share");
|
|
|
|
$o = substr($r[0]['body'], $pos);
|
|
|
|
} else {
|
2012-12-21 02:10:26 +01:00
|
|
|
$o = "[share author='".str_replace("'", "'",$r[0]['author-name']).
|
2012-12-21 00:08:58 +01:00
|
|
|
"' profile='".$r[0]['author-link'].
|
|
|
|
"' avatar='".$r[0]['author-avatar'].
|
2013-01-15 23:58:50 +01:00
|
|
|
"' link='".$r[0]['plink'].
|
|
|
|
"' posted='".$r[0]['created']."']\n";
|
2012-12-21 00:08:58 +01:00
|
|
|
if($r[0]['title'])
|
|
|
|
$o .= '[b]'.$r[0]['title'].'[/b]'."\n";
|
|
|
|
$o .= $r[0]['body'];
|
|
|
|
$o.= "[/share]";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
$o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n";
|
|
|
|
if($r[0]['title'])
|
|
|
|
$o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
|
|
|
|
$o .= $r[0]['body'] . "\n" ;
|
|
|
|
|
|
|
|
$o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : '');
|
|
|
|
}
|
2012-03-07 00:28:27 +01:00
|
|
|
echo $o;
|
2012-12-21 00:08:58 +01:00
|
|
|
killme();
|
2011-04-10 12:36:12 +02:00
|
|
|
}
|