Adding command to queue a Steam user's recent apps

This commit is contained in:
ilumos 2017-12-09 01:42:35 +00:00
parent d38e7dff17
commit aed238822c
2 changed files with 82 additions and 2 deletions

View file

@ -0,0 +1,80 @@
<?php
namespace Zeropingheroes\LancacheAutofill\Commands\Steam;
use Illuminate\Console\Command;
use Zeropingheroes\LancacheAutofill\Models\SteamQueueItem;
use Steam;
class QueueUsersRecentApps extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'steam:queue-users-recent-apps
{user : The username or SteamId64 of the user whose apps to queue}
{--windows=true : Queue the Windows version of the apps}
{--osx : Queue the OS X version of the apps}
{--linux : Queue the Linux version of the apps}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Queue a user\'s recently played Steam apps for downloading';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
// Add platforms depending on options
if ($this->option('windows')) {
$platforms[] = 'windows';
}
if ($this->option('osx')) {
$platforms[] = 'osx';
}
if ($this->option('linux')) {
$platforms[] = 'linux';
}
// Find the user
$user = Steam::player( $this->argument('user'));
$apps = $user->GetRecentlyPlayedGames();
foreach ($apps as $app) {
// Queue each platform separately
foreach ($platforms as $platform) {
$alreadyQueued = SteamQueueItem::where('app_id', $app->appId)
->where('platform', $platform)
->first();
if ($alreadyQueued) {
$this->warn('Steam app "'.$app->name.'" on platform "'.ucfirst($platform).'" already in download queue');
continue;
}
// Add the app to the download queue, specifying the platform and account
$steamQueueItem = new SteamQueueItem;
$steamQueueItem->app_id = $app->appId;
$steamQueueItem->platform = $platform;
$steamQueueItem->status = 'queued';
if ($steamQueueItem->save()) {
$this->info('Added Steam app "'.$app->name.'" on platform "'.ucfirst($platform).'" to download queue');
}
}
}
}
}

View file

@ -5,7 +5,7 @@ namespace Zeropingheroes\LancacheAutofill\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Zeropingheroes\LancacheAutofill\Commands\Steam\{
AuthoriseAccount, Dequeue, Initialise, QueueApp, QueuePopularApps, QueueUsersApps, Requeue, SearchApps, ShowQueue, StartDownloading, UpdateAppList
AuthoriseAccount, Dequeue, Initialise, QueueApp, QueuePopularApps, QueueUsersRecentApps, Requeue, SearchApps, ShowQueue, StartDownloading, UpdateAppList
};
use Zeropingheroes\LancacheAutofill\Commands\App\{
InitialiseDatabase, InitialiseDownloadsDirectory
@ -27,7 +27,7 @@ class Kernel extends ConsoleKernel
SearchApps::class,
QueueApp::class,
QueuePopularApps::class,
QueueUsersApps::class,
QueueUsersRecentApps::class,
ShowQueue::class,
StartDownloading::class,
AuthoriseAccount::class,