mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
47cf05c4ab
- allow gallery-dl proxy settings to overwrite environment proxies - allow specifying different proxies for data extraction and download - add 'downloader.proxy' option - '-o extractor.proxy=–PROXY_URL -o downloader.proxy=null' now has the same effect as youtube-dl's '--geo-verification-proxy'
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014-2022 Mike Fährmann
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
"""Common classes and constants used by downloader modules."""
|
|
|
|
import os
|
|
from .. import config, util
|
|
|
|
|
|
class DownloaderBase():
|
|
"""Base class for downloaders"""
|
|
scheme = ""
|
|
|
|
def __init__(self, job):
|
|
self.out = job.out
|
|
self.session = job.extractor.session
|
|
self.part = self.config("part", True)
|
|
self.partdir = self.config("part-directory")
|
|
self.log = job.get_logger("downloader." + self.scheme)
|
|
|
|
if self.partdir:
|
|
self.partdir = util.expand_path(self.partdir)
|
|
os.makedirs(self.partdir, exist_ok=True)
|
|
|
|
proxies = self.config("proxy", util.SENTINEL)
|
|
if proxies is util.SENTINEL:
|
|
self.proxies = job.extractor._proxies
|
|
else:
|
|
self.proxies = util.build_proxy_map(proxies, self.log)
|
|
|
|
def config(self, key, default=None):
|
|
"""Interpolate downloader config value for 'key'"""
|
|
return config.interpolate(("downloader", self.scheme), key, default)
|
|
|
|
def download(self, url, pathfmt):
|
|
"""Write data from 'url' into the file specified by 'pathfmt'"""
|