You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.7 KiB
73 lines
2.7 KiB
from __future__ import with_statement
|
|
from couchpotato.core.downloaders.base import Downloader
|
|
from couchpotato.core.logger import CPLog
|
|
from couchpotato.environment import Env
|
|
import os
|
|
import traceback
|
|
|
|
log = CPLog(__name__)
|
|
|
|
|
|
class Blackhole(Downloader):
|
|
|
|
type = ['nzb', 'torrent', 'torrent_magnet']
|
|
|
|
def download(self, data = {}, movie = {}, filedata = None):
|
|
|
|
directory = self.conf('directory')
|
|
if not directory or not os.path.isdir(directory):
|
|
log.error('No directory set for blackhole %s download.', data.get('type'))
|
|
else:
|
|
try:
|
|
if not filedata or len(filedata) < 50:
|
|
try:
|
|
if data.get('type') == 'torrent_magnet':
|
|
filedata = self.magnetToTorrent(data.get('url'))
|
|
data['type'] = 'torrent'
|
|
except:
|
|
log.error('Failed download torrent via magnet url: %s', traceback.format_exc())
|
|
|
|
if not filedata or len(filedata) < 50:
|
|
log.error('No nzb/torrent available: %s', data.get('url'))
|
|
return False
|
|
|
|
fullPath = os.path.join(directory, self.createFileName(data, filedata, movie))
|
|
|
|
try:
|
|
if not os.path.isfile(fullPath):
|
|
log.info('Downloading %s to %s.', (data.get('type'), fullPath))
|
|
with open(fullPath, 'wb') as f:
|
|
f.write(filedata)
|
|
os.chmod(fullPath, Env.getPermission('file'))
|
|
return True
|
|
else:
|
|
log.info('File %s already exists.', fullPath)
|
|
return True
|
|
|
|
except:
|
|
log.error('Failed to download to blackhole %s', traceback.format_exc())
|
|
pass
|
|
|
|
except:
|
|
log.info('Failed to download file %s: %s', (data.get('name'), traceback.format_exc()))
|
|
return False
|
|
|
|
return False
|
|
|
|
def getEnabledDownloadType(self):
|
|
if self.conf('use_for') == 'both':
|
|
return super(Blackhole, self).getEnabledDownloadType()
|
|
elif self.conf('use_for') == 'torrent':
|
|
return ['torrent', 'torrent_magnet']
|
|
else:
|
|
return ['nzb']
|
|
|
|
def isEnabled(self, manual, data = {}):
|
|
for_type = ['both']
|
|
if data and 'torrent' in data.get('type'):
|
|
for_type.append('torrent')
|
|
elif data:
|
|
for_type.append(data.get('type'))
|
|
|
|
return super(Blackhole, self).isEnabled(manual, data) and \
|
|
((self.conf('use_for') in for_type))
|
|
|