mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-01-31 08:19:49 -06:00
- adds laravel 11 casts support to phpstan https://github.com/larastan/larastan/blob/2.x/UPGRADE.md#upgrading-to-296-from-295 - fixes multiple bugs found by phpstan - removes dead code in torrent filter trait - ignores three new files in phpstan.neon temp until debugged for timeouts
223 lines
7.9 KiB
PHP
223 lines
7.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use App\Models\TorrentRequest;
|
|
use App\Models\TorrentRequestBounty;
|
|
use App\Models\TorrentRequestClaim;
|
|
use App\Traits\CastLivewireProperties;
|
|
use App\Traits\LivewireSort;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Livewire\Attributes\Computed;
|
|
use Livewire\Attributes\Url;
|
|
use Livewire\Component;
|
|
use Livewire\WithPagination;
|
|
|
|
class TorrentRequestSearch extends Component
|
|
{
|
|
use CastLivewireProperties;
|
|
use LivewireSort;
|
|
use WithPagination;
|
|
|
|
#TODO: Update URL attributes once Livewire 3 fixes upstream bug. See: https://github.com/livewire/livewire/discussions/7746
|
|
|
|
#[Url(history: true)]
|
|
public string $name = '';
|
|
|
|
#[Url(history: true)]
|
|
public string $requestor = '';
|
|
|
|
/**
|
|
* @var array<int>
|
|
*/
|
|
#[Url(history: true)]
|
|
public array $categories = [];
|
|
|
|
/**
|
|
* @var array<int>
|
|
*/
|
|
#[Url(history: true)]
|
|
public array $types = [];
|
|
|
|
/**
|
|
* @var array<int>
|
|
*/
|
|
#[Url(history: true)]
|
|
public array $resolutions = [];
|
|
|
|
/**
|
|
* @var array<int>
|
|
*/
|
|
#[Url(history: true)]
|
|
public array $genres = [];
|
|
|
|
/**
|
|
* @var array<int>
|
|
*/
|
|
#[Url(history: true)]
|
|
public array $primaryLanguages = [];
|
|
|
|
#[Url(history: true)]
|
|
public ?int $tmdbId = null;
|
|
|
|
#[Url(history: true)]
|
|
public string $imdbId = '';
|
|
|
|
#[Url(history: true)]
|
|
public ?int $tvdbId = null;
|
|
|
|
#[Url(history: true)]
|
|
public ?int $malId = null;
|
|
|
|
#[Url(history: true)]
|
|
public bool $unfilled = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $claimed = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $pending = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $filled = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $myRequests = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $myClaims = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $myVoted = false;
|
|
|
|
#[Url(history: true)]
|
|
public bool $myFilled = false;
|
|
|
|
#[Url(history: true)]
|
|
public int $perPage = 25;
|
|
|
|
#[Url(history: true)]
|
|
public string $sortField = 'created_at';
|
|
|
|
#[Url(history: true)]
|
|
public string $sortDirection = 'desc';
|
|
|
|
final public function updating(string $field, mixed &$value): void
|
|
{
|
|
$this->castLivewireProperties($field, $value);
|
|
}
|
|
|
|
#[Computed]
|
|
final public function torrentRequestStat(): ?object
|
|
{
|
|
return DB::table('requests')
|
|
->selectRaw('count(*) as total')
|
|
->selectRaw('count(case when filled_by is not null then 1 end) as filled')
|
|
->selectRaw('count(case when filled_by is null then 1 end) as unfilled')
|
|
->first();
|
|
}
|
|
|
|
#[Computed]
|
|
final public function torrentRequestBountyStat(): ?object
|
|
{
|
|
return DB::table('requests')
|
|
->selectRaw('coalesce(sum(bounty), 0) as total')
|
|
->selectRaw('coalesce(sum(case when filled_by is not null then bounty end), 0) as claimed')
|
|
->selectRaw('coalesce(sum(case when filled_by is null then bounty end), 0) as unclaimed')
|
|
->first();
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator<TorrentRequest>
|
|
*/
|
|
#[Computed]
|
|
final public function torrentRequests(): \Illuminate\Contracts\Pagination\LengthAwarePaginator
|
|
{
|
|
$user = auth()->user();
|
|
$isRegexAllowed = $user->group->is_modo;
|
|
$isRegex = fn ($field) => $isRegexAllowed
|
|
&& \strlen((string) $field) > 2
|
|
&& $field[0] === '/'
|
|
&& $field[-1] === '/'
|
|
&& @preg_match($field, 'Validate regex') !== false;
|
|
|
|
return TorrentRequest::with(['user:id,username,group_id', 'user.group', 'category', 'type', 'resolution'])
|
|
->withCount(['comments'])
|
|
->when($this->name !== '', fn ($query) => $query->ofName($this->name, $isRegex($this->name)))
|
|
->when($this->requestor !== '', fn ($query) => $query->ofUploader($this->requestor))
|
|
->when($this->categories !== [], fn ($query) => $query->ofCategory($this->categories))
|
|
->when($this->types !== [], fn ($query) => $query->ofType($this->types))
|
|
->when($this->resolutions !== [], fn ($query) => $query->ofResolution($this->resolutions))
|
|
->when($this->tmdbId !== null, fn ($query) => $query->ofTmdb($this->tmdbId))
|
|
->when($this->imdbId !== '', fn ($query) => $query->ofImdb((int) (preg_match('/tt0*(?=(\d{7,}))/', $this->imdbId, $matches) ? $matches[1] : $this->imdbId)))
|
|
->when($this->tvdbId !== null, fn ($query) => $query->ofTvdb((int) $this->tvdbId))
|
|
->when($this->malId !== null, fn ($query) => $query->ofMal((int) $this->malId))
|
|
->when($this->genres !== [], fn ($query) => $query->ofGenre($this->genres))
|
|
->when($this->primaryLanguages !== [], fn ($query) => $query->ofPrimaryLanguage($this->primaryLanguages))
|
|
->when($this->unfilled || $this->claimed || $this->pending || $this->filled, function ($query): void {
|
|
$query->where(function ($query): void {
|
|
$query->where(function ($query): void {
|
|
if ($this->unfilled) {
|
|
$query->whereNull('torrent_id')->whereNull('claimed');
|
|
}
|
|
})
|
|
->orWhere(function ($query): void {
|
|
if ($this->claimed) {
|
|
$query->whereNotNull('claimed')->whereNull('torrent_id')->whereNull('approved_by');
|
|
}
|
|
})
|
|
->orWhere(function ($query): void {
|
|
if ($this->pending) {
|
|
$query->whereNotNull('torrent_id')->whereNull('approved_by');
|
|
}
|
|
})
|
|
->orWhere(function ($query): void {
|
|
if ($this->filled) {
|
|
$query->whereNotNull('torrent_id')->whereNotNull('approved_by');
|
|
}
|
|
});
|
|
});
|
|
})
|
|
->when($this->myRequests, function ($query) use ($user): void {
|
|
$query->where('user_id', '=', $user->id);
|
|
})
|
|
->when($this->myClaims, function ($query) use ($user): void {
|
|
$requestClaims = TorrentRequestClaim::where('user_id', '=', $user->id)->pluck('request_id');
|
|
$query->whereIntegerInRaw('id', $requestClaims)->whereNull('torrent_id')->whereNull('approved_by');
|
|
})
|
|
->when($this->myVoted, function ($query) use ($user): void {
|
|
$requestVotes = TorrentRequestBounty::where('user_id', '=', $user->id)->pluck('requests_id');
|
|
$query->whereIntegerInRaw('id', $requestVotes);
|
|
})
|
|
->when($this->myFilled, function ($query) use ($user): void {
|
|
$query->where('filled_by', '=', $user->id);
|
|
})
|
|
->orderBy($this->sortField, $this->sortDirection)
|
|
->paginate($this->perPage);
|
|
}
|
|
|
|
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
|
|
{
|
|
return view('livewire.torrent-request-search', [
|
|
'user' => auth()->user(),
|
|
'torrentRequests' => $this->torrentRequests,
|
|
'torrentRequestStat' => $this->torrentRequestStat,
|
|
'torrentRequestBountyStat' => $this->torrentRequestBountyStat,
|
|
]);
|
|
}
|
|
}
|