mirror of
https://github.com/zeropingheroes/lancache-autofill
synced 2024-11-10 02:14:12 +00:00
Revert "Remove steam:queue-popular-apps (#31)"
This reverts commit c81d1fdfa2
.
This commit is contained in:
parent
b084c3b599
commit
8ff762cb1a
2 changed files with 106 additions and 1 deletions
104
src/Commands/Steam/QueuePopularApps.php
Normal file
104
src/Commands/Steam/QueuePopularApps.php
Normal file
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
|
||||
namespace Zeropingheroes\LancacheAutofill\Commands\Steam;
|
||||
|
||||
use GuzzleHttp\Client;
|
||||
use Illuminate\Console\Command;
|
||||
use Zeropingheroes\LancacheAutofill\Models\SteamQueueItem;
|
||||
|
||||
class QueuePopularApps extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'steam:queue-popular-apps
|
||||
{top=100 : Limit how many apps are queued}
|
||||
{--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}
|
||||
{--free : Only queue free apps}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Queue popular Steam apps for downloading';
|
||||
|
||||
/**
|
||||
* The URL to get the list of popular Steam apps from.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
const POPULAR_STEAM_APP_LIST_URL = 'http://steamspy.com/api.php?request=top100in2weeks';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$top = $this->argument('top');
|
||||
$free = $this->option('free');
|
||||
|
||||
// Add platforms depending on options
|
||||
if ($this->option('windows')) {
|
||||
$platforms[] = 'windows';
|
||||
}
|
||||
|
||||
if ($this->option('osx')) {
|
||||
$platforms[] = 'osx';
|
||||
}
|
||||
|
||||
if ($this->option('linux')) {
|
||||
$platforms[] = 'linux';
|
||||
}
|
||||
|
||||
$client = new Client();
|
||||
$result = $client->request('GET', self::POPULAR_STEAM_APP_LIST_URL);
|
||||
|
||||
if ($result->getStatusCode() != 200) {
|
||||
$this->error('Web API unreachable');
|
||||
die();
|
||||
}
|
||||
|
||||
$apps = json_decode($result->getBody(), true);
|
||||
|
||||
$i = 0;
|
||||
|
||||
foreach ($apps as $appId => $app) {
|
||||
if ($free && $app['price'] != 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Queue each platform separately
|
||||
foreach ($platforms as $platform) {
|
||||
|
||||
$alreadyQueued = SteamQueueItem::where('app_id', $appId)
|
||||
->where('platform', $platform)
|
||||
->first();
|
||||
|
||||
if ($alreadyQueued) {
|
||||
$this->error('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 = $appId;
|
||||
$steamQueueItem->platform = $platform;
|
||||
$steamQueueItem->status = 'queued';
|
||||
|
||||
if ($steamQueueItem->save()) {
|
||||
$this->info('Added Steam app "'.$app['name'].'" on platform "'.ucfirst($platform).'" to download queue');
|
||||
}
|
||||
}
|
||||
if (++$i == $top) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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, QueueUsersRecentApps, Requeue, SearchApps, ShowQueue, StartDownloading, UpdateAppList
|
||||
AuthoriseAccount, Dequeue, Initialise, QueueApp, QueuePopularApps, QueueUsersRecentApps, Requeue, SearchApps, ShowQueue, StartDownloading, UpdateAppList
|
||||
};
|
||||
use Zeropingheroes\LancacheAutofill\Commands\App\{
|
||||
InitialiseDatabase, InitialiseDownloadsDirectory
|
||||
|
@ -26,6 +26,7 @@ class Kernel extends ConsoleKernel
|
|||
UpdateAppList::class,
|
||||
SearchApps::class,
|
||||
QueueApp::class,
|
||||
QueuePopularApps::class,
|
||||
QueueUsersRecentApps::class,
|
||||
ShowQueue::class,
|
||||
StartDownloading::class,
|
||||
|
|
Loading…
Reference in a new issue