friendica/mod/tagger.php

172 lines
4.7 KiB
PHP
Raw Normal View History

2011-10-23 09:24:37 +02:00
<?php
2018-01-22 15:16:25 +01:00
/**
2022-01-02 08:27:47 +01:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
2018-01-22 15:16:25 +01:00
*/
2019-10-25 00:10:20 +02:00
use Friendica\App;
use Friendica\Core\Hook;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
2019-09-28 20:09:11 +02:00
use Friendica\Core\Session;
2019-10-25 00:10:20 +02:00
use Friendica\Core\System;
2017-11-05 13:15:53 +01:00
use Friendica\Core\Worker;
use Friendica\Database\DBA;
use Friendica\DI;
2021-10-03 00:42:39 +02:00
use Friendica\Model\Contact;
use Friendica\Model\Item;
use Friendica\Model\Post;
2020-04-17 15:36:55 +02:00
use Friendica\Model\Tag;
use Friendica\Protocol\Activity;
use Friendica\Util\XML;
use Friendica\Worker\Delivery;
function tagger_content(App $a) {
2011-10-23 09:24:37 +02:00
2019-09-28 20:09:11 +02:00
if (!Session::isAuthenticated()) {
2011-10-23 09:24:37 +02:00
return;
}
$term = trim($_GET['term'] ?? '');
2011-10-25 02:25:49 +02:00
// no commas allowed
2021-11-07 10:18:25 +01:00
$term = str_replace([',',' ', '<', '>'],['','_', '', ''], $term);
2011-10-23 09:24:37 +02:00
2018-06-12 11:05:36 +02:00
if (!$term) {
2011-10-23 09:24:37 +02:00
return;
2018-06-12 11:05:36 +02:00
}
2011-10-23 09:24:37 +02:00
2021-11-07 10:18:25 +01:00
$item_id = ((DI::args()->getArgc() > 1) ? trim(DI::args()->getArgv()[1]) : 0);
2011-10-23 09:24:37 +02:00
2022-08-30 21:45:30 +02:00
Logger::info('tagger: tag ' . $term . ' item ' . $item_id);
2011-10-23 09:24:37 +02:00
$item = Post::selectFirst([], ['id' => $item_id]);
2011-10-23 09:24:37 +02:00
2018-07-21 14:46:04 +02:00
if (!$item_id || !DBA::isResult($item)) {
2021-10-03 00:42:39 +02:00
Logger::notice('tagger: no item ' . $item_id);
2011-10-23 09:24:37 +02:00
return;
}
$owner_uid = $item['uid'];
2018-06-12 11:05:36 +02:00
if (local_user() != $owner_uid) {
2011-10-25 00:47:17 +02:00
return;
2018-06-12 11:05:36 +02:00
}
2011-10-23 09:24:37 +02:00
2021-10-03 00:42:39 +02:00
$contact = Contact::selectFirst([], ['self' => true, 'uid' => local_user()]);
if (!DBA::isResult($contact)) {
2022-08-30 21:45:30 +02:00
Logger::warning('Self contact not found.', ['uid' => local_user()]);
2011-10-23 09:24:37 +02:00
return;
}
$uri = Item::newURI();
$xterm = XML::escape($term);
$post_type = (($item['resource-id']) ? DI::l10n()->t('photo') : DI::l10n()->t('status'));
2019-10-25 00:10:20 +02:00
$targettype = (($item['resource-id']) ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE );
$href = DI::baseUrl() . '/display/' . $item['guid'];
$link = XML::escape('<link rel="alternate" type="text/html" href="'. $href . '" />' . "\n");
2011-10-23 09:24:37 +02:00
$body = XML::escape($item['body']);
2011-10-23 09:24:37 +02:00
$target = <<< EOT
<target>
<type>$targettype</type>
<local>1</local>
<id>{$item['uri']}</id>
<link>$link</link>
<title></title>
<content>$body</content>
</target>
EOT;
$tagid = DI::baseUrl() . '/search?tag=' . $xterm;
2019-10-25 00:10:20 +02:00
$objtype = Activity\ObjectType::TAGTERM;
2011-10-23 09:24:37 +02:00
$obj = <<< EOT
<object>
<type>$objtype</type>
<local>1</local>
<id>$tagid</id>
<link>$tagid</link>
<title>$xterm</title>
<content>$xterm</content>
2011-10-23 09:24:37 +02:00
</object>
EOT;
$bodyverb = DI::l10n()->t('%1$s tagged %2$s\'s %3$s with %4$s');
2011-10-23 09:24:37 +02:00
2018-06-12 11:05:36 +02:00
if (!isset($bodyverb)) {
return;
}
2011-10-23 09:24:37 +02:00
$termlink = html_entity_decode('&#x2317;') . '[url=' . DI::baseUrl() . '/search?tag=' . $term . ']'. $term . '[/url]';
2011-10-23 09:24:37 +02:00
$arr = [];
2011-10-23 09:24:37 +02:00
2018-09-27 13:52:15 +02:00
$arr['guid'] = System::createUUID();
2011-10-23 09:24:37 +02:00
$arr['uri'] = $uri;
$arr['uid'] = $owner_uid;
$arr['contact-id'] = $contact['id'];
$arr['wall'] = $item['wall'];
$arr['gravity'] = GRAVITY_COMMENT;
$arr['parent'] = $item['id'];
$arr['thr-parent'] = $item['uri'];
2011-10-23 09:24:37 +02:00
$arr['owner-name'] = $item['author-name'];
$arr['owner-link'] = $item['author-link'];
$arr['owner-avatar'] = $item['author-avatar'];
$arr['author-name'] = $contact['name'];
$arr['author-link'] = $contact['url'];
$arr['author-avatar'] = $contact['thumb'];
2011-10-23 09:24:37 +02:00
$ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
$alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
$plink = '[url=' . $item['plink'] . ']' . $post_type . '[/url]';
$arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink, $termlink );
$arr['verb'] = Activity::TAG;
2011-10-23 09:24:37 +02:00
$arr['target-type'] = $targettype;
$arr['target'] = $target;
$arr['object-type'] = $objtype;
$arr['object'] = $obj;
$arr['private'] = $item['private'];
2011-10-23 09:24:37 +02:00
$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;
$arr['origin'] = 1;
$post_id = Item::insert($arr);
2011-10-23 09:24:37 +02:00
if (!$item['visible']) {
Item::update(['visible' => true], ['id' => $item['id']]);
}
2011-10-23 09:24:37 +02:00
2020-04-17 15:36:55 +02:00
Tag::store($item['uri-id'], Tag::HASHTAG, $term);
2011-10-23 09:24:37 +02:00
$arr['id'] = $post_id;
Hook::callAll('post_local_end', $arr);
2011-10-23 09:24:37 +02:00
$post = Post::selectFirst(['uri-id', 'uid'], ['id' => $post_id]);
Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $post['uri-id'], $post['uid']);
2022-05-18 04:13:54 +02:00
System::exit();
}