2011-09-20 22:40:27 +00:00
|
|
|
# Created On: 2011/09/20
|
2013-04-28 14:35:51 +00:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2011-09-20 22:40:27 +00:00
|
|
|
#
|
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2013-07-14 21:43:58 +00:00
|
|
|
from core.app import DupeGuru as DupeGuruBase
|
2011-09-21 14:26:58 +00:00
|
|
|
from . import prioritize
|
2011-09-21 14:35:34 +00:00
|
|
|
from . import __appname__
|
2011-09-21 18:04:41 +00:00
|
|
|
from . import scanner, fs
|
2011-11-27 17:47:00 +00:00
|
|
|
from .result_table import ResultTable
|
2011-09-20 22:40:27 +00:00
|
|
|
|
|
|
|
class DupeGuru(DupeGuruBase):
|
2011-09-21 14:35:34 +00:00
|
|
|
NAME = __appname__
|
2011-09-21 14:26:58 +00:00
|
|
|
METADATA_TO_READ = ['size', 'mtime', 'duration', 'bitrate', 'samplerate', 'title', 'artist',
|
|
|
|
'album', 'genre', 'year', 'track', 'comment']
|
2011-11-27 17:47:00 +00:00
|
|
|
|
2013-10-12 17:54:13 +00:00
|
|
|
def __init__(self, view):
|
|
|
|
DupeGuruBase.__init__(self, view)
|
2011-09-21 18:04:41 +00:00
|
|
|
self.scanner = scanner.ScannerME()
|
|
|
|
self.directories.fileclasses = [fs.MusicFile]
|
2011-09-21 14:26:58 +00:00
|
|
|
|
2012-03-20 15:01:25 +00:00
|
|
|
def _get_dupe_sort_key(self, dupe, get_group, key, delta):
|
|
|
|
if key == 'folder_path':
|
|
|
|
dupe_folder_path = getattr(dupe, 'display_folder_path', dupe.folder_path)
|
|
|
|
return str(dupe_folder_path).lower()
|
|
|
|
return DupeGuruBase._get_dupe_sort_key(self, dupe, get_group, key, delta)
|
|
|
|
|
|
|
|
def _get_group_sort_key(self, group, key):
|
|
|
|
if key == 'folder_path':
|
|
|
|
dupe_folder_path = getattr(group.ref, 'display_folder_path', group.ref.folder_path)
|
|
|
|
return str(dupe_folder_path).lower()
|
|
|
|
return DupeGuruBase._get_group_sort_key(self, group, key)
|
|
|
|
|
2011-09-21 14:26:58 +00:00
|
|
|
def _prioritization_categories(self):
|
|
|
|
return prioritize.all_categories()
|
2011-09-20 22:40:27 +00:00
|
|
|
|
2012-01-16 15:30:45 +00:00
|
|
|
def _create_result_table(self):
|
|
|
|
return ResultTable(self)
|