2011-10-23 09:24:37 +02:00
|
|
|
<?php
|
2018-01-22 15:16:25 +01:00
|
|
|
/**
|
|
|
|
* @file mod/tagger.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2018-01-22 15:16:25 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-05 13:15:53 +01:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-28 12:18:08 +01:00
|
|
|
use Friendica\Model\Item;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
require_once 'include/items.php';
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function tagger_content(App $a) {
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2018-06-12 11:05:36 +02:00
|
|
|
if (!local_user() && !remote_user()) {
|
2011-10-23 09:24:37 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-25 02:25:49 +02:00
|
|
|
$term = notags(trim($_GET['term']));
|
|
|
|
// no commas allowed
|
2018-01-15 14:05:12 +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
|
|
|
|
|
|
|
$item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('tagger: tag ' . $term . ' item ' . $item_id);
|
2011-10-23 09:24:37 +02:00
|
|
|
|
|
|
|
|
2018-06-17 19:05:17 +02:00
|
|
|
$item = Item::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)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('tagger: no item ' . $item_id);
|
2011-10-23 09:24:37 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$owner_uid = $item['uid'];
|
2018-02-12 19:28:14 +01:00
|
|
|
$owner_nick = '';
|
|
|
|
$blocktags = 0;
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2011-10-24 13:17:46 +02:00
|
|
|
$r = q("select `nickname`,`blocktags` from user where uid = %d limit 1",
|
2011-10-23 09:24:37 +02:00
|
|
|
intval($owner_uid)
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2011-10-23 09:24:37 +02:00
|
|
|
$owner_nick = $r[0]['nickname'];
|
2011-10-24 13:17:46 +02:00
|
|
|
$blocktags = $r[0]['blocktags'];
|
|
|
|
}
|
2011-10-23 09:24:37 +02:00
|
|
|
|
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
|
|
|
|
2012-09-05 07:50:28 +02:00
|
|
|
$r = q("select * from contact where self = 1 and uid = %d limit 1",
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2011-10-23 09:24:37 +02:00
|
|
|
$contact = $r[0];
|
2018-06-12 11:05:36 +02:00
|
|
|
} else {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('tagger: no contact_id');
|
2011-10-23 09:24:37 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-16 08:44:19 +02:00
|
|
|
$uri = Item::newURI($owner_uid);
|
2012-04-30 07:34:05 +02:00
|
|
|
$xterm = xmlify($term);
|
2018-01-22 15:16:25 +01:00
|
|
|
$post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status'));
|
2016-12-20 08:10:47 +01:00
|
|
|
$targettype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2018-02-12 19:28:14 +01:00
|
|
|
if ($owner_nick) {
|
|
|
|
$href = System::baseUrl() . '/display/' . $owner_nick . '/' . $item['id'];
|
|
|
|
} else {
|
|
|
|
$href = System::baseUrl() . '/display/' . $item['guid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$link = xmlify('<link rel="alternate" type="text/html" href="'. $href . '" />' . "\n") ;
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2012-04-30 07:34:05 +02:00
|
|
|
$body = xmlify($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;
|
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$tagid = System::baseUrl() . '/search?tag=' . $term;
|
2011-10-23 09:24:37 +02:00
|
|
|
$objtype = ACTIVITY_OBJ_TAGTERM;
|
|
|
|
|
|
|
|
$obj = <<< EOT
|
|
|
|
<object>
|
|
|
|
<type>$objtype</type>
|
|
|
|
<local>1</local>
|
|
|
|
<id>$tagid</id>
|
|
|
|
<link>$tagid</link>
|
2012-04-30 07:34:05 +02:00
|
|
|
<title>$xterm</title>
|
|
|
|
<content>$xterm</content>
|
2011-10-23 09:24:37 +02:00
|
|
|
</object>
|
|
|
|
EOT;
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
$bodyverb = 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)) {
|
2016-12-20 21:31:05 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$termlink = html_entity_decode('⌗') . '[url=' . System::baseUrl() . '/search?tag=' . urlencode($term) . ']'. $term . '[/url]';
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2018-01-15 14:05:12 +01: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['parent-uri'] = $item['uri'];
|
|
|
|
$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'];
|
2016-03-20 15:01:50 +01:00
|
|
|
|
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;
|
|
|
|
$arr['target-type'] = $targettype;
|
|
|
|
$arr['target'] = $target;
|
|
|
|
$arr['object-type'] = $objtype;
|
|
|
|
$arr['object'] = $obj;
|
2012-02-27 01:29:06 +01:00
|
|
|
$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;
|
|
|
|
|
2018-01-28 12:18:08 +01:00
|
|
|
$post_id = Item::insert($arr);
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2018-02-06 13:40:22 +01:00
|
|
|
if (!$item['visible']) {
|
|
|
|
Item::update(['visible' => true], ['id' => $item['id']]);
|
2014-03-11 23:52:32 +01:00
|
|
|
}
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2018-02-06 13:40:22 +01:00
|
|
|
$term_objtype = ($item['resource-id'] ? TERM_OBJ_PHOTO : TERM_OBJ_POST);
|
2018-05-10 14:48:27 +02:00
|
|
|
|
|
|
|
$t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
|
|
|
|
intval($item['id']),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($term)
|
2018-05-10 14:48:27 +02:00
|
|
|
);
|
|
|
|
|
2018-06-12 11:05:36 +02:00
|
|
|
if (!$blocktags && $t[0]['tcount'] == 0) {
|
2013-08-03 21:12:50 +02:00
|
|
|
q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
|
|
|
|
intval($item['id']),
|
|
|
|
$term_objtype,
|
|
|
|
TERM_HASHTAG,
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($term),
|
|
|
|
DBA::escape(System::baseUrl() . '/search?tag=' . $term),
|
2013-08-03 21:12:50 +02:00
|
|
|
intval($owner_uid)
|
2011-10-24 13:17:46 +02:00
|
|
|
);
|
|
|
|
}
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2011-10-24 13:17:46 +02:00
|
|
|
// if the original post is on this site, update it.
|
2018-06-21 17:14:01 +02:00
|
|
|
$original_item = Item::selectFirst(['tag', 'id', 'uid'], ['origin' => true, 'uri' => $item['uri']]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($original_item)) {
|
2018-05-10 14:48:27 +02:00
|
|
|
$x = q("SELECT `blocktags` FROM `user` WHERE `uid`=%d LIMIT 1",
|
2018-06-21 08:21:51 +02:00
|
|
|
intval($original_item['uid'])
|
2011-10-24 13:17:46 +02:00
|
|
|
);
|
2018-05-10 14:48:27 +02:00
|
|
|
$t = q("SELECT COUNT(`tid`) AS `tcount` FROM `term` WHERE `oid`=%d AND `term`='%s'",
|
2018-06-21 08:21:51 +02:00
|
|
|
intval($original_item['id']),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($term)
|
2013-08-03 21:12:50 +02:00
|
|
|
);
|
2018-05-10 14:48:27 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($x) && !$x[0]['blocktags'] && $t[0]['tcount'] == 0){
|
2018-05-10 14:48:27 +02:00
|
|
|
q("INSERT INTO term (`oid`, `otype`, `type`, `term`, `url`, `uid`) VALUE (%d, %d, %d, '%s', '%s', %d)",
|
2018-06-21 08:21:51 +02:00
|
|
|
intval($original_item['id']),
|
2018-05-10 14:48:27 +02:00
|
|
|
$term_objtype,
|
|
|
|
TERM_HASHTAG,
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($term),
|
|
|
|
DBA::escape(System::baseUrl() . '/search?tag=' . $term),
|
2018-05-10 14:48:27 +02:00
|
|
|
intval($owner_uid)
|
|
|
|
);
|
2013-08-03 21:12:50 +02:00
|
|
|
}
|
2011-10-24 13:17:46 +02:00
|
|
|
}
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2011-10-23 09:24:37 +02:00
|
|
|
|
|
|
|
$arr['id'] = $post_id;
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('post_local_end', $arr);
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2017-11-19 19:59:55 +01:00
|
|
|
Worker::add(PRIORITY_HIGH, "Notifier", "tag", $post_id);
|
2011-10-23 09:24:37 +02:00
|
|
|
|
2011-10-25 00:47:17 +02:00
|
|
|
killme();
|
|
|
|
|
2011-10-23 09:24:37 +02:00
|
|
|
return; // NOTREACHED
|
2013-08-03 21:12:50 +02:00
|
|
|
}
|