2012-09-27 22:53:23 -04:00
|
|
|
<?php
|
2018-01-22 09:16:25 -05:00
|
|
|
/**
|
|
|
|
* @file mod/subthread.php
|
|
|
|
*/
|
2019-10-24 18:10:20 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-12-26 01:06:24 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2019-10-10 13:12:27 -04:00
|
|
|
use Friendica\Core\Session;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 17:00:08 -05:00
|
|
|
use Friendica\DI;
|
2018-01-28 06:18:08 -05:00
|
|
|
use Friendica\Model\Item;
|
2019-10-23 18:25:43 -04:00
|
|
|
use Friendica\Protocol\Activity;
|
2018-10-17 08:19:58 -04:00
|
|
|
use Friendica\Util\Security;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2018-11-05 07:40:18 -05:00
|
|
|
use Friendica\Util\XML;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-01-09 07:14:55 -05:00
|
|
|
function subthread_content(App $a) {
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2019-09-28 14:09:11 -04:00
|
|
|
if (!Session::isAuthenticated()) {
|
2012-09-27 22:53:23 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-23 18:25:43 -04:00
|
|
|
$activity = Activity::FOLLOW;
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-11-09 13:29:42 -05:00
|
|
|
$item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0);
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
$condition = ["`parent` = ? OR `parent-uri` = ? AND `parent` = `id`", $item_id, $item_id];
|
2018-06-17 13:05:17 -04:00
|
|
|
$item = Item::selectFirst([], $condition);
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (empty($item_id) || !DBA::isResult($item)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('subthread: no item ' . $item_id);
|
2012-09-27 22:53:23 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$owner_uid = $item['uid'];
|
|
|
|
|
2018-10-17 15:30:41 -04:00
|
|
|
if (!Security::canWriteToUserWall($owner_uid)) {
|
2012-09-27 22:53:23 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$remote_owner = null;
|
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if (!$item['wall']) {
|
2012-09-27 22:53:23 -04:00
|
|
|
// The top level post may have been written by somebody on another system
|
2018-08-19 08:46:11 -04:00
|
|
|
$contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'uid' => $item['uid']]);
|
|
|
|
if (!DBA::isResult($contact)) {
|
2012-09-27 22:53:23 -04:00
|
|
|
return;
|
2016-12-20 04:10:33 -05:00
|
|
|
}
|
2018-08-19 08:46:11 -04:00
|
|
|
if (!$contact['self']) {
|
|
|
|
$remote_owner = $contact;
|
2016-12-20 15:31:05 -05:00
|
|
|
}
|
2012-09-27 22:53:23 -04:00
|
|
|
}
|
|
|
|
|
2018-02-14 00:07:26 -05:00
|
|
|
$owner = null;
|
2017-01-09 07:14:55 -05:00
|
|
|
// this represents the post owner on this system.
|
2012-09-27 22:53:23 -04:00
|
|
|
|
|
|
|
$r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
|
|
|
|
WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
|
|
|
|
intval($owner_uid)
|
|
|
|
);
|
2018-05-10 08:48:27 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2012-09-27 22:53:23 -04:00
|
|
|
$owner = $r[0];
|
2018-05-10 08:48:27 -04:00
|
|
|
}
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if (!$owner) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('like: no owner');
|
2012-09-27 22:53:23 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if (!$remote_owner) {
|
2012-09-27 22:53:23 -04:00
|
|
|
$remote_owner = $owner;
|
2018-05-10 08:48:27 -04:00
|
|
|
}
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-02-14 00:07:26 -05:00
|
|
|
$contact = null;
|
2012-09-27 22:53:23 -04:00
|
|
|
// This represents the person posting
|
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if (local_user() && (local_user() == $owner_uid)) {
|
2012-09-27 22:53:23 -04:00
|
|
|
$contact = $owner;
|
2016-12-20 04:10:33 -05:00
|
|
|
} else {
|
2018-08-19 08:46:11 -04:00
|
|
|
$contact = DBA::selectFirst('contact', [], ['id' => $_SESSION['visitor_id'], 'uid' => $owner_uid]);
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
return;
|
2018-05-10 08:48:27 -04:00
|
|
|
}
|
2012-09-27 22:53:23 -04:00
|
|
|
}
|
|
|
|
|
2018-06-16 02:44:19 -04:00
|
|
|
$uri = Item::newURI($owner_uid);
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$post_type = (($item['resource-id']) ? DI::l10n()->t('photo') : DI::l10n()->t('status'));
|
2019-10-24 18:10:20 -04:00
|
|
|
$objtype = (($item['resource-id']) ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE );
|
2019-12-30 17:00:08 -05:00
|
|
|
$link = XML::escape('<link rel="alternate" type="text/html" href="' . DI::baseUrl() . '/display/' . $item['guid'] . '" />' . "\n");
|
2012-09-27 22:53:23 -04:00
|
|
|
$body = $item['body'];
|
|
|
|
|
|
|
|
$obj = <<< EOT
|
|
|
|
|
|
|
|
<object>
|
|
|
|
<type>$objtype</type>
|
|
|
|
<local>1</local>
|
|
|
|
<id>{$item['uri']}</id>
|
|
|
|
<link>$link</link>
|
|
|
|
<title></title>
|
|
|
|
<content>$body</content>
|
|
|
|
</object>
|
|
|
|
EOT;
|
2020-01-18 14:52:34 -05:00
|
|
|
$bodyverb = DI::l10n()->t('%1$s is following %2$s\'s %3$s');
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if (!isset($bodyverb)) {
|
2016-12-20 15:31:05 -05:00
|
|
|
return;
|
|
|
|
}
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$arr = [];
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-09-27 07:52:15 -04:00
|
|
|
$arr['guid'] = System::createUUID();
|
2012-09-27 22:53:23 -04:00
|
|
|
$arr['uri'] = $uri;
|
|
|
|
$arr['uid'] = $owner_uid;
|
|
|
|
$arr['contact-id'] = $contact['id'];
|
|
|
|
$arr['wall'] = $item['wall'];
|
|
|
|
$arr['origin'] = 1;
|
2018-06-27 14:09:33 -04:00
|
|
|
$arr['gravity'] = GRAVITY_ACTIVITY;
|
2012-09-27 22:53:23 -04:00
|
|
|
$arr['parent'] = $item['id'];
|
|
|
|
$arr['parent-uri'] = $item['uri'];
|
|
|
|
$arr['thr-parent'] = $item['uri'];
|
|
|
|
$arr['owner-name'] = $remote_owner['name'];
|
|
|
|
$arr['owner-link'] = $remote_owner['url'];
|
|
|
|
$arr['owner-avatar'] = $remote_owner['thumb'];
|
|
|
|
$arr['author-name'] = $contact['name'];
|
|
|
|
$arr['author-link'] = $contact['url'];
|
|
|
|
$arr['author-avatar'] = $contact['thumb'];
|
2016-03-20 10:01:50 -04:00
|
|
|
|
2012-09-27 22:53:23 -04:00
|
|
|
$ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
|
|
|
|
$alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
|
2019-12-30 17:00:08 -05:00
|
|
|
$plink = '[url=' . DI::baseUrl() . '/display/' . $item['guid'] . ']' . $post_type . '[/url]';
|
2012-09-27 22:53:23 -04:00
|
|
|
$arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink );
|
|
|
|
|
|
|
|
$arr['verb'] = $activity;
|
|
|
|
$arr['object-type'] = $objtype;
|
|
|
|
$arr['object'] = $obj;
|
|
|
|
$arr['allow_cid'] = $item['allow_cid'];
|
|
|
|
$arr['allow_gid'] = $item['allow_gid'];
|
|
|
|
$arr['deny_cid'] = $item['deny_cid'];
|
|
|
|
$arr['deny_gid'] = $item['deny_gid'];
|
|
|
|
$arr['visible'] = 1;
|
|
|
|
$arr['unseen'] = 1;
|
|
|
|
|
2018-01-28 06:18:08 -05:00
|
|
|
$post_id = Item::insert($arr);
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-02-06 07:40:22 -05:00
|
|
|
if (!$item['visible']) {
|
|
|
|
Item::update(['visible' => true], ['id' => $item['id']]);
|
2014-03-11 18:52:32 -04:00
|
|
|
}
|
2012-09-27 22:53:23 -04:00
|
|
|
|
|
|
|
$arr['id'] = $post_id;
|
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('post_local_end', $arr);
|
2012-09-27 22:53:23 -04:00
|
|
|
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2012-09-27 22:53:23 -04:00
|
|
|
}
|