forked from blallo/rss-bridge
core: remove useless HttpCachingBridgeAbstract::download_remote()
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
fe58d23c17
commit
226484ba22
1 changed files with 0 additions and 17 deletions
|
@ -223,23 +223,6 @@ abstract class HttpCachingBridgeAbstract extends BridgeAbstract {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function download_remote($url , $save_path) {
|
|
||||||
$f = fopen( $save_path , 'w+');
|
|
||||||
if($f) {
|
|
||||||
$handle = fopen($url , "rb");
|
|
||||||
if($handle) {
|
|
||||||
while (!feof($handle)) {
|
|
||||||
$contents = fread($handle, 8192);
|
|
||||||
if($contents) {
|
|
||||||
fwrite($f , $contents);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fclose($handle);
|
|
||||||
}
|
|
||||||
fclose($f);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function remove_from_cache($url) {
|
public function remove_from_cache($url) {
|
||||||
$simplified_url = str_replace(["http://", "https://", "?", "&", "="], ["", "", "/", "/", "/"], $url);
|
$simplified_url = str_replace(["http://", "https://", "?", "&", "="], ["", "", "/", "/", "/"], $url);
|
||||||
// TODO build this from the variable given to Cache
|
// TODO build this from the variable given to Cache
|
||||||
|
|
Loading…
Reference in a new issue