348 linhas
12 KiB
Python
348 linhas
12 KiB
Python
# -*- Mode: python; coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
#
|
|
# Copyright (C) 2012 - fossfreedom
|
|
# Copyright (C) 2012 - Agustin Carrasco
|
|
#
|
|
# 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, 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 St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
import copy
|
|
import gettext
|
|
import locale
|
|
import webbrowser
|
|
from collections import OrderedDict
|
|
|
|
from gi.repository import Gio
|
|
from gi.repository import GObject
|
|
from gi.repository import Gtk
|
|
from gi.repository import PeasGtk
|
|
from gi.repository import RB
|
|
from gi.repository import Peas
|
|
|
|
import rb
|
|
|
|
|
|
class CoverLocale:
|
|
"""
|
|
This class manages the locale
|
|
"""
|
|
# storage for the instance reference
|
|
__instance = None
|
|
|
|
class __impl:
|
|
""" Implementation of the singleton interface """
|
|
# below public variables and methods that can be called for CoverLocale
|
|
def __init__(self):
|
|
"""
|
|
Initializes the singleton interface, assigning all the constants
|
|
used to access the plugin's settings.
|
|
"""
|
|
self.Locale = self._enum(
|
|
RB='rhythmbox',
|
|
LOCALE_DOMAIN='coverart_search_providers')
|
|
|
|
def switch_locale(self, locale_type):
|
|
"""
|
|
Change the locale
|
|
"""
|
|
locale.setlocale(locale.LC_ALL, '')
|
|
locale.bindtextdomain(locale_type, RB.locale_dir())
|
|
locale.textdomain(locale_type)
|
|
gettext.bindtextdomain(locale_type, RB.locale_dir())
|
|
gettext.textdomain(locale_type)
|
|
gettext.install(locale_type)
|
|
|
|
def get_locale(self):
|
|
"""
|
|
return the string representation of the users locale
|
|
for example
|
|
en_US
|
|
"""
|
|
return locale.getdefaultlocale()[0]
|
|
|
|
def _enum(self, **enums):
|
|
"""
|
|
Create an enumn.
|
|
"""
|
|
return type('Enum', (), enums)
|
|
|
|
def __init__(self):
|
|
""" Create singleton instance """
|
|
# Check whether we already have an instance
|
|
if CoverLocale.__instance is None:
|
|
# Create and remember instance
|
|
CoverLocale.__instance = CoverLocale.__impl()
|
|
|
|
# Store instance reference as the only member in the handle
|
|
self.__dict__['_CoverLocale__instance'] = CoverLocale.__instance
|
|
|
|
def __getattr__(self, attr):
|
|
""" Delegate access to implementation """
|
|
return getattr(self.__instance, attr)
|
|
|
|
def __setattr__(self, attr, value):
|
|
""" Delegate access to implementation """
|
|
return setattr(self.__instance, attr, value)
|
|
|
|
|
|
class GSetting:
|
|
"""
|
|
This class manages the differentes settings that the plugins haves to
|
|
access to read or write.
|
|
"""
|
|
# storage for the instance reference
|
|
__instance = None
|
|
|
|
class __impl:
|
|
""" Implementation of the singleton interface """
|
|
# below public variables and methods that can be called for GSetting
|
|
def __init__(self):
|
|
"""
|
|
Initializes the singleton interface, asigning all the constants
|
|
used to access the plugin's settings.
|
|
"""
|
|
self.Path = self._enum(
|
|
PLUGIN='org.gnome.rhythmbox.plugins.coverart_search_providers')
|
|
|
|
self.PluginKey = self._enum(
|
|
PROVIDERS='providers')
|
|
|
|
self.setting = {}
|
|
|
|
def get_setting(self, path):
|
|
"""
|
|
Return an instance of Gio.Settings pointing at the selected path.
|
|
"""
|
|
try:
|
|
setting = self.setting[path]
|
|
except:
|
|
self.setting[path] = Gio.Settings.new(path)
|
|
setting = self.setting[path]
|
|
|
|
return setting
|
|
|
|
def get_value(self, path, key):
|
|
"""
|
|
Return the value saved on key from the settings path.
|
|
"""
|
|
return self.get_setting(path)[key]
|
|
|
|
def set_value(self, path, key, value):
|
|
"""
|
|
Set the passed value to key in the settings path.
|
|
"""
|
|
self.get_setting(path)[key] = value
|
|
|
|
def _enum(self, **enums):
|
|
"""
|
|
Create an enumn.
|
|
"""
|
|
return type('Enum', (), enums)
|
|
|
|
def __init__(self):
|
|
""" Create singleton instance """
|
|
# Check whether we already have an instance
|
|
if GSetting.__instance is None:
|
|
# Create and remember instance
|
|
GSetting.__instance = GSetting.__impl()
|
|
|
|
# Store instance reference as the only member in the handle
|
|
self.__dict__['_GSetting__instance'] = GSetting.__instance
|
|
|
|
def __getattr__(self, attr):
|
|
""" Delegate access to implementation """
|
|
return getattr(self.__instance, attr)
|
|
|
|
def __setattr__(self, attr, value):
|
|
""" Delegate access to implementation """
|
|
return setattr(self.__instance, attr, value)
|
|
|
|
|
|
class SearchPreferences(GObject.Object, PeasGtk.Configurable):
|
|
"""
|
|
Preferences for the CoverArt Browser Plugins. It holds the settings for
|
|
the plugin and also is the responsible of creating the preferences dialog.
|
|
"""
|
|
__gtype_name__ = 'CoverArtSearchProvidersPreferences'
|
|
object = GObject.property(type=GObject.Object)
|
|
|
|
EMBEDDED_SEARCH = 'embedded-search'
|
|
DISCOGS_SEARCH = 'discogs-search'
|
|
COVERARTARCHIVE_SEARCH = 'coverartarchive-search'
|
|
LOCAL_SEARCH = 'local-search'
|
|
CACHE_SEARCH = 'cache-search'
|
|
LASTFM_SEARCH = 'lastfm-search'
|
|
SPOTIFY_SEARCH = 'spotify-search'
|
|
MUSICBRAINZ_SEARCH = 'musicbrainz-search'
|
|
|
|
def __init__(self):
|
|
"""
|
|
Initialises the preferences, getting an instance of the settings saved
|
|
by Gio.
|
|
"""
|
|
GObject.Object.__init__(self)
|
|
self._first_run = True
|
|
|
|
def do_create_configure_widget(self):
|
|
"""
|
|
Creates the plugin's preferences dialog
|
|
"""
|
|
return self._create_display_contents(self)
|
|
|
|
def display_preferences_dialog(self, plugin):
|
|
if self._first_run:
|
|
self._first_run = False
|
|
|
|
cl = CoverLocale()
|
|
cl.switch_locale(cl.Locale.LOCALE_DOMAIN)
|
|
|
|
self._dialog = Gtk.Dialog(modal=True, destroy_with_parent=True)
|
|
self._dialog.add_button(Gtk.STOCK_OK, Gtk.ResponseType.OK)
|
|
self._dialog.set_title(_('CoverArt Browser Search Providers'))
|
|
|
|
content_area = self._dialog.get_content_area()
|
|
content_area.pack_start(self._create_display_contents(plugin), True, True, 0)
|
|
|
|
helpbutton = self._dialog.add_button(Gtk.STOCK_HELP, Gtk.ResponseType.HELP)
|
|
helpbutton.connect('clicked', self._display_help)
|
|
|
|
self._dialog.show_all()
|
|
|
|
while True:
|
|
response = self._dialog.run()
|
|
|
|
if response != Gtk.ResponseType.HELP:
|
|
break
|
|
|
|
self._dialog.hide()
|
|
|
|
def _display_help(self, *args):
|
|
peas = Peas.Engine.get_default()
|
|
uri = peas.get_plugin_info('coverart_search_providers').get_help_uri()
|
|
|
|
webbrowser.open(uri)
|
|
|
|
def _create_display_contents(self, plugin):
|
|
cl = CoverLocale()
|
|
cl.switch_locale(cl.Locale.LOCALE_DOMAIN)
|
|
self.gs = GSetting()
|
|
self.settings = self.gs.get_setting(self.gs.Path.PLUGIN)
|
|
|
|
# . TRANSLATORS: Do not translate this string.
|
|
translators = _("translator-credits")
|
|
|
|
self.provider = OrderedDict()
|
|
|
|
self.provider[self.EMBEDDED_SEARCH] = _("Embedded coverart")
|
|
self.provider[self.LOCAL_SEARCH] = _("Local folder coverart")
|
|
self.provider[self.CACHE_SEARCH] = _("Cached coverart")
|
|
self.provider[self.LASTFM_SEARCH] = _("LastFM Internet Provider")
|
|
self.provider[self.SPOTIFY_SEARCH] = _("Spotify Internet Provider")
|
|
self.provider[self.COVERARTARCHIVE_SEARCH] = _("Coverart Archive Internet Provider")
|
|
self.provider[self.MUSICBRAINZ_SEARCH] = _("MusicBrainz Internet Provider")
|
|
keep_alive_translation = _("Discogs Internet Provider")
|
|
|
|
current_providers = copy.deepcopy(self.provider)
|
|
|
|
current = self.settings[self.gs.PluginKey.PROVIDERS]
|
|
print (current)
|
|
current_list = current.split(',')
|
|
print (current_list)
|
|
|
|
# create the ui
|
|
builder = Gtk.Builder()
|
|
builder.set_translation_domain(cl.Locale.LOCALE_DOMAIN)
|
|
builder.add_from_file(rb.find_plugin_file(plugin, "ui/coverart_search_providers_prefs.ui"))
|
|
self.launchpad_button = builder.get_object('show_launchpad')
|
|
self.launchpad_label = builder.get_object('launchpad_label')
|
|
builder.connect_signals(self)
|
|
|
|
if translators != "translator-credits":
|
|
self.launchpad_label.set_text(translators)
|
|
else:
|
|
self.launchpad_button.set_visible(False)
|
|
|
|
self.provider_liststore = builder.get_object('provider_liststore')
|
|
self.search_liststore = builder.get_object('search_liststore')
|
|
self.provider_list = builder.get_object('provider_list')
|
|
self.search_list = builder.get_object('search_list')
|
|
|
|
for key in current_list:
|
|
if key in current_providers:
|
|
del current_providers[key]
|
|
self.search_liststore.append([self.provider[key], key])
|
|
|
|
for key, value in list(current_providers.items()):
|
|
self.provider_liststore.append([value, key])
|
|
|
|
#if len(self.provider_liststore) == 0:
|
|
# self.provider_liststore.append([self.provider[self.EMBEDDED_SEARCH], self.EMBEDDED_SEARCH])
|
|
|
|
# return the dialog
|
|
return builder.get_object('maingrid')
|
|
|
|
def back_clicked(self, *args):
|
|
|
|
if len(self.search_liststore) == 1:
|
|
return # keep at least one search provider
|
|
|
|
model, iterval = self.search_list.get_selection().get_selected()
|
|
|
|
if iterval:
|
|
key = self.search_liststore[iterval][1]
|
|
self.provider_liststore.append([self.provider[key], key])
|
|
self.search_liststore.remove(iterval)
|
|
|
|
self._store_search_providers()
|
|
|
|
def forward_clicked(self, *args):
|
|
model, iterval = self.provider_list.get_selection().get_selected()
|
|
|
|
if iterval:
|
|
key = self.provider_liststore[iterval][1]
|
|
self.search_liststore.append([self.provider[key], key])
|
|
self.provider_liststore.remove(iterval)
|
|
|
|
self._store_search_providers()
|
|
|
|
def _store_search_providers(self):
|
|
item = self.search_liststore.get_iter_first()
|
|
current_providers = []
|
|
|
|
while (item is not None):
|
|
current_providers.append(self.search_liststore.get_value(item, 1))
|
|
item = self.search_liststore.iter_next(item)
|
|
|
|
self.settings[self.gs.PluginKey.PROVIDERS] = ','.join(current_providers)
|
|
|
|
def on_up_button_clicked(self, *args):
|
|
selection = self.search_list.get_selection()
|
|
sel = selection.get_selected()
|
|
if not sel[1] is None:
|
|
previous = self.search_liststore.iter_previous(sel[1])
|
|
if previous:
|
|
self.search_liststore.swap(sel[1], previous)
|
|
self._store_search_providers()
|
|
|
|
def on_down_button_clicked(self, *args):
|
|
selection = self.search_list.get_selection()
|
|
sel = selection.get_selected()
|
|
if not sel[1] is None:
|
|
next = self.search_liststore.iter_next(sel[1])
|
|
if next:
|
|
self.search_liststore.swap(sel[1], next)
|
|
self._store_search_providers()
|
|
|
|
def on_show_launchpad_toggled(self, button):
|
|
self.launchpad_label.set_visible(button.get_active())
|