summaryrefslogtreecommitdiff
path: root/nephilim/metadata_fetcher.py
blob: c9d078b9202c34d78a1509febca6c127f33ba841 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
#    Copyright (C) 2010 Anton Khirnov <anton@khirnov.net>
#
#    Nephilim 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.
#
#    Nephilim 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 Nephilim.  If not, see <http://www.gnu.org/licenses/>.
#

from PyQt5 import QtCore, QtNetwork
from PyQt5.QtCore import pyqtSignal as Signal

from .song import Song

class MetadataFetcher(QtCore.QObject):
    """
    A basic class for metadata fetchers. Provides a fetch(song) function,
    emits a finished(song, metadata) signal when done.
    """
    #public, read-only
    logger = None
    name   = ''

    #private
    nam  = None  # NetworkAccessManager
    rep = None   # current NetworkReply.
    song = None  # current song

    # SIGNALS
    finished = Signal([Song, object])

    #### private ####
    def __init__(self, plugin):
        QtCore.QObject.__init__(self, plugin)

        self.nam = QtNetwork.QNetworkAccessManager()
        self.logger = plugin.logger

    def fetch2(self, song, url):
        """A private convenience function to initiate fetch process."""
        # abort any existing connections
        self.abort()
        self.song = song

        self.logger.info('Searching %s: %s.'%(self. name, url.toString()))
        self.rep = self.nam.get(QtNetwork.QNetworkRequest(url))
        self.rep.error.connect(self.handle_error)

    def finish(self, metadata = None):
        """A private convenience function to clean up and emit finished().
           Feel free to reimplement/not use it."""
        self.rep = None
        self.finished.emit(self.song, metadata)
        self.song = None

    def handle_error(self):
        """Print the error and abort."""
        self.logger.error(self.rep.errorString())
        self.abort()
        self.finish()

    #### public ####
    def fetch(self, song):
        """Reimplement this in subclasses."""
        pass

    def abort(self):
        """Abort all downloads currently in progress."""
        if self.rep:
            self.rep.blockSignals(True)
            self.rep.abort()
            self.rep = None