mirror of
https://github.com/fergalmoran/picard.git
synced 2026-04-05 03:55:14 +00:00
150 lines
5.5 KiB
Python
150 lines
5.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Picard, the next-generation MusicBrainz tagger
|
|
# Copyright (C) 2013 Michael Wiencek
|
|
#
|
|
# 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 2
|
|
# 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, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
from functools import partial
|
|
from PyQt5 import QtCore
|
|
from picard import config, log
|
|
|
|
|
|
user_collections = {}
|
|
|
|
|
|
class Collection(QtCore.QObject):
|
|
|
|
def __init__(self, id, name, size):
|
|
self.id = id
|
|
self.name = name
|
|
self.pending = set()
|
|
self.size = int(size)
|
|
self.releases = set()
|
|
|
|
def __repr__(self):
|
|
return '<Collection %s (%s)>' % (self.name, self.id)
|
|
|
|
def add_releases(self, ids, callback):
|
|
ids = ids - self.pending
|
|
if ids:
|
|
self.pending.update(ids)
|
|
self.tagger.xmlws.put_to_collection(self.id, list(ids),
|
|
partial(self._add_finished, ids, callback))
|
|
|
|
def remove_releases(self, ids, callback):
|
|
ids = ids - self.pending
|
|
if ids:
|
|
self.pending.update(ids)
|
|
self.tagger.xmlws.delete_from_collection(self.id, list(ids),
|
|
partial(self._remove_finished, ids, callback))
|
|
|
|
def _add_finished(self, ids, callback, document, reply, error):
|
|
self.pending.difference_update(ids)
|
|
if not error:
|
|
count = len(ids)
|
|
self.releases.update(ids)
|
|
self.size += count
|
|
callback()
|
|
mparms = {
|
|
'count': count,
|
|
'name': self.name
|
|
}
|
|
log.debug('Added %(count)i releases to collection "%(name)s"' % mparms)
|
|
self.tagger.window.set_statusbar_message(
|
|
ngettext('Added %(count)i release to collection "%(name)s"',
|
|
'Added %(count)i releases to collection "%(name)s"',
|
|
count),
|
|
mparms,
|
|
translate=None,
|
|
echo=None
|
|
)
|
|
|
|
def _remove_finished(self, ids, callback, document, reply, error):
|
|
self.pending.difference_update(ids)
|
|
if not error:
|
|
count = len(ids)
|
|
self.releases.difference_update(ids)
|
|
self.size -= count
|
|
callback()
|
|
mparms = {
|
|
'count': count,
|
|
'name': self.name
|
|
}
|
|
log.debug('Removed %(count)i releases from collection "%(name)s"' %
|
|
mparms)
|
|
self.tagger.window.set_statusbar_message(
|
|
ngettext('Removed %(count)i release from collection "%(name)s"',
|
|
'Removed %(count)i releases from collection "%(name)s"',
|
|
count),
|
|
mparms,
|
|
translate=None,
|
|
echo=None
|
|
)
|
|
|
|
|
|
def load_user_collections(callback=None):
|
|
tagger = QtCore.QObject.tagger
|
|
|
|
def request_finished(document, reply, error):
|
|
if error:
|
|
tagger.window.set_statusbar_message(
|
|
N_("Error loading collections: %(error)s"),
|
|
{'error': reply.errorString()},
|
|
echo=log.error
|
|
)
|
|
return
|
|
collection_list = document.metadata[0].collection_list[0]
|
|
if "collection" in collection_list.children:
|
|
new_collections = set()
|
|
|
|
for node in collection_list.collection:
|
|
if node.attribs.get(u"entity_type") != u"release":
|
|
continue
|
|
new_collections.add(node.id)
|
|
collection = user_collections.get(node.id)
|
|
if collection is None:
|
|
user_collections[node.id] = Collection(node.id, node.name[0].text, node.release_list[0].count)
|
|
else:
|
|
collection.name = node.name[0].text
|
|
collection.size = int(node.release_list[0].count)
|
|
|
|
for id in set(user_collections.keys()) - new_collections:
|
|
del user_collections[id]
|
|
|
|
if callback:
|
|
callback()
|
|
|
|
if tagger.xmlws.oauth_manager.is_authorized():
|
|
tagger.xmlws.get_collection_list(partial(request_finished))
|
|
else:
|
|
user_collections.clear()
|
|
|
|
|
|
def add_release_to_user_collections(release_node):
|
|
"""Add album to collections"""
|
|
# Check for empy collection list
|
|
if ("collection_list" in release_node.children and
|
|
"collection" in release_node.collection_list[0].children):
|
|
username = config.persist["oauth_username"].lower()
|
|
for node in release_node.collection_list[0].collection:
|
|
if node.editor[0].text.lower() == username:
|
|
if node.id not in user_collections:
|
|
user_collections[node.id] = \
|
|
Collection(node.id, node.name[0].text, node.release_list[0].count)
|
|
user_collections[node.id].releases.add(release_node.id)
|
|
log.debug("Adding release %r to %r" %
|
|
(release_node.id, user_collections[node.id]))
|