Archived
1
0
Fork 0
This repository has been archived on 2021-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
ifnews/app/Downloader.php

91 lines
2.4 KiB
PHP
Raw Normal View History

2019-09-12 20:03:56 +03:00
<?php
/*
A set of utilities for tracking text-based game releases
Copyright (C) 2017 Alexander Yakovlev
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace App;
2020-01-05 10:39:13 +02:00
use Illuminate\Support\Facades\Cache;
use \GuzzleHttp\Client as GuzzleClient;
2020-04-10 06:35:55 +03:00
use Log;
2020-01-05 10:39:13 +02:00
2019-09-12 20:03:56 +03:00
class Downloader {
2020-01-05 10:39:13 +02:00
/**
* @var GuzzleClient
*/
protected $client;
public $cookies = '';
public function get_text($url, $post = []): string {
if (empty($this->client)) {
$this->client = new GuzzleClient([
'timeout' => 30,
]);
}
if (env('DEBUG') && Cache::has($url)) {
return Cache::get($url);
}
2020-04-10 06:35:55 +03:00
try {
if ($post === []) {
$response = $this->client->request('GET', $url, [
'cookies' => $this->cookies,
]);
} else {
$response = $this->client->request('POST', $url, [
'form_params' => $post,
'cookies' => $this->cookies,
]);
}
} catch (\Exception $e) {
Log::warning($e->getMessage());
return '';
2020-01-05 10:39:13 +02:00
}
$resp = (string) $response->getBody();
Cache::put($url, $resp);
return $resp;
2020-04-05 10:41:54 +03:00
}
2019-09-12 20:03:56 +03:00
2020-04-10 06:35:55 +03:00
public function download($url, $outFile) {
$options = array(
CURLOPT_FILE => fopen($outFile, 'w'),
CURLOPT_TIMEOUT => 28800, // set this to 8 hours so we dont timeout on big files
CURLOPT_URL => $url
);
2019-09-12 20:03:56 +03:00
2020-04-10 06:35:55 +03:00
$ch = curl_init();
curl_setopt_array($ch, $options);
curl_exec($ch);
curl_close($ch);
2020-01-05 10:39:13 +02:00
}
public function setCookies($cookies): void {
$this->cookies = $cookies;
}
public function get_json($url) {
if (empty($this->client)) {
$this->client = new GuzzleClient([
'timeout' => 30,
]);
}
$response = $this->client->request('GET', $url, [
'cookies' => $this->cookies,
]);
$text = (string) $response->getBody();
return json_decode($text);
}
2019-09-12 20:03:56 +03:00
}