-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
450 lines (349 loc) · 14.6 KB
/
main.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
"""
Ponto de entrada do programa.
Esse arquivo é compilado usando a lib PyInstaller para gerar um executável para distribuição.
"""
import sys
import os
import webbrowser
from typing import Callable
from PyQt6.QtWidgets import (
QMainWindow, QApplication, QFileDialog, QMenu, QTreeWidget, QListWidget, QTreeWidgetItem, QListWidgetItem
)
from PyQt6.QtGui import QTextCursor, QIcon, QAction
from PyQt6.QtCore import QThread, Qt, QPoint
from ui.MainWindow import Ui_MainWindow
from utils import *
# todo Features
# * Suporte para download de outras fontes usando youtube-dl
# * Suporte para selecionar qualidade da mídia
# todo Refactoring
# Migrar código para PySide6
# (A maneira que o PyQt6 cria os arquivos .ui gera bugs envolvendo a localização de imagens. Encapsular recursos em
# um arquivo .qrc é melhor porém atualmente não há uma CLI para conversão desses arquivos para .py no PyQt6.)
class MainWindow(QMainWindow, Ui_MainWindow):
"""Janela principal do aplicativo."""
def __init__(self):
super().__init__()
self.setupUi(self)
# Instancia variáveis
self.thread: QThread | None = None
self.worker: Worker | None = None
self.path = ''
self.data = {}
# Inicia interface do aplicativo
self.init_ui()
def init_ui(self):
"""Seta propriedades iniciais."""
self.cb_extension.setCurrentIndex(0)
self.radio_name.setChecked(True)
self.bt_download.setDisabled(True)
self.tree_list.clear()
self.txt_artist.setFocus()
github_link = 'https://github.com/Paulo1402/YouTube-Downloader'
# Conecta botões do menu
self.action_project.triggered.connect(lambda: webbrowser.open(github_link))
self.action_help.triggered.connect(lambda: webbrowser.open(f'{github_link}#-como-usar'))
self.action_icons.triggered.connect(lambda: webbrowser.open('https://icons8.com.br/'))
# Conecta eventos
self.bt_download.clicked.connect(self.download)
self.bt_add.clicked.connect(self.add_media)
self.bt_append.clicked.connect(self.append_media)
self.radio_name.toggled.connect(lambda x: self.txt_artist.setDisabled(not x))
# Conecta atalhos de teclados ao botão para adicionar media
enter_action = QAction(self)
enter_action.setShortcuts(['return', 'enter'])
enter_action.triggered.connect(self.handle_enter_pressed)
self.addAction(enter_action)
# Conecta atalhos do teclado para botões
self.bt_download.setShortcut('CTRL+D')
self.bt_add.setShortcut('CTRL+A')
# Seta custom context menus
self.tree_list.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu)
self.tree_list.customContextMenuRequested.connect(
lambda pos: self.custom_context(self.tree_list, self.remove_tree_item, pos)
)
self.list_media.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu)
self.list_media.customContextMenuRequested.connect(
lambda pos: self.custom_context(self.list_media, self.remove_list_item, pos)
)
def closeEvent(self, event):
"""Evento disparado ao tentar fechar o aplicativo."""
# Se a thread estiver em execução
if self.thread and self.thread.isRunning():
if Message.warning_question(self, 'Processo em andamento!\nDeseja sair mesmo assim?') == Message.NO:
event.ignore()
return
self.clean_setup()
event.accept()
def handle_enter_pressed(self):
"""Executa o botão de append caso os atalhos de teclado forem utilizados"""
if not self.txt_media.hasFocus():
return
self.bt_append.animateClick()
def remove_list_item(self, item: QListWidgetItem):
"""
Remove item da list widget.
:param item: Item da lista
"""
row = self.list_media.row(item)
self.list_media.takeItem(row)
def remove_tree_item(self, item: QTreeWidgetItem):
"""
Remove item do dicionário de dados e refaz a tree list.
:param item: Item para remover
"""
parent = item.parent()
# Artista
if not parent:
artist = item.text(0).lower()
del self.data[artist]
# Formato
elif not parent.parent():
artist = parent.text(0).lower()
extension = item.text(0).lower()
if artist == 'sem artista':
artist = 'no_artist'
artist_data = self.data[artist]
del artist_data[extension]
# Caso não haja outro formato, remove o artista
if not artist_data:
del self.data[artist]
# Media
else:
artist = parent.parent().text(0).lower()
extension = parent.text(0).lower()
media = item.text(0)
if artist == 'sem artista':
artist = 'no_artist'
elif artist != 'urls':
media = media.lower()
artist_data = self.data[artist]
extension_data = artist_data[parent.text(0).lower()]
index_media = extension_data.index(media)
del extension_data[index_media]
# Caso não haja outra media, remove o formato
if not extension_data:
del artist_data[extension]
# Caso não haja outro formato, remove o artista
if not artist_data:
del self.data[artist]
# Recria tree list
self.build_tree()
def custom_context(self, main_widget: QTreeWidget | QListWidget, remove_function: Callable, pos: QPoint):
"""
Cria um context menu com opção para deletar item.
:param main_widget: Widget base para o context menu
:param remove_function: Função de remoção
:param pos: Posição do click
"""
if not main_widget.selectedItems():
return
item = main_widget.selectedItems()[0]
pos = main_widget.mapToGlobal(pos)
delete_action = QAction('Deletar', self)
delete_action.setIcon(QIcon(os.path.join(BASEDIR, 'assets/delete-32.png')))
delete_action.triggered.connect(lambda: remove_function(item))
menu = QMenu(self)
menu.addAction(delete_action)
menu.move(pos)
menu.show()
def append_media(self):
"""Adiciona media ao list widget."""
media: str = self.txt_media.text()
if not media.strip():
return
self.list_media.addItem(media)
self.txt_media.clear()
self.txt_media.setFocus()
def add_media(self):
"""Adiciona media ao dicionário de dados."""
data = []
artist: str = self.txt_artist.text()
extension: str = self.cb_extension.currentText()
search_by_url: bool = self.radio_url.isChecked()
# Adiciona itens da list widget em uma lista temporária
for i in range(self.list_media.count()):
media = self.list_media.item(i).text()
is_url = is_youtube_url(media)
# Verifica URL caso o modo de busca seja por URL
if search_by_url and not is_url:
Message.critical(
self,
'ATENÇÃO',
'Um ou mais itens na lista de vídeos não se parecem com uma URL válida!\n'
'Sua URL deve conter o seguinte padrão:\n'
'"https://www.youtube.com/watch?v=[ID DO VÍDEO]" '
'ou "https://www.youtube.com/playlist?list=[ID DA PLAYLIST]"'
)
return
elif not search_by_url and is_url:
Message.critical(
self,
'ATENÇÃO',
'Um ou mais itens na lista de vídeos são URLS, porém a opção de busca por nome está selecionada!\n'
'Remova os demais itens e escolha a opção de busca por URL.'
)
return
data.append(media)
if len(data) == 0:
Message.warning(self, 'ATENÇÃO', 'Insira ao menos um item na lista de vídeos para continuar!')
self.txt_media.setFocus()
return
# Define key
if search_by_url:
key = 'urls'
elif artist:
key = artist
else:
key = 'no_artist'
# Retorna dados
media = get_old_data(self.data, key, {})
# Verifica extensão
if '.mp3' in extension:
# Retorna dados antigos
mp3_media = get_old_data(media, 'mp3', [])
# Garante apenas registros únicos
unique_data = [d for d in data if d not in mp3_media]
# Salva medias na extensão escolhida
media['mp3'] = [*mp3_media, *unique_data]
# Repete o processo acima
if '.mp4' in extension:
mp4_media = get_old_data(media, 'mp4', [])
unique_data = [d for d in data if d not in mp4_media]
media['mp4'] = [*mp4_media, *unique_data]
# Salva media no dicionário de dados
self.data[key] = media
# Prepara para novo registro
self.txt_artist.clear()
self.txt_media.clear()
self.list_media.clear()
self.radio_name.setChecked(True)
self.cb_extension.setCurrentIndex(0)
# Recria tree list
self.build_tree()
def build_tree(self):
"""Cria tree_list."""
def fill_item(item: QTreeWidgetItem, data: list | dict, url_flag: bool = False):
"""
Cria um novo item derivado do item pai.
:param item: Item base
:param data: Dados para preencher
:param url_flag: Caso o conteúdo de data for URLs
"""
# Expande item
item.setExpanded(True)
# Verifica se o valor é um dicionário
if type(data) is dict:
for key, value in sorted(data.items(), key=sort_dict):
child = QTreeWidgetItem()
if key == 'urls':
key_parsed = 'URLS'
url_flag = True
elif key == 'no_artist':
key_parsed = 'Sem Artista'
else:
key_parsed = key.title()
child.setText(0, key_parsed)
item.addChild(child)
# Chama a função recursivamente
fill_item(child, value, url_flag)
# Caso seja uma lista, itera sobre ela
else:
for value in data:
child = QTreeWidgetItem()
# Caso seja uma URL não formata a string
if not url_flag:
child.setText(0, value.title())
else:
child.setText(0, value)
item.addChild(child)
# Limpa tree list
self.tree_list.clear()
# Libera botão de download caso haja dados
if self.data:
self.bt_download.setDisabled(False)
fill_item(self.tree_list.invisibleRootItem(), self.data)
else:
self.bt_download.setDisabled(True)
def download(self):
"""Baixa lista do YouTube."""
# Verifica se o processo está em andamento
if self.thread and self.thread.isRunning():
Message.warning(self, 'ATENÇÃO', 'Já existe um processo em andamento, por favor aguarde.')
return
# Verifica se há conexão com a internet
if not check_connection():
Message.critical(self, 'CRÍTICO', 'Não há conexão com a internet.')
return
# Verifica se o usuário deseja prosseguir
if Message.warning_question(self, 'Deseja fazer o download?') == Message.NO:
return
home = os.getenv('USERPROFILE')
# Pega caminho para salvar
self.path = QFileDialog.getSaveFileName(self, 'Salvar em', os.path.join(home, 'Downloads', 'YT Downloader'))[0]
# Verifica se o caminho é válido
if not self.path:
Message.warning(self, 'ATENÇÃO', 'Nenhum diretório especificado.')
return
# Limpa o terminal
self.txt_output.clear()
# Prepara a thread que irá realizar os downloads
self.thread = QThread()
self.worker = Worker(self.data, self.path)
self.worker.moveToThread(self.thread)
# Conecta eventos
self.thread.started.connect(self.worker.run)
self.worker.finished.connect(self.finished_thread)
self.worker.progress.connect(self.progress_bar.setValue)
self.worker.print_on_terminal.connect(self.print_on_terminal)
# Inicia o download
self.thread.start()
def print_on_terminal(self, text: str):
"""
Printa dados no terminal.
:param text: Texto para inserir no terminal
"""
self.txt_output.append(text)
# Move cursor para o fim do texto
cursor = self.txt_output.textCursor()
cursor.movePosition(QTextCursor.MoveOperation.End)
self.txt_output.setTextCursor(cursor)
def clean_setup(self):
"""Elimina variáveis."""
if self.thread and self.worker:
self.thread.quit()
self.thread.deleteLater()
self.worker.deleteLater()
self.thread = None
def finished_thread(self):
"""Elimina variáveis da memória e informa o usuário"""
self.clean_setup()
Message.information(self, 'AVISO', 'Download concluído.')
# Abre a pasta de destino (Explorer só funciona com a barra invertida)
path = self.path.replace('/', '\\')
os.popen(f'explorer "{path}"')
# Reseta dados
self.progress_bar.setValue(0)
self.tree_list.clear()
self.data.clear()
self.bt_download.setDisabled(True)
def exception_hook(*args, **kwargs):
"""Custom hook para receber exceptions vindas do C++(QT) durante desenvolvimento"""
sys.__excepthook__(*args, **kwargs)
sys.exit(1)
if __name__ == "__main__":
# Evita bug no ícone na barra de tarefas quando compilado
try:
# noinspection PyUnresolvedReferences
from ctypes import windll
myappid = 'pc.youtube_downloader.3.0.2'
windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid)
except ImportError:
pass
sys.excepthook = exception_hook
app = QApplication(sys.argv)
app.setStyle('Fusion')
app.setWindowIcon(QIcon(os.path.join(BASEDIR, 'assets/icon-48.png')))
window = MainWindow()
window.show()
sys.exit(app.exec())