-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheets_to_googledoc.py
313 lines (277 loc) · 10.7 KB
/
sheets_to_googledoc.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
from google.oauth2.service_account import Credentials
from googleapiclient.discovery import build
import csv
import tkinter as tk
from tkinter import filedialog
import webbrowser
from PIL import Image, ImageTk
# line to install
# pyinstaller --onefile --noconsole main.py
# ------------------------------------------------------------- FUNÇÕES / Data
def select_file():
global csv_data
file_path = filedialog.askopenfilename(filetypes=[("Arquivos CSV", "*.csv")])
if file_path:
selected_file.set(file_path)
csv_data = read_csv_file(file_path)
display_csv_info(csv_data)
else:
selected_file.set("Nenhum arquivo selecionado")
csv_data = None
def read_csv_file(file_path):
global csv_data
with open(file_path, newline='', encoding='utf-8') as csvfile:
reader = csv.reader(csvfile)
columns = next(reader)
data = list(reader)
csv_data = {"columns": columns, "data": data}
return csv_data
def display_csv_info(csv_data):
try:
columns = csv_data["columns"]
values = csv_data["data"][0] # Obtém os valores da primeira linha (após o cabeçalho)
info_text.config(state=tk.NORMAL) # Habilita a edição do texto
info_text.delete(1.0, tk.END) # Limpa o texto atual
info_text.insert(tk.END, "Informações do Arquivo CSV:\n\n")
for column, value in zip(columns, values):
info_text.insert(tk.END, f"{column}: {value}\n")
info_text.config(state=tk.DISABLED) # Impede a edição do texto
except Exception as e:
print("Erro ao exibir informações do arquivo:", e)
def open_link():
webbrowser.open("link here")
def cancel():
global cancelado
cancelado = True
root.destroy()
def run_go():
global run
run = True
# ------------------------------------------------------------- FUNÇÕES / Text
def fontUpdate(end, font):
requests = [
{
"updateTextStyle": {
"range": {
"startIndex": 1, # Início do texto a ser estilizado
"endIndex": end # Fim do texto a ser estilizado
},
"textStyle": {
"weightedFontFamily": {
"fontFamily": font, # Nome da família da fonte
"weight": 400 # Peso da fonte (400 é normal, 700 é negrito)
},
"fontSize": {
"magnitude": 12, # Tamanho da fonte
"unit": "PT" # Unidade do tamanho da fonte
}
},
"fields": "weightedFontFamily,fontSize" # Campos a serem atualizados
}
}
]
return requests
def find_line_start(text, line):
lines = text.split('\n')
for i, l in enumerate(lines):
if l.strip().startswith(line):
return sum(len(lines[j]) + 1 for j in range(i))
def textDeleteInsert(end_index):
text = "\nExample Text Title\n" \
f"{variable}\n\n\n" \
"Pré-Evento:\n" \
f" \u2022 Field:{empty}{empty}{variable}\n" \
f" \u2022 Field:{empty}. . . . . . {variable}\n" \
f" \u2022 Field:{empty}. {variable}\n" \
f" \u2022 Field:. . . . . . . {variable}\n\n\n" \
"Title:\n" \
f" \u2022 Field: _______\n" \
f" \u2022 Field: _______\n" \
f" \u2022 Field: _______\n" \
f" \u2022 Field: _______\n\n\n" \
"Title:\n" \
f" \u2022 Field: \n \u2022 text:{empty}{variable}\n\n" \
f" \u2022 Field:{empty}. . {variable}\n" \
f" \u2022 Field: {empty}{variable}\n\n" \
f" \u2022 Field:\n \u2022 {variable}\n\n\n" \
"Title:\n" \
f" \u2022 Field: {variable}\n" \
f" \u2022 Field: {variable}\n\n\n" \
f"Title: \n{variable}\n"
requests = [
{'deleteContentRange': {'range': {
'startIndex': 1,
'endIndex': end_index}}},
{
'insertText': {
'location': {
'index': 1,
},
'text': text
}
}, # Text insert
# Formatação --------> "Text to search"
{
'updateTextStyle': {
'range': {
'startIndex': 1,
'endIndex': find_line_start(text, "Text to search") + len(
"Resumo Operacional | Evento") + 1
},
'textStyle': {
'fontSize': {
'magnitude': 16, # Tamanho da fonte
'unit': 'PT'
},
'bold': True
},
'fields': 'fontSize, bold'
}
}, # Text style
{
'updateParagraphStyle': {
'range': {
'startIndex': 1,
'endIndex': find_line_start(text, variable) + len(variable) + 1
},
'paragraphStyle': {
'alignment': 'CENTER'
},
'fields': 'alignment'
}
}, # Paragraph style
# Formatação --------> "Text to search"
{
'updateTextStyle': {
'range': {
'startIndex': find_line_start(text, "Text to search"),
'endIndex': find_line_start(text, "Text to search") + len("Text to search") + 2
},
'textStyle': {
'bold': True
},
'fields': 'bold'
}
},# Text style
# Formatação --------> "Text to search:"
{
'updateTextStyle': {
'range': {
'startIndex': find_line_start(text, "Text to search"),
'endIndex': find_line_start(text, "Text to search") + len(
"Equipamentos em comodato") + 2
},
'textStyle': {
'bold': True
},
'fields': 'bold'
}
},# Text style
# Formatação --------> "Text to search"
{
'updateTextStyle': {
'range': {
'startIndex': find_line_start(text, "Text to search"),
'endIndex': find_line_start(text, "Text to search") + len(
"Text to search") + 2
},
'textStyle': {
'bold': True
},
'fields': 'bold'
}
}, # Text style
# Formatação --------> "Text to search"
{
'updateTextStyle': {
'range': {
'startIndex': find_line_start(text, "Text to search"),
'endIndex': find_line_start(text, "Text to search") + len("Text to search") + 2
},
'textStyle': {
'bold': True
},
'fields': 'bold'
}
}, # Text style
]
return requests
# ------------------------------------------------------------- USER INTERFACE
cancelado = False
run = False
# Cria a janela principal
root = tk.Tk()
root.title("Title")
root.geometry("600x490")
# Logo Musa
icone_png = Image.open("logo.png")
icone_tk = ImageTk.PhotoImage(icone_png)
root.iconphoto(True, icone_tk)
# Botão para selecionar o arquivo
file_button = tk.Button(root, text="Selecionar Arquivo", command=select_file)
file_button.pack(pady=10, padx=10)
# Botão para abrir o link específico
link_button = tk.Button(root, text="Abrir link", command=open_link, bg="#D3D6DB")
link_button.pack(pady=10, padx=10)
# Botão para cancelar
cancel_button = tk.Button(root, text="Cancelar", command=cancel, bg="#F05454", fg="White")
cancel_button.pack(pady=10, padx=10)
# Botão para realizar
run_button = tk.Button(root, text="Go!", command=run_go, bg="#006a39", fg="White")
run_button.pack(pady=10, padx=10)
# Variável para armazenar o caminho do arquivo selecionado
selected_file = tk.StringVar()
file_label = tk.Label(root, textvariable=selected_file)
file_label.pack(pady=10)
# Componente de texto para exibir as informações do arquivo
info_text = tk.Text(root, font=("Helvetica", 10), state=tk.DISABLED)
info_text.pack(expand=True, fill="both", padx=10, pady=10)
# Executa o loop principal da interface gráfica
root.mainloop()
# ------------------------------------------------------------- RUN
if cancelado:
print("\nCancelado")
elif run:
# ------------------------------------------------------------- VARIÁVEIS TEXTUAIS
empty = " . . . . . . . . . . . "
variable = csv_data["data"][0][1]
# Title
variable = csv_data["data"][0][4]
variable = csv_data["data"][0][5]
variable = csv_data["data"][0][5]
variable = csv_data["data"][0][5]
# Title
variable = "__________"
# Title
variable = (f"{csv_data["data"][0][6]} - Entre __ até __")
variable = csv_data["data"][0][7]
variable = "Nome: __________ - CPF: __________"
variable = "Dia __ - Entre __ até __"
# Title
variable = "Text"
variable = ("text")
# Title
variable = "____________"
variable = ("Text")
# ------------------------------------------------------------- MAIN + GOOGLE AUTHS
# ID do documento e credenciais do Google Cloud
SERVICE_ACCOUNT_FILE = 'credentials.json'
DOCUMENT_ID = 'document id'
# Inicialização e credenciais para o Doc Service
SCOPES = ['https://www.googleapis.com/auth/documents']
CREDENTIALS = Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
service = build('docs', 'v1', credentials=CREDENTIALS)
# Abrir o Doc
doc = service.documents().get(documentId=DOCUMENT_ID).execute()
# Checar tamanho do conteúdo para limpeza das informações
doc_content = doc.get('body').get('content')
end_index = doc_content[-1].get('endIndex', 1) - 1
# Requerimentos para atualização de texto
txt = textDeleteInsert(end_index)
font = fontUpdate(end=end_index, font="Helvetica")
# Execução de requerimentos
service.documents().batchUpdate(documentId=DOCUMENT_ID, body={'requests': font}).execute()
service.documents().batchUpdate(documentId=DOCUMENT_ID, body={'requests': txt}).execute()
print(f'\nDocumento atualizado') #
else:
print("\nCancelado")