-
Notifications
You must be signed in to change notification settings - Fork 5
/
window.py
217 lines (168 loc) · 6.84 KB
/
window.py
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import os
import sys
import platform
import traceback
from datetime import datetime as dt
from PySide.QtCore import Qt, Slot, Signal, QSettings, QDir, QThread, QTimer
from PySide.QtGui import (
QMainWindow, QApplication,
QMessageBox, QIcon, QSystemTrayIcon, QPixmap)
import resources
from sync import Sync
from views import SyncView, LoginView, View
from localsettings import get_settings, SettingsKeys
resources.qInitResources()
class SyncWindow(QMainWindow):
"""
Application main window. This class is meant to handle
every widget needed by the application, as well as other
needed global objects and behavior.
"""
failedLogIn = Signal()
syncStarted = Signal()
loginRequested = Signal((str, str,))
statusChanged = Signal((str, str, int,))
def __init__(self, parent=None):
super(SyncWindow, self).__init__(parent)
# Sets up several UI aspects
self.tray = QSystemTrayIcon(self)
self.tray.setIcon(QIcon(QPixmap(':/resources/icon.png')))
self.tray.show()
self.setStyleSheet('SyncWindow {background: white}')
self.setWindowTitle('IQBox')
self.setWindowIcon(QIcon(QPixmap(':/resources/logobar.png')))
self.statusBar().setFont(View.labelsFont())
self.syncThread = None
# Initializes the window with a `LoginView` widget.
self.loginView()
def loginView(self):
"""
Initializes a `LoginView` object and sets it up as the main window's
central widget.
"""
login = LoginView()
login.login.connect(self.onLogin)
self.failedLogIn.connect(login.onFailedLogIn)
self.setCentralWidget(login)
self.setFixedSize(login.size())
self.statusBar().hide()
def syncView(self):
"""
Initializes a `SyncView` object and sets it up as the main window's
central widget.
"""
syncview = SyncView()
self.setCentralWidget(syncview)
self.setFixedSize(syncview.size())
self.statusBar().show()
self.statusChanged.connect(syncview.status.setMessage)
syncview.sync.connect(self.onSync)
@Slot(str, str, str, bool)
def onLogin(self, host, username, passwd, ssl):
"""
Slot. Triggers a log in request to the server.
:param host: Indicates the hostname of the FTP server
:param username: Username to log in into the FTP server
:param passwd: Password to log in into the FTP server
:param ssl: Indicates whether the FTP needs SSL support
"""
self.sync = Sync(host, ssl)
self.syncStarted.connect(self.sync.initQueue)
self.sync.server.downloadProgress.connect(self.onDownloadProgress)
self.sync.server.uploadProgress.connect(self.onUploadProgress)
self.sync.server.fileEvent.connect(self.onFileEvent)
self.sync.server.badFilenameFound.connect(self.badNameWarning)
self.sync.server.loginCompleted.connect(self.onLoginCompleted)
self.sync.server.fileEventCompleted.connect(self.onFileEventCompleted)
self.sync.server.ioError.connect(self.onIOError)
# Added by Si
self.sync.server.textStatus.connect(self.setStatus)
self.sync.statusChanged.connect(self.setStatus)
self.loginRequested.connect(self.sync.server.onLogin)
self.syncThread = QThread()
self.sync.moveToThread(self.syncThread)
self.syncThread.start()
QApplication.instance().lastWindowClosed.connect(self.syncThread.quit)
self.loginRequested.emit(username, passwd)
@Slot(bool, str)
def onLoginCompleted(self, ok, msg):
if not ok:
self.showMessageBox(msg)
self.failedLogIn.emit()
else:
self.syncView()
@Slot()
def onFileEventCompleted(self):
# Workaround because there's an exception
# when there's a file IO error
# Ideally it should be managed elsewhere
# But I don't know the code intimately enough yet.
try:
self.currentFile
except AttributeError:
self.currentFile = ''
self.statusChanged.emit('Completed', self.currentFile, 100)
@Slot(str)
def onSync(self, localdir):
"""
Slot. Triggers a server checkout.
:param localdir: Absolute local directory path where to keep the files
"""
self.sync.setLocalDir(localdir)
self.sync.local.ioError.connect(self.onIOError)
self.syncStarted.emit()
self.setStatus('Syncing')
def showMessageBox(self, msg):
warning = QMessageBox(self)
warning.setFont(View.labelsFont())
warning.setStyleSheet('QMessageBox {background: white}')
warning.setWindowTitle("Error")
warning.setText(msg)
warning.setIcon(QMessageBox.Warning)
warning.addButton("Ok", QMessageBox.AcceptRole).setFont(View.editsFont())
warning.exec_()
@Slot(int, int)
def onProgress(self, action, total, progress):
"""
Slot. Triggers download progress update in the UI.
:param total: Total size of the download in bytes
:param progress: Current downdload progress in bytes
"""
if progress <= 0:
return
else:
percent = (progress * 100) / total
self.statusChanged.emit(action, self.currentFile, percent)
@Slot(str)
def setStatus(self, msg):
self.statusChanged.emit(msg, '', 0)
@Slot(int, int)
def onDownloadProgress(self, total, progress):
"""
Slot. Triggers upload progress update in the UI.
:param total: Total size of the download in bytes
:param progress: Current downdload progress in bytes
"""
self.onProgress('Downloading', total, progress)
@Slot(int, int)
def onUploadProgress(self, total, progress):
"""
Slot. Triggers download progress update in the UI.
:param total: Total size of the download in bytes
:param progress: Current downdload progress in bytes
"""
self.onProgress('Uploading', total, progress)
@Slot(str)
def onFileEvent(self, filename):
"""
Slot. Updates the current download filename to be used in the UI
:param filename: Name of the file that is being downloaded
"""
self.currentFile = filename
@Slot(str)
def onIOError(self, filename):
self.showMessageBox('Error reading: "{}"'.format(filename))
@Slot(str)
def badNameWarning(self, filename):
self.showMessageBox(
'Will not sync "{}". Invalid filename'.format(filename))