2013-01-22 21:25:50 -08:00
|
|
|
"""
|
|
|
|
A PyQT4 dialog to select from automated issue matches
|
|
|
|
"""
|
|
|
|
|
|
|
|
"""
|
2014-03-23 10:30:23 -07:00
|
|
|
Copyright 2012-2014 Anthony Beville
|
2013-01-22 21:25:50 -08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
from PyQt4 import QtCore, QtGui, uic
|
|
|
|
|
|
|
|
from PyQt4.QtCore import QUrl, pyqtSignal, QByteArray
|
|
|
|
|
|
|
|
from imagefetcher import ImageFetcher
|
|
|
|
from settings import ComicTaggerSettings
|
2013-02-13 13:53:15 -08:00
|
|
|
from comicarchive import MetaDataStyle
|
2013-02-03 10:14:16 -08:00
|
|
|
from coverimagewidget import CoverImageWidget
|
|
|
|
from comicvinetalker import ComicVineTalker
|
2013-02-04 20:49:44 -08:00
|
|
|
import utils
|
2013-01-22 21:25:50 -08:00
|
|
|
|
|
|
|
class AutoTagMatchWindow(QtGui.QDialog):
|
|
|
|
|
|
|
|
volume_id = 0
|
|
|
|
|
|
|
|
def __init__(self, parent, match_set_list, style, fetch_func):
|
|
|
|
super(AutoTagMatchWindow, self).__init__(parent)
|
|
|
|
|
2013-04-11 18:56:24 -07:00
|
|
|
uic.loadUi(ComicTaggerSettings.getUIFile('matchselectionwindow.ui' ), self)
|
2013-01-22 21:25:50 -08:00
|
|
|
|
2013-02-03 10:14:16 -08:00
|
|
|
self.altCoverWidget = CoverImageWidget( self.altCoverContainer, CoverImageWidget.AltCoverMode )
|
|
|
|
gridlayout = QtGui.QGridLayout( self.altCoverContainer )
|
|
|
|
gridlayout.addWidget( self.altCoverWidget )
|
|
|
|
gridlayout.setContentsMargins(0,0,0,0)
|
|
|
|
|
|
|
|
self.archiveCoverWidget = CoverImageWidget( self.archiveCoverContainer, CoverImageWidget.ArchiveMode )
|
|
|
|
gridlayout = QtGui.QGridLayout( self.archiveCoverContainer )
|
|
|
|
gridlayout.addWidget( self.archiveCoverWidget )
|
|
|
|
gridlayout.setContentsMargins(0,0,0,0)
|
2013-02-04 19:51:50 -08:00
|
|
|
|
2013-02-04 20:49:44 -08:00
|
|
|
utils.reduceWidgetFontSize( self.twList )
|
2013-04-12 10:52:23 -07:00
|
|
|
utils.reduceWidgetFontSize( self.teDescription, 1 )
|
2013-02-04 20:49:44 -08:00
|
|
|
|
2013-02-04 19:51:50 -08:00
|
|
|
self.setWindowFlags(self.windowFlags() |
|
|
|
|
QtCore.Qt.WindowSystemMenuHint |
|
|
|
|
QtCore.Qt.WindowMaximizeButtonHint)
|
2013-02-03 10:14:16 -08:00
|
|
|
|
|
|
|
self.skipButton = QtGui.QPushButton(self.tr("Skip to Next"))
|
2013-01-22 21:25:50 -08:00
|
|
|
self.buttonBox.addButton(self.skipButton, QtGui.QDialogButtonBox.ActionRole)
|
2013-02-03 10:14:16 -08:00
|
|
|
self.buttonBox.button(QtGui.QDialogButtonBox.Ok).setText("Accept and Write Tags")
|
2013-01-22 21:25:50 -08:00
|
|
|
|
|
|
|
self.match_set_list = match_set_list
|
|
|
|
self.style = style
|
|
|
|
self.fetch_func = fetch_func
|
|
|
|
|
|
|
|
self.current_match_set_idx = 0
|
|
|
|
|
|
|
|
self.twList.currentItemChanged.connect(self.currentItemChanged)
|
|
|
|
self.twList.cellDoubleClicked.connect(self.cellDoubleClicked)
|
|
|
|
self.skipButton.clicked.connect(self.skipToNext)
|
|
|
|
|
|
|
|
self.updateData()
|
|
|
|
|
|
|
|
def updateData( self):
|
|
|
|
|
|
|
|
self.current_match_set = self.match_set_list[ self.current_match_set_idx ]
|
|
|
|
|
|
|
|
if self.current_match_set_idx + 1 == len( self.match_set_list ):
|
2013-02-03 10:14:16 -08:00
|
|
|
self.buttonBox.button(QtGui.QDialogButtonBox.Cancel).setDisabled(True)
|
|
|
|
#self.buttonBox.button(QtGui.QDialogButtonBox.Ok).setText("Accept")
|
|
|
|
self.skipButton.setText(self.tr("Skip"))
|
|
|
|
|
2013-01-22 21:25:50 -08:00
|
|
|
self.setCoverImage()
|
|
|
|
self.populateTable()
|
|
|
|
self.twList.resizeColumnsToContents()
|
|
|
|
self.twList.selectRow( 0 )
|
|
|
|
|
|
|
|
path = self.current_match_set.ca.path
|
2013-02-04 11:53:03 -08:00
|
|
|
self.setWindowTitle( u"Select correct match or skip ({0} of {1}): {2}".format(
|
2013-01-22 21:25:50 -08:00
|
|
|
self.current_match_set_idx+1,
|
|
|
|
len( self.match_set_list ),
|
|
|
|
os.path.split(path)[1] ))
|
|
|
|
|
|
|
|
def populateTable( self ):
|
|
|
|
|
|
|
|
while self.twList.rowCount() > 0:
|
|
|
|
self.twList.removeRow(0)
|
|
|
|
|
|
|
|
self.twList.setSortingEnabled(False)
|
|
|
|
|
|
|
|
row = 0
|
|
|
|
for match in self.current_match_set.matches:
|
|
|
|
self.twList.insertRow(row)
|
|
|
|
|
|
|
|
item_text = match['series']
|
|
|
|
item = QtGui.QTableWidgetItem(item_text)
|
2013-01-29 18:15:16 -08:00
|
|
|
item.setData( QtCore.Qt.ToolTipRole, item_text )
|
2013-02-03 10:14:16 -08:00
|
|
|
item.setData( QtCore.Qt.UserRole, (match,))
|
2013-01-22 21:25:50 -08:00
|
|
|
item.setFlags(QtCore.Qt.ItemIsSelectable| QtCore.Qt.ItemIsEnabled)
|
|
|
|
self.twList.setItem(row, 0, item)
|
|
|
|
|
|
|
|
if match['publisher'] is not None:
|
|
|
|
item_text = u"{0}".format(match['publisher'])
|
|
|
|
else:
|
|
|
|
item_text = u"Unknown"
|
|
|
|
item = QtGui.QTableWidgetItem(item_text)
|
2013-01-29 18:15:16 -08:00
|
|
|
item.setData( QtCore.Qt.ToolTipRole, item_text )
|
2013-01-22 21:25:50 -08:00
|
|
|
item.setFlags(QtCore.Qt.ItemIsSelectable| QtCore.Qt.ItemIsEnabled)
|
|
|
|
self.twList.setItem(row, 1, item)
|
|
|
|
|
2013-02-03 10:14:16 -08:00
|
|
|
month_str = u""
|
|
|
|
year_str = u"????"
|
2013-01-22 21:25:50 -08:00
|
|
|
if match['month'] is not None:
|
2013-02-03 10:14:16 -08:00
|
|
|
month_str = u"-{0:02d}".format(int(match['month']))
|
2013-01-22 21:25:50 -08:00
|
|
|
if match['year'] is not None:
|
2013-02-03 10:14:16 -08:00
|
|
|
year_str = u"{0}".format(match['year'])
|
|
|
|
|
|
|
|
item_text = year_str + month_str
|
2013-01-22 21:25:50 -08:00
|
|
|
item = QtGui.QTableWidgetItem(item_text)
|
2013-01-29 18:15:16 -08:00
|
|
|
item.setData( QtCore.Qt.ToolTipRole, item_text )
|
2013-01-22 21:25:50 -08:00
|
|
|
item.setFlags(QtCore.Qt.ItemIsSelectable| QtCore.Qt.ItemIsEnabled)
|
|
|
|
self.twList.setItem(row, 2, item)
|
2013-02-03 10:14:16 -08:00
|
|
|
|
2013-04-02 12:57:50 -07:00
|
|
|
item_text = match['issue_title']
|
|
|
|
if item_text is None:
|
|
|
|
item_text = ""
|
2013-02-03 10:14:16 -08:00
|
|
|
item = QtGui.QTableWidgetItem(item_text)
|
|
|
|
item.setData( QtCore.Qt.ToolTipRole, item_text )
|
|
|
|
item.setFlags(QtCore.Qt.ItemIsSelectable| QtCore.Qt.ItemIsEnabled)
|
|
|
|
self.twList.setItem(row, 3, item)
|
2013-01-22 21:25:50 -08:00
|
|
|
|
|
|
|
row += 1
|
2013-02-02 10:39:39 -08:00
|
|
|
|
|
|
|
self.twList.resizeColumnsToContents()
|
|
|
|
self.twList.setSortingEnabled(True)
|
2013-02-03 10:14:16 -08:00
|
|
|
self.twList.sortItems( 2 , QtCore.Qt.AscendingOrder )
|
2013-02-02 10:39:39 -08:00
|
|
|
self.twList.selectRow(0)
|
|
|
|
self.twList.resizeColumnsToContents()
|
2013-02-03 10:14:16 -08:00
|
|
|
self.twList.horizontalHeader().setStretchLastSection(True)
|
2013-01-22 21:25:50 -08:00
|
|
|
|
|
|
|
|
|
|
|
def cellDoubleClicked( self, r, c ):
|
|
|
|
self.accept()
|
|
|
|
|
|
|
|
def currentItemChanged( self, curr, prev ):
|
|
|
|
|
|
|
|
if curr is None:
|
|
|
|
return
|
|
|
|
if prev is not None and prev.row() == curr.row():
|
|
|
|
return
|
|
|
|
|
2013-02-03 10:14:16 -08:00
|
|
|
self.altCoverWidget.setIssueID( self.currentMatch()['issue_id'] )
|
2013-04-11 18:56:24 -07:00
|
|
|
if self.currentMatch()['description'] is None:
|
|
|
|
self.teDescription.setText ( "" )
|
|
|
|
else:
|
|
|
|
self.teDescription.setText ( self.currentMatch()['description'] )
|
2013-01-22 21:25:50 -08:00
|
|
|
|
|
|
|
def setCoverImage( self ):
|
|
|
|
ca = self.current_match_set.ca
|
2013-02-03 10:14:16 -08:00
|
|
|
self.archiveCoverWidget.setArchive(ca)
|
2013-01-22 21:25:50 -08:00
|
|
|
|
2013-02-03 10:14:16 -08:00
|
|
|
def currentMatch( self ):
|
|
|
|
row = self.twList.currentRow()
|
|
|
|
match = self.twList.item(row, 0).data( QtCore.Qt.UserRole ).toPyObject()[0]
|
|
|
|
return match
|
|
|
|
|
2013-01-22 21:25:50 -08:00
|
|
|
def accept(self):
|
|
|
|
|
|
|
|
self.saveMatch()
|
|
|
|
self.current_match_set_idx += 1
|
|
|
|
|
|
|
|
if self.current_match_set_idx == len( self.match_set_list ):
|
|
|
|
# no more items
|
|
|
|
QtGui.QDialog.accept(self)
|
|
|
|
else:
|
|
|
|
self.updateData()
|
|
|
|
|
|
|
|
def skipToNext( self ):
|
|
|
|
self.current_match_set_idx += 1
|
|
|
|
|
|
|
|
if self.current_match_set_idx == len( self.match_set_list ):
|
|
|
|
# no more items
|
|
|
|
QtGui.QDialog.reject(self)
|
|
|
|
else:
|
|
|
|
self.updateData()
|
|
|
|
|
|
|
|
def reject(self):
|
|
|
|
reply = QtGui.QMessageBox.question(self,
|
|
|
|
self.tr("Cancel Matching"),
|
|
|
|
self.tr("Are you sure you wish to cancel the matching process?"),
|
|
|
|
QtGui.QMessageBox.Yes, QtGui.QMessageBox.No )
|
|
|
|
|
|
|
|
if reply == QtGui.QMessageBox.No:
|
|
|
|
return
|
|
|
|
|
|
|
|
QtGui.QDialog.reject(self)
|
|
|
|
|
|
|
|
def saveMatch( self ):
|
|
|
|
|
2013-02-03 10:14:16 -08:00
|
|
|
match = self.currentMatch()
|
2013-01-22 21:25:50 -08:00
|
|
|
ca = self.current_match_set.ca
|
|
|
|
|
|
|
|
md = ca.readMetadata( self.style )
|
|
|
|
if md.isEmpty:
|
|
|
|
md = ca.metadataFromFilename()
|
|
|
|
|
|
|
|
# now get the particular issue data
|
|
|
|
cv_md = self.fetch_func( match )
|
|
|
|
if cv_md is None:
|
|
|
|
QtGui.QMessageBox.critical(self, self.tr("Network Issue"), self.tr("Could not connect to ComicVine to get issue details!"))
|
|
|
|
return
|
2013-01-22 22:00:59 -08:00
|
|
|
|
|
|
|
QtGui.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.WaitCursor))
|
2013-01-22 21:25:50 -08:00
|
|
|
md.overlay( cv_md )
|
2013-01-22 22:00:59 -08:00
|
|
|
success = ca.writeMetadata( md, self.style )
|
2013-01-29 18:15:16 -08:00
|
|
|
ca.loadCache( [ MetaDataStyle.CBI, MetaDataStyle.CIX ] )
|
|
|
|
|
2013-01-22 22:00:59 -08:00
|
|
|
QtGui.QApplication.restoreOverrideCursor()
|
|
|
|
|
|
|
|
if not success:
|
2013-01-22 21:25:50 -08:00
|
|
|
QtGui.QMessageBox.warning(self, self.tr("Write Error"), self.tr("Saving the tags to the archive seemed to fail!"))
|