Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adaptation for names and replace content #64

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 46 additions & 21 deletions routes/collections.py
Original file line number Diff line number Diff line change
@@ -1,41 +1,66 @@
from os import path, makedirs
from aiohttp import web
import shutil
import filecmp
import time
import os

from ..utils import collections_path, get_parent_path, add_uuid_to_filename, \
config_path, get_config, git_init, run_cmd, git_remote_name


# filename, folder_path, folder_type = 'outputs' | 'sources'

def copy_if_different(source_file, destination_file):
"""
Copia un archivo solo si no existe en el destino o si es diferente.
"""
# Crear las carpetas necesarias en la carpeta de destino
makedirs(path.dirname(destination_file), exist_ok=True)

# Solo copiar si el archivo no existe o si es diferente
if not path.exists(destination_file) or not filecmp.cmp(source_file, destination_file, shallow=False):
shutil.copy2(source_file, destination_file)

async def api_add_to_collections(request):
json_data = await request.json()
filename = json_data.get('filename')
if not filename:
return web.Response(status=404)

folder_path = json_data.get('folder_path', '')

folder_type = json_data.get("folder_type", "outputs")

if not filename:
return web.Response(status=404, text="Filename not provided")

parent_path = get_parent_path(folder_type)

makedirs(collections_path(), exist_ok=True)

source_file_path = path.join(parent_path, folder_path, filename)
new_filepath = path.join(collections_path(), filename)

if not path.exists(source_file_path):
return web.Response(status=404)
return web.Response(status=404, text="Source file or directory not found")

new_filepath = path.join(
collections_path(),
add_uuid_to_filename(filename)
)
try:
if path.isdir(source_file_path):
# Asegurarnos de que la carpeta destino exista
makedirs(new_filepath, exist_ok=True)

if path.isdir(source_file_path):
shutil.copytree(source_file_path, new_filepath)
else:
shutil.copy(source_file_path, new_filepath)
# Recorrer todos los archivos en el directorio de origen
for root, dirs, files in os.walk(source_file_path):
for file in files:
source_file = path.join(root, file)
relative_path = path.relpath(source_file, source_file_path) # Obtener la ruta relativa
destination_file = path.join(new_filepath, relative_path)

return web.Response(status=201)
# Copiar solo si es necesario
copy_if_different(source_file, destination_file)

else:
# Es un archivo, copiar solo si es diferente
copy_if_different(source_file_path, new_filepath)

return web.Response(status=201, text="Files copied successfully")

except Exception as e:
# Manejar cualquier excepción y devolver una respuesta de error
return web.Response(status=500, text=f"Error: {str(e)}")

# filename, content
async def api_create_new_workflow(request):
Expand All @@ -56,6 +81,7 @@ async def api_create_new_workflow(request):
return web.Response(status=201)

async def api_sync_my_collections(_):

if not path.exists(config_path):
return web.Response(status=404)

Expand Down Expand Up @@ -85,9 +111,8 @@ async def api_sync_my_collections(_):
status=500,
)

cmd = 'git branch --show-current'
ret = run_cmd(cmd, collections_path())
branch = ret.stdout.replace('\n', '')
# Asegurarnos de que la rama main es la que se usa
branch = "main"

cmd = f'git merge {git_remote_name}/{branch}'
ret = run_cmd(cmd, collections_path(), log_code=False)
Expand Down
25 changes: 15 additions & 10 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ def get_info_filename(filename):
return path.splitext(filename)[0] + info_file_suffix

def add_uuid_to_filename(filename):
name, ext = path.splitext(filename)
return f'{name}_{int(time.time())}{ext}'
# Simplemente devolver el nombre original del archivo
return filename

def output_directory_from_comfyui():
if args.output_directory:
Expand All @@ -179,25 +179,30 @@ def output_directory_from_comfyui():
return folder_paths.get_output_directory()

def git_init():
# Inicializa el repositorio si no existe
if not path.exists(path.join(collections_path(), '.git')):
run_cmd('git init', collections_path())

ret = run_cmd('git config user.name', collections_path(),
log_cmd=False, log_code=False, log_message=False)
# Configurar el nombre de usuario si no está configurado
ret = run_cmd('git config user.name', collections_path(), log_cmd=False, log_code=False, log_message=False)
if len(ret.stdout) == 0:
ret = run_cmd('whoami', collections_path(),
log_cmd=False, log_code=False, log_message=False)
ret = run_cmd('whoami', collections_path(), log_cmd=False, log_code=False, log_message=False)
username = ret.stdout.rstrip("\n")
run_cmd(f'git config user.name "{username}"', collections_path())

ret = run_cmd('git config user.email', collections_path(),
log_cmd=False, log_code=False, log_message=False)
# Configurar el correo electrónico si no está configurado
ret = run_cmd('git config user.email', collections_path(), log_cmd=False, log_code=False, log_message=False)
if len(ret.stdout) == 0:
ret = run_cmd('hostname', collections_path(),
log_cmd=False, log_code=False, log_message=False)
ret = run_cmd('hostname', collections_path(), log_cmd=False, log_code=False, log_message=False)
hostname = ret.stdout.rstrip("\n")
run_cmd(f'git config user.email "{hostname}"', collections_path())

# Cambiar a la rama main si no estamos en ella
ret = run_cmd('git branch --show-current', collections_path(), log_cmd=False, log_code=False, log_message=False)
current_branch = ret.stdout.strip()
if current_branch != 'main':
run_cmd('git checkout -b main', collections_path())

for dir in [
collections_path(),
sources_path(),
Expand Down