diff options
author | Mario <mario@mariovavti.com> | 2021-10-09 15:00:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-10-09 15:00:21 +0000 |
commit | 63bdab2b5fd456979587e3c065c274c6475c17b1 (patch) | |
tree | 8efdcd023184c87f05b4824546ef96ad4472fedd /Zotlabs/Module/Search.php | |
parent | 14733f8482f309a246a6dc8187da7327d59e6321 (diff) | |
download | volse-hubzilla-63bdab2b5fd456979587e3c065c274c6475c17b1.tar.gz volse-hubzilla-63bdab2b5fd456979587e3c065c274c6475c17b1.tar.bz2 volse-hubzilla-63bdab2b5fd456979587e3c065c274c6475c17b1.zip |
use Libzot::fetch_conversation to fetch conversations from search and add an optional force argument to process_delivery
Diffstat (limited to 'Zotlabs/Module/Search.php')
-rw-r--r-- | Zotlabs/Module/Search.php | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php index 06a761998..5db0ce423 100644 --- a/Zotlabs/Module/Search.php +++ b/Zotlabs/Module/Search.php @@ -3,6 +3,7 @@ namespace Zotlabs\Module; use App; +use Zotlabs\Lib\Libzot; use Zotlabs\Lib\Activity; use Zotlabs\Lib\ActivityStreams; use Zotlabs\Web\Controller; @@ -57,26 +58,15 @@ class Search extends Controller { $o .= search($search, 'search-box', '/search', ((local_channel()) ? true : false)); if (local_channel() && strpos($search, 'https://') === 0 && !$update && !$load) { - $j = Activity::fetch(punify($search), App::get_channel()); - if ($j) { - $AS = new ActivityStreams($j); - if ($AS->is_valid()) { - // check if is_an_actor, otherwise import activity - if (is_array($AS->obj) && !ActivityStreams::is_an_actor($AS->obj)) { - $item = Activity::decode_note($AS); - if ($item) { - logger('parsed_item: ' . print_r($item, true), LOGGER_DATA); - Activity::store(App::get_channel(), $observer_hash, $AS, $item, true, true); - goaway(z_root() . '/display/' . gen_link_id($item['mid'])); - } - } - } + $f = Libzot::fetch_conversation(App::get_channel(), punify($search), true); + + if ($f) { + goaway(z_root() . '/hq/' . gen_link_id($f['message_id'])); } else { - // try other fetch providers (e.g. diaspora) + // try other fetch providers (e.g. diaspora, pubcrawl) $hookdata = [ - 'channel' => App::get_channel(), - 'data' => $search + 'url' => punify($search) ]; call_hooks('fetch_provider', $hookdata); } |