Files

92 lines
3.2 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\Console\Commands;
use App\Models\History;
use App\Models\Peer;
use App\Models\Scopes\ApprovedScope;
use App\Models\Torrent;
use Exception;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
use Throwable;
class SyncPeers extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'auto:sync_peers';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Sync torrent seeders/leechers/times completed count.';
/**
* Execute the console command.
*
* @throws Exception|Throwable If there is an error during the execution of the command.
*/
final public function handle(): void
{
DB::transaction(function (): void {
Torrent::withoutGlobalScope(ApprovedScope::class)
->leftJoinSub(
Peer::query()
->select('torrent_id')
->addSelect(DB::raw('SUM(peers.left = 0 AND peers.active = TRUE AND peers.visible = TRUE) AS updated_seeders'))
->addSelect(DB::raw('SUM(peers.left != 0 AND peers.active = TRUE AND peers.visible = TRUE) AS updated_leechers'))
->groupBy('torrent_id'),
'seeders_leechers',
fn ($join) => $join->on('torrents.id', '=', 'seeders_leechers.torrent_id')
)
->where(
fn ($query) => $query
->where('seeders', '!=', DB::raw('COALESCE(updated_seeders, 0)'))
->orWhere('leechers', '!=', DB::raw('COALESCE(updated_leechers, 0)'))
)
->update([
'seeders' => DB::raw('COALESCE(seeders_leechers.updated_seeders, 0)'),
'leechers' => DB::raw('COALESCE(seeders_leechers.updated_leechers, 0)'),
]);
}, 5);
DB::transaction(function (): void {
Torrent::withoutGlobalScope(ApprovedScope::class)
->leftJoinSub(
History::query()
->select('torrent_id')
->addSelect(DB::raw('SUM(completed_at IS NOT NULL) as updated_times_completed'))
->groupBy('torrent_id'),
'all_times_completed',
fn ($join) => $join->on('torrents.id', '=', 'all_times_completed.torrent_id'),
)
->where('times_completed', '!=', DB::raw('COALESCE(updated_times_completed, 0)'))
->update([
'times_completed' => DB::raw('COALESCE(updated_times_completed, 0)'),
]);
}, 5);
$this->info('Torrent seeders/leechers/times completed count synced successfully!');
}
}