summaryrefslogtreecommitdiff
path: root/app/Console/Commands/ScrapeFile.php
blob: 564cf0055f28e99704557b99de4c101032fc5806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

namespace App\Console\Commands;

use App\Rugby\Factory\Service;
use App\Rugby\Factory\SixnationsrugbyAdapter;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Storage;

class ScrapeFile extends Command
{
    protected $signature = 'scrape:file { filename }';
    protected $description = 'Scrape a file for data';

    public function handle()
    {
        $filename = $this->argument('filename');

        if (!Storage::disk('local')->exists($filename)) {
            $this->error('Could not load file at: ' . Storage::disk('local')->path($filename));
            return Command::FAILURE;
        }

        $raw_data = Storage::disk('local')->get($filename);
        $tournament_name = 'Six Nations ' . explode('-', explode('.txt', $filename)[0])[1];

        $service = new Service(new SixnationsrugbyAdapter($raw_data, $tournament_name));
        $service->save();

        return Command::SUCCESS;
    }
}