123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <?php
- namespace App\Http\Controllers;
- use Auth;
- use App\Hashtag;
- use App\Place;
- use App\Profile;
- use App\Status;
- use Illuminate\Http\Request;
- use App\Util\ActivityPub\Helpers;
- use Illuminate\Support\Facades\Cache;
- use Illuminate\Support\Str;
- use App\Transformer\Api\{
- AccountTransformer,
- HashtagTransformer,
- StatusTransformer,
- };
- use App\Services\WebfingerService;
- class SearchController extends Controller
- {
- public $tokens = [];
- public $term = '';
- public $hash = '';
- public $cacheKey = 'api:search:tag:';
- public function __construct()
- {
- $this->middleware('auth');
- }
- public function searchAPI(Request $request)
- {
- $this->validate($request, [
- 'q' => 'required|string|min:3|max:120',
- 'src' => 'required|string|in:metro',
- 'v' => 'required|integer|in:2',
- 'scope' => 'required|in:all,hashtag,profile,remote,webfinger'
- ]);
- $scope = $request->input('scope') ?? 'all';
- $this->term = e(urldecode($request->input('q')));
- $this->hash = hash('sha256', $this->term);
- switch ($scope) {
- case 'all':
- $this->getHashtags();
- $this->getPosts();
- $this->getProfiles();
- // $this->getPlaces();
- break;
- case 'hashtag':
- $this->getHashtags();
- break;
- case 'profile':
- $this->getProfiles();
- break;
- case 'webfinger':
- $this->webfingerSearch();
- break;
- case 'remote':
- $this->remoteLookupSearch();
- break;
- case 'place':
- $this->getPlaces();
- break;
- default:
- break;
- }
- return response()->json($this->tokens, 200, [], JSON_PRETTY_PRINT);
- }
- protected function getPosts()
- {
- $tag = $this->term;
- $hash = hash('sha256', $tag);
- if( Helpers::validateUrl($tag) != false &&
- Helpers::validateLocalUrl($tag) != true &&
- config_cache('federation.activitypub.enabled') == true &&
- config('federation.activitypub.remoteFollow') == true
- ) {
- $remote = Helpers::fetchFromUrl($tag);
- if( isset($remote['type']) &&
- $remote['type'] == 'Note') {
- $item = Helpers::statusFetch($tag);
- $this->tokens['posts'] = [[
- 'count' => 0,
- 'url' => $item->url(),
- 'type' => 'status',
- 'value' => "by {$item->profile->username} <span class='float-right'>{$item->created_at->diffForHumans(null, true, true)}</span>",
- 'tokens' => [$item->caption],
- 'name' => $item->caption,
- 'thumb' => $item->thumb(),
- ]];
- }
- } else {
- $posts = Status::select('id', 'profile_id', 'caption', 'created_at')
- ->whereHas('media')
- ->whereNull('in_reply_to_id')
- ->whereNull('reblog_of_id')
- ->whereProfileId(Auth::user()->profile_id)
- ->where('caption', 'like', '%'.$tag.'%')
- ->latest()
- ->limit(10)
- ->get();
- if($posts->count() > 0) {
- $posts = $posts->map(function($item, $key) {
- return [
- 'count' => 0,
- 'url' => $item->url(),
- 'type' => 'status',
- 'value' => "by {$item->profile->username} <span class='float-right'>{$item->created_at->diffForHumans(null, true, true)}</span>",
- 'tokens' => [$item->caption],
- 'name' => $item->caption,
- 'thumb' => $item->thumb(),
- 'filter' => $item->firstMedia()->filter_class
- ];
- });
- $this->tokens['posts'] = $posts;
- }
- }
- }
- protected function getHashtags()
- {
- $tag = $this->term;
- $key = $this->cacheKey . 'hashtags:' . $this->hash;
- $ttl = now()->addMinutes(1);
- $tokens = Cache::remember($key, $ttl, function() use($tag) {
- $htag = Str::startsWith($tag, '#') == true ? mb_substr($tag, 1) : $tag;
- $hashtags = Hashtag::select('id', 'name', 'slug')
- ->where('slug', 'like', '%'.$htag.'%')
- ->whereHas('posts')
- ->limit(20)
- ->get();
- if($hashtags->count() > 0) {
- $tags = $hashtags->map(function ($item, $key) {
- return [
- 'count' => $item->posts()->count(),
- 'url' => $item->url(),
- 'type' => 'hashtag',
- 'value' => $item->name,
- 'tokens' => '',
- 'name' => null,
- ];
- });
- return $tags;
- }
- });
- $this->tokens['hashtags'] = $tokens;
- }
- protected function getPlaces()
- {
- $tag = $this->term;
- // $key = $this->cacheKey . 'places:' . $this->hash;
- // $ttl = now()->addHours(12);
- // $tokens = Cache::remember($key, $ttl, function() use($tag) {
- $htag = Str::contains($tag, ',') == true ? explode(',', $tag) : [$tag];
- $hashtags = Place::select('id', 'name', 'slug', 'country')
- ->where('name', 'like', '%'.$htag[0].'%')
- ->paginate(20);
- $tags = [];
- if($hashtags->count() > 0) {
- $tags = $hashtags->map(function ($item, $key) {
- return [
- 'count' => null,
- 'url' => $item->url(),
- 'type' => 'place',
- 'value' => $item->name . ', ' . $item->country,
- 'tokens' => '',
- 'name' => null,
- 'city' => $item->name,
- 'country' => $item->country
- ];
- });
- // return $tags;
- }
- // });
- $this->tokens['places'] = $tags;
- $this->tokens['placesPagination'] = [
- 'total' => $hashtags->total(),
- 'current_page' => $hashtags->currentPage(),
- 'last_page' => $hashtags->lastPage()
- ];
- }
- protected function getProfiles()
- {
- $tag = $this->term;
- $remoteKey = $this->cacheKey . 'profiles:remote:' . $this->hash;
- $key = $this->cacheKey . 'profiles:' . $this->hash;
- $remoteTtl = now()->addMinutes(15);
- $ttl = now()->addHours(2);
- if( Helpers::validateUrl($tag) != false &&
- Helpers::validateLocalUrl($tag) != true &&
- config_cache('federation.activitypub.enabled') == true &&
- config('federation.activitypub.remoteFollow') == true
- ) {
- $remote = Helpers::fetchFromUrl($tag);
- if( isset($remote['type']) &&
- $remote['type'] == 'Person'
- ) {
- $this->tokens['profiles'] = Cache::remember($remoteKey, $remoteTtl, function() use($tag) {
- $item = Helpers::profileFirstOrNew($tag);
- $tokens = [[
- 'count' => 1,
- 'url' => $item->url(),
- 'type' => 'profile',
- 'value' => $item->username,
- 'tokens' => [$item->username],
- 'name' => $item->name,
- 'entity' => [
- 'id' => (string) $item->id,
- 'following' => $item->followedBy(Auth::user()->profile),
- 'follow_request' => $item->hasFollowRequestById(Auth::user()->profile_id),
- 'thumb' => $item->avatarUrl(),
- 'local' => (bool) !$item->domain,
- 'post_count' => $item->statuses()->count()
- ]
- ]];
- return $tokens;
- });
- }
- }
- else {
- $this->tokens['profiles'] = Cache::remember($key, $ttl, function() use($tag) {
- if(Str::startsWith($tag, '@')) {
- $tag = substr($tag, 1);
- }
- $users = Profile::select('status', 'domain', 'username', 'name', 'id')
- ->whereNull('status')
- ->where('username', 'like', '%'.$tag.'%')
- ->limit(20)
- ->orderBy('domain')
- ->get();
- if($users->count() > 0) {
- return $users->map(function ($item, $key) {
- return [
- 'count' => 0,
- 'url' => $item->url(),
- 'type' => 'profile',
- 'value' => $item->username,
- 'tokens' => [$item->username],
- 'name' => $item->name,
- 'avatar' => $item->avatarUrl(),
- 'id' => (string) $item->id,
- 'entity' => [
- 'id' => (string) $item->id,
- 'following' => $item->followedBy(Auth::user()->profile),
- 'follow_request' => $item->hasFollowRequestById(Auth::user()->profile_id),
- 'thumb' => $item->avatarUrl(),
- 'local' => (bool) !$item->domain,
- 'post_count' => $item->statuses()->count()
- ]
- ];
- });
- }
- });
- }
- }
- public function results(Request $request)
- {
- $this->validate($request, [
- 'q' => 'required|string|min:1',
- ]);
- return view('search.results');
- }
- protected function webfingerSearch()
- {
- $wfs = WebfingerService::lookup($this->term);
- if(empty($wfs)) {
- return;
- }
- $this->tokens['profiles'] = [
- [
- 'count' => 1,
- 'url' => $wfs['url'],
- 'type' => 'profile',
- 'value' => $wfs['username'],
- 'tokens' => [$wfs['username']],
- 'name' => $wfs['display_name'],
- 'entity' => [
- 'id' => (string) $wfs['id'],
- 'following' => null,
- 'follow_request' => null,
- 'thumb' => $wfs['avatar'],
- 'local' => (bool) $wfs['local']
- ]
- ]
- ];
- return;
- }
- protected function remotePostLookup()
- {
- $tag = $this->term;
- $hash = hash('sha256', $tag);
- $local = Helpers::validateLocalUrl($tag);
- $valid = Helpers::validateUrl($tag);
- if($valid == false || $local == true) {
- return;
- }
- if(Status::whereUri($tag)->whereLocal(false)->exists()) {
- $item = Status::whereUri($tag)->first();
- $media = $item->firstMedia();
- $url = null;
- if($media) {
- $url = $media->remote_url;
- }
- $this->tokens['posts'] = [[
- 'count' => 0,
- 'url' => "/i/web/post/_/$item->profile_id/$item->id",
- 'type' => 'status',
- 'username' => $item->profile->username,
- 'caption' => $item->rendered ?? $item->caption,
- 'thumb' => $url,
- 'timestamp' => $item->created_at->diffForHumans()
- ]];
- }
- $remote = Helpers::fetchFromUrl($tag);
- if(isset($remote['type']) && $remote['type'] == 'Note') {
- $item = Helpers::statusFetch($tag);
- $media = $item->firstMedia();
- $url = null;
- if($media) {
- $url = $media->remote_url;
- }
- $this->tokens['posts'] = [[
- 'count' => 0,
- 'url' => "/i/web/post/_/$item->profile_id/$item->id",
- 'type' => 'status',
- 'username' => $item->profile->username,
- 'caption' => $item->rendered ?? $item->caption,
- 'thumb' => $url,
- 'timestamp' => $item->created_at->diffForHumans()
- ]];
- }
- }
- protected function remoteLookupSearch()
- {
- if(!Helpers::validateUrl($this->term)) {
- return;
- }
- $this->getProfiles();
- $this->remotePostLookup();
- }
- }
|