|
|
|
|
|
|
| from flask import Flask, render_template_string, request, redirect, url_for, send_file, flash, jsonify, session |
| import json |
| import os |
| import logging |
| import threading |
| import time |
| from datetime import datetime |
| from huggingface_hub import HfApi, hf_hub_download |
| from huggingface_hub.utils import RepositoryNotFoundError, HfHubHTTPError |
| from werkzeug.utils import secure_filename |
| from dotenv import load_dotenv |
| import requests |
| import uuid |
|
|
| load_dotenv() |
|
|
| app = Flask(__name__) |
| app.secret_key = 'dalarssi_secret_key_no_login' |
| DATA_FILE = 'data.json' |
|
|
|
|
| SYNC_FILES = [DATA_FILE] |
|
|
| REPO_ID = "Kgshop/dallarsi" |
| HF_TOKEN_WRITE = os.getenv("HF_TOKEN") |
| HF_TOKEN_READ = os.getenv("HF_TOKEN_READ") |
|
|
| STORE_ADDRESS = "" |
|
|
| CURRENCY_CODE = 'KZT' |
| CURRENCY_NAME = 'Тенге' |
|
|
| DOWNLOAD_RETRIES = 3 |
| DOWNLOAD_DELAY = 5 |
|
|
| logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') |
|
|
| translations = { |
| 'ru': { |
| 'site_title': "dalarssi - Каталог", |
| 'brand_name': "dalarssi", |
| 'our_address': "Наш адрес:", |
| 'all_categories': "Все категории", |
| 'search_placeholder': "Поиск по названию или описанию...", |
| 'no_products_added': "Товары пока не добавлены.", |
| 'no_products_found': "По вашему запросу товары не найдены.", |
| 'top_product': "Топ", |
| 'price_per_line': "Цена за линейку", |
| 'price_per_piece': "Цена за шт.", |
| 'items_in_line': "шт. в линейке", |
| 'details': "Подробнее", |
| 'add_to_cart': "В корзину", |
| 'loading': "Загрузка...", |
| 'specify_quantity_color': "Укажите количество и цвет", |
| 'quantity': "Количество (линеек):", |
| 'color_variant': "Цвет/Вариант:", |
| 'confirm_add_to_cart': "Добавить в корзину", |
| 'your_cart': "Ваша корзина", |
| 'cart_is_empty': "Ваша корзина пуста.", |
| 'total': "Итого:", |
| 'clear_cart': "Очистить корзину", |
| 'formulate_order': "Сформировать заказ", |
| 'open_cart': "Открыть корзину", |
| 'close': "Закрыть", |
| 'product_added_notification': "добавлен в корзину!", |
| 'product_load_error': "Не удалось загрузить информацию о товаре.", |
| 'enter_correct_quantity': "Пожалуйста, укажите корректное количество (больше 0).", |
| 'product_add_error': "Ошибка добавления: товар не найден.", |
| 'confirm_clear_cart': "Вы уверены, что хотите очистить корзину?", |
| 'cart_empty_error': "Корзина пуста! Добавьте товары перед формированием заказа.", |
| 'formulating_order': "Формируем заказ...", |
| 'order_creation_error': "Ошибка при формировании заказа:", |
| 'category': "Категория:", |
| 'no_category': "Без категории", |
| 'price': "Цена:", |
| 'description': "Описание:", |
| 'no_description': "Описание отсутствует.", |
| 'available_colors': "Доступные цвета/варианты:", |
| 'order_title': "Заказ №", |
| 'your_order': "Ваш Заказ №", |
| 'creation_date': "Дата создания:", |
| 'products_in_order': "Товары в заказе", |
| 'total_to_pay': "ИТОГО К ОПЛАТЕ:", |
| 'order_status': "Статус заказа", |
| 'order_status_desc': "Этот заказ был оформлен без входа в систему. Пожалуйста, свяжитесь с нами по WhatsApp для подтверждения и уточнения деталей.", |
| 'send_order': "Отправить заказ", |
| 'back_to_catalog': "← Вернуться в каталог", |
| 'whatsapp_greeting': "Здравствуйте! Хочу подтвердить свой заказ на dalarssi:", |
| 'whatsapp_order_number': "Номер заказа:", |
| 'whatsapp_order_link': "Ссылка на заказ:", |
| 'whatsapp_contact_me': "Пожалуйста, свяжитесь со мной для уточнения деталей оплаты и доставки.", |
| 'error': "Ошибка", |
| 'order_not_found': "Заказ с таким ID не найден.", |
| }, |
| 'kk': { |
| 'site_title': "dalarssi - Каталог", |
| 'brand_name': "dalarssi", |
| 'our_address': "Біздің мекенжайымыз:", |
| 'all_categories': "Барлық санаттар", |
| 'search_placeholder': "Аты немесе сипаттамасы бойынша іздеу...", |
| 'no_products_added': "Тауарлар әлі қосылмаған.", |
| 'no_products_found': "Сіздің сұранысыңыз бойынша тауарлар табылмады.", |
| 'top_product': "Топ", |
| 'price_per_line': "Лента бағасы", |
| 'price_per_piece': "Дана бағасы", |
| 'items_in_line': "лентада дана", |
| 'details': "Толығырақ", |
| 'add_to_cart': "Себетке қосу", |
| 'loading': "Жүктелуде...", |
| 'specify_quantity_color': "Саны мен түсін көрсетіңіз", |
| 'quantity': "Саны (лента):", |
| 'color_variant': "Түсі/нұсқасы:", |
| 'confirm_add_to_cart': "Себетке қосу", |
| 'your_cart': "Сіздің себетіңіз", |
| 'cart_is_empty': "Сіздің себетіңіз бос.", |
| 'total': "Жиыны:", |
| 'clear_cart': "Себетті тазалау", |
| 'formulate_order': "Тапсырысты рәсімдеу", |
| 'open_cart': "Себетті ашу", |
| 'close': "Жабу", |
| 'product_added_notification': "себетке қосылды!", |
| 'product_load_error': "Тауар туралы ақпаратты жүктеу мүмкін болмады.", |
| 'enter_correct_quantity': "Дұрыс санды көрсетіңіз (0-ден көп).", |
| 'product_add_error': "Қосу қатесі: тауар табылмады.", |
| 'confirm_clear_cart': "Себетті тазалағыңыз келетініне сенімдісіз бе?", |
| 'cart_empty_error': "Себет бос! Тапсырысты рәсімдеу алдында тауарларды қосыңыз.", |
| 'formulating_order': "Тапсырысты рәсімдеудеміз...", |
| 'order_creation_error': "Тапсырысты рәсімдеу кезінде қате:", |
| 'category': "Санат:", |
| 'no_category': "Санатсыз", |
| 'price': "Бағасы:", |
| 'description': "Сипаттамасы:", |
| 'no_description': "Сипаттамасы жоқ.", |
| 'available_colors': "Қолжетімді түстер/нұсқалар:", |
| 'order_title': "Тапсырыс №", |
| 'your_order': "Сіздің Тапсырысыңыз №", |
| 'creation_date': "Құрылған күні:", |
| 'products_in_order': "Тапсырыстағы тауарлар", |
| 'total_to_pay': "ТӨЛЕУГЕ ЖИЫНЫ:", |
| 'order_status': "Тапсырыс мәртебесі", |
| 'order_status_desc': "Бұл тапсырыс жүйеге кірмей рәсімделді. Растау және мәліметтерді нақтылау үшін WhatsApp арқылы бізбен хабарласыңыз.", |
| 'send_order': "Тапсырысты жіберу", |
| 'back_to_catalog': "← Каталогқа оралу", |
| 'whatsapp_greeting': "Сәлеметсіз бе! Мен dalarssi-дегі тапсырысымды растағым келеді:", |
| 'whatsapp_order_number': "Тапсырыс нөмірі:", |
| 'whatsapp_order_link': "Тапсырысқа сілтеме:", |
| 'whatsapp_contact_me': "Төлем және жеткізу мәліметтерін нақтылау үшін менімен хабарласыңыз.", |
| 'error': "Қате", |
| 'order_not_found': "Бұл ID-мен тапсырыс табылмады.", |
| } |
| } |
|
|
|
|
| def get_locale(): |
| return session.get('lang', 'ru') |
|
|
| def _(key): |
| lang = get_locale() |
| return translations.get(lang, {}).get(key, key) |
|
|
| @app.context_processor |
| def inject_helpers(): |
| return dict(_=_, lang=get_locale(), translations=translations) |
|
|
| @app.route('/lang/<language>') |
| def set_language(language): |
| session['lang'] = language if language in translations else 'ru' |
| return redirect(request.referrer or url_for('catalog')) |
|
|
|
|
| def download_db_from_hf(specific_file=None, retries=DOWNLOAD_RETRIES, delay=DOWNLOAD_DELAY): |
| if not HF_TOKEN_READ and not HF_TOKEN_WRITE: |
| logging.warning("HF_TOKEN_READ/HF_TOKEN_WRITE not set. Download might fail for private repos.") |
|
|
| token_to_use = HF_TOKEN_READ if HF_TOKEN_READ else HF_TOKEN_WRITE |
|
|
| files_to_download = [specific_file] if specific_file else SYNC_FILES |
| logging.info(f"Attempting download for {files_to_download} from {REPO_ID}...") |
| all_successful = True |
|
|
| for file_name in files_to_download: |
| success = False |
| for attempt in range(retries + 1): |
| try: |
| logging.info(f"Downloading {file_name} (Attempt {attempt + 1}/{retries + 1})...") |
| local_path = hf_hub_download( |
| repo_id=REPO_ID, |
| filename=file_name, |
| repo_type="dataset", |
| token=token_to_use, |
| local_dir=".", |
| local_dir_use_symlinks=False, |
| force_download=True, |
| resume_download=False |
| ) |
| logging.info(f"Successfully downloaded {file_name} to {local_path}.") |
| success = True |
| break |
| except RepositoryNotFoundError: |
| logging.error(f"Repository {REPO_ID} not found. Download cancelled for all files.") |
| return False |
| except HfHubHTTPError as e: |
| if e.response.status_code == 404: |
| logging.warning(f"File {file_name} not found in repo {REPO_ID} (404). Skipping this file.") |
| if attempt == 0 and not os.path.exists(file_name): |
| try: |
| if file_name == DATA_FILE: |
| with open(file_name, 'w', encoding='utf-8') as f: |
| json.dump({'products': [], 'categories': [], 'orders': {}}, f) |
| logging.info(f"Created empty local file {file_name} because it was not found on HF.") |
| except Exception as create_e: |
| logging.error(f"Failed to create empty local file {file_name}: {create_e}") |
| success = False |
| break |
| else: |
| logging.error(f"HTTP error downloading {file_name} (Attempt {attempt + 1}): {e}. Retrying in {delay}s...") |
| except requests.exceptions.RequestException as e: |
| logging.error(f"Network error downloading {file_name} (Attempt {attempt + 1}): {e}. Retrying in {delay}s...") |
| except Exception as e: |
| logging.error(f"Unexpected error downloading {file_name} (Attempt {attempt + 1}): {e}. Retrying in {delay}s...", exc_info=True) |
|
|
| if attempt < retries: |
| time.sleep(delay) |
|
|
| if not success: |
| logging.error(f"Failed to download {file_name} after {retries + 1} attempts.") |
| all_successful = False |
|
|
| logging.info(f"Download process finished. Overall success: {all_successful}") |
| return all_successful |
|
|
| def upload_db_to_hf(specific_file=None): |
| if not HF_TOKEN_WRITE: |
| logging.warning("HF_TOKEN (for writing) not set. Skipping upload to Hugging Face.") |
| return |
| try: |
| api = HfApi() |
| files_to_upload = [specific_file] if specific_file else SYNC_FILES |
| logging.info(f"Starting upload of {files_to_upload} to HF repo {REPO_ID}...") |
|
|
| for file_name in files_to_upload: |
| if os.path.exists(file_name): |
| try: |
| api.upload_file( |
| path_or_fileobj=file_name, |
| path_in_repo=file_name, |
| repo_id=REPO_ID, |
| repo_type="dataset", |
| token=HF_TOKEN_WRITE, |
| commit_message=f"Sync {file_name} {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}" |
| ) |
| logging.info(f"File {file_name} successfully uploaded to Hugging Face.") |
| except Exception as e: |
| logging.error(f"Error uploading file {file_name} to Hugging Face: {e}") |
| else: |
| logging.warning(f"File {file_name} not found locally, skipping upload.") |
| logging.info("Finished uploading files to HF.") |
| except Exception as e: |
| logging.error(f"General error during Hugging Face upload initialization or process: {e}", exc_info=True) |
|
|
| def periodic_backup(): |
| backup_interval = 1800 |
| logging.info(f"Setting up periodic backup every {backup_interval} seconds.") |
| while True: |
| time.sleep(backup_interval) |
| logging.info("Starting periodic backup...") |
| upload_db_to_hf() |
| logging.info("Periodic backup finished.") |
|
|
|
|
|
|
| def load_data(): |
| default_data = {'products': [], 'categories': [], 'orders': {}} |
| try: |
| with open(DATA_FILE, 'r', encoding='utf-8') as file: |
| data = json.load(file) |
| logging.info(f"Local data loaded successfully from {DATA_FILE}") |
| if not isinstance(data, dict): |
| logging.warning(f"Local {DATA_FILE} is not a dictionary. Attempting download.") |
| raise FileNotFoundError |
| if 'products' not in data: data['products'] = [] |
| if 'categories' not in data: data['categories'] = [] |
| if 'orders' not in data: data['orders'] = {} |
| return data |
| except FileNotFoundError: |
| logging.warning(f"Local file {DATA_FILE} not found. Attempting download from HF.") |
|
|
| if download_db_from_hf(specific_file=DATA_FILE): |
| try: |
| with open(DATA_FILE, 'r', encoding='utf-8') as file: |
| data = json.load(file) |
| logging.info(f"Data loaded successfully from {DATA_FILE} after download.") |
| if not isinstance(data, dict): |
| logging.error(f"Downloaded {DATA_FILE} is not a dictionary. Using default.") |
| return default_data |
| if 'products' not in data: data['products'] = [] |
| if 'categories' not in data: data['categories'] = [] |
| if 'orders' not in data: data['orders'] = {} |
| return data |
| except FileNotFoundError: |
| logging.error(f"File {DATA_FILE} still not found even after download reported success. Using default.") |
| return default_data |
| except json.JSONDecodeError: |
| logging.error(f"Error decoding JSON in downloaded {DATA_FILE}. Using default.") |
| return default_data |
| except Exception as e: |
| logging.error(f"Unknown error loading downloaded {DATA_FILE}: {e}.", exc_info=True) |
| return default_data |
| else: |
| logging.error(f"Failed to download {DATA_FILE} from HF after retries. Using empty default data structure.") |
| if not os.path.exists(DATA_FILE): |
| try: |
| with open(DATA_FILE, 'w', encoding='utf-8') as f: |
| json.dump(default_data, f) |
| logging.info(f"Created empty local file {DATA_FILE} after failed download.") |
| except Exception as create_e: |
| logging.error(f"Failed to create empty local file {DATA_FILE}: {create_e}") |
| return default_data |
|
|
| def save_data(data): |
| try: |
| if not isinstance(data, dict): |
| logging.error("Attempted to save invalid data structure (not a dict). Aborting save.") |
| return |
| if 'products' not in data: data['products'] = [] |
| if 'categories' not in data: data['categories'] = [] |
| if 'orders' not in data: data['orders'] = {} |
|
|
| with open(DATA_FILE, 'w', encoding='utf-8') as file: |
| json.dump(data, file, ensure_ascii=False, indent=4) |
| logging.info(f"Data successfully saved to {DATA_FILE}") |
| upload_db_to_hf(specific_file=DATA_FILE) |
| except Exception as e: |
| logging.error(f"Error saving data to {DATA_FILE}: {e}", exc_info=True) |
|
|
|
|
|
|
| CATALOG_TEMPLATE = ''' |
| <!DOCTYPE html> |
| <html lang="{{ lang }}"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>{{ _('site_title') }}</title> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet"> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.2.0/swiper-bundle.min.css"> |
| <style> |
| :root { |
| --bg-color: #1a1a1a; |
| --surface-color: #2b2b2b; |
| --primary-accent: #D99ECB; |
| --primary-accent-hover: #C874B2; |
| --secondary-accent: #6f4e37; |
| --text-color: #f0e6e6; |
| --text-muted: #a09a9a; |
| } |
| * { margin: 0; padding: 0; box-sizing: border-box; } |
| body { font-family: 'Montserrat', sans-serif; background: var(--bg-color); color: var(--text-color); line-height: 1.6; } |
| .container { max-width: 1400px; margin: 0 auto; padding: 20px; } |
| .header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--secondary-accent); } |
| .header h1 { font-size: 1.8rem; font-weight: 700; color: var(--primary-accent); letter-spacing: 1px; } |
| .lang-switcher { display: flex; gap: 10px; } |
| .lang-switcher a { color: var(--text-muted); text-decoration: none; font-weight: 600; padding: 5px 8px; border-radius: 5px; transition: all 0.3s ease; } |
| .lang-switcher a.active, .lang-switcher a:hover { color: var(--primary-accent); background-color: var(--surface-color); } |
| .store-address { padding: 15px; text-align: center; background-color: var(--surface-color); margin: 25px 0; border-radius: 8px; font-size: 1rem; color: var(--text-muted); border: 1px solid var(--secondary-accent); } |
| .filters-container { margin: 25px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; } |
| .search-container { margin: 25px 0; text-align: center; } |
| #search-input { width: 90%; max-width: 600px; padding: 14px 22px; font-size: 1rem; border: 1px solid var(--secondary-accent); border-radius: 30px; outline: none; transition: all 0.3s ease; background-color: var(--surface-color); color: var(--text-color); } |
| #search-input:focus { border-color: var(--primary-accent); box-shadow: 0 0 0 4px rgba(217, 158, 203, 0.2); } |
| .category-filter { padding: 10px 20px; border: 1px solid var(--secondary-accent); border-radius: 30px; background-color: transparent; cursor: pointer; transition: all 0.3s ease; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); } |
| .category-filter.active, .category-filter:hover { background-color: var(--primary-accent); color: var(--bg-color); border-color: var(--primary-accent); } |
| .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 25px; padding: 10px; } |
| @media (min-width: 600px) { .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); } } |
| @media (min-width: 900px) { .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } } |
| .product { background: var(--surface-color); border-radius: 15px; padding: 0; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; height: 100%; border: 1px solid var(--secondary-accent); position: relative; } |
| .product:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); } |
| .product-image { width: 100%; aspect-ratio: 1 / 1.1; background-color: #fff; overflow: hidden; display: flex; justify-content: center; align-items: center; } |
| .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; } |
| .product:hover .product-image img { transform: scale(1.05); } |
| .product-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; } |
| .product h2 { font-size: 1.2rem; font-weight: 600; margin: 0 0 10px 0; color: var(--text-color); } |
| .price-container { margin: 10px 0; } |
| .product-price-line { font-size: 1.3rem; color: var(--primary-accent); font-weight: 700; display: block; } |
| .product-price-piece { font-size: 0.9rem; color: var(--text-muted); display: block; } |
| .product-description { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; } |
| .product-actions { padding: 0 20px 20px 20px; display: flex; flex-direction: column; gap: 10px; } |
| .product-button { display: block; width: 100%; padding: 12px; border: none; border-radius: 8px; background-color: var(--primary-accent); color: var(--bg-color); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-align: center; text-decoration: none; } |
| .product-button:hover { background-color: var(--primary-accent-hover); } |
| .product-button i { margin-right: 8px; } |
| .details-button { background-color: transparent; border: 2px solid var(--primary-accent); color: var(--primary-accent); } |
| .details-button:hover { background-color: var(--primary-accent); color: var(--bg-color); } |
| #cart-button { position: fixed; bottom: 30px; right: 30px; background-color: var(--primary-accent); color: var(--bg-color); border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 1.6rem; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 5px 20px rgba(217, 158, 203, 0.3); transition: all 0.3s ease; z-index: 1000; } |
| #cart-button:hover { transform: scale(1.1); } |
| #cart-button span { position: absolute; top: 0px; right: 0px; background-color: var(--secondary-accent); color: var(--text-color); border-radius: 50%; padding: 3px 7px; font-size: 0.8rem; font-weight: bold; } |
| .modal { display: none; position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); backdrop-filter: blur(8px); overflow-y: auto; } |
| .modal-content { background: var(--surface-color); margin: 5% auto; padding: 30px; border-radius: 15px; width: 90%; max-width: 700px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); animation: slideIn 0.4s ease-out; position: relative; border: 1px solid var(--secondary-accent); } |
| @keyframes slideIn { from { transform: translateY(-40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } |
| .close { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: var(--text-muted); cursor: pointer; transition: color 0.3s; line-height: 1; } |
| .close:hover { color: var(--text-color); } |
| .modal-content h2 { margin-top: 0; margin-bottom: 25px; color: var(--primary-accent); display: flex; align-items: center; gap: 12px;} |
| .cart-item { display: grid; grid-template-columns: auto 1fr auto auto; gap: 20px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--secondary-accent); } |
| .cart-item:last-child { border-bottom: none; } |
| .cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; background-color: #fff; padding: 5px; } |
| .cart-item-details strong { display: block; margin-bottom: 5px; font-size: 1.1rem; } |
| .cart-item-price { font-size: 0.9rem; color: var(--text-muted); } |
| .cart-item-total { font-weight: bold; text-align: right; font-size: 1.1rem; color: var(--primary-accent); } |
| .cart-item-remove { background:none; border:none; color:#c04c4c; cursor:pointer; font-size: 1.5rem; transition: color 0.3s; } |
| .cart-item-remove:hover { color: #a03c3c; } |
| .quantity-input, .color-select { width: 100%; max-width: 200px; padding: 12px; border: 1px solid var(--secondary-accent); border-radius: 8px; font-size: 1rem; margin: 10px 0; box-sizing: border-box; background-color: var(--bg-color); color: var(--text-color); } |
| .cart-summary { margin-top: 25px; text-align: right; border-top: 1px solid var(--secondary-accent); padding-top: 20px; } |
| .cart-summary strong { font-size: 1.4rem; color: var(--primary-accent); } |
| .cart-actions { margin-top: 30px; display: flex; justify-content: space-between; gap: 15px; flex-wrap: wrap; } |
| .cart-actions .product-button { width: auto; flex-grow: 1; } |
| .clear-cart { background-color: var(--text-muted); color: var(--bg-color); } |
| .clear-cart:hover { background-color: #bbb; } |
| .notification { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); background-color: var(--primary-accent); color: var(--bg-color); padding: 12px 25px; border-radius: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 1002; opacity: 0; transition: opacity 0.5s ease; font-size: 1rem; font-weight: 600;} |
| .notification.show { opacity: 1;} |
| .no-results-message { grid-column: 1 / -1; text-align: center; padding: 50px; font-size: 1.2rem; color: var(--text-muted); } |
| .top-product-indicator { position: absolute; top: 12px; right: 12px; background-color: rgba(217, 158, 203, 0.9); color: var(--bg-color); padding: 4px 10px; font-size: 0.8rem; border-radius: 20px; font-weight: bold; z-index: 10; backdrop-filter: blur(3px); } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <div class="header"> |
| <div class="logo-title-container" style="display: flex; align-items: center; gap: 15px;"> |
| <i class="fas fa-gem" style="font-size: 36px; color: var(--primary-accent);"></i> |
| <h1>{{ _('brand_name') }}</h1> |
| </div> |
| <div class="lang-switcher"> |
| <a href="{{ url_for('set_language', language='ru') }}" class="{{ 'active' if lang == 'ru' }}">RU</a> |
| <a href="{{ url_for('set_language', language='kk') }}" class="{{ 'active' if lang == 'kk' }}">KZ</a> |
| </div> |
| </div> |
| |
| <div class="store-address">{{ _('our_address') }} {{ store_address }}</div> |
| |
| <div class="filters-container"> |
| <button class="category-filter active" data-category="all">{{ _('all_categories') }}</button> |
| {% for category in categories %} |
| <button class="category-filter" data-category="{{ category }}">{{ category }}</button> |
| {% endfor %} |
| </div> |
| |
| <div class="search-container"> |
| <input type="text" id="search-input" placeholder="{{ _('search_placeholder') }}"> |
| </div> |
| |
| <div class="products-grid" id="products-grid"> |
| {% for product in products %} |
| <div class="product" |
| data-name="{{ product['name']|lower }}" |
| data-description="{{ product.get('description', '')|lower }}" |
| data-category="{{ product.get('category', 'Без категории') }}"> |
| {% if product.get('is_top', False) %} |
| <span class="top-product-indicator"><i class="fas fa-star"></i> {{ _('top_product') }}</span> |
| {% endif %} |
| <div class="product-image"> |
| {% if product.get('photos') and product['photos']|length > 0 %} |
| <img src="https://huggingface.co/datasets/{{ repo_id }}/resolve/main/photos/{{ product['photos'][0] }}" |
| alt="{{ product['name'] }}" |
| loading="lazy"> |
| {% else %} |
| <img src="https://via.placeholder.com/300x330.png?text=No+Image" alt="No Image" loading="lazy"> |
| {% endif %} |
| </div> |
| <div class="product-info"> |
| <h2>{{ product['name'] }}</h2> |
| <div class="price-container"> |
| <span class="product-price-line">{{ "%.2f"|format(product['price']) }} {{ currency_code }}</span> |
| <span class="product-price-piece"> |
| {% if product.get('items_per_line', 0) > 0 %} |
| {{ "%.2f"|format(product['price'] / product.get('items_per_line')) }} {{ currency_code }} / {{ _('price_per_piece') }} |
| ({{ product.get('items_per_line') }} {{ _('items_in_line') }}) |
| {% endif %} |
| </span> |
| </div> |
| </div> |
| <div class="product-actions"> |
| <button class="product-button details-button" onclick="openModal({{ loop.index0 }})"><i class="fas fa-info-circle"></i> {{ _('details') }}</button> |
| <button class="product-button add-to-cart" onclick="openQuantityModal({{ loop.index0 }})"> |
| <i class="fas fa-cart-plus"></i> {{ _('add_to_cart') }} |
| </button> |
| </div> |
| </div> |
| {% endfor %} |
| {% if not products %} |
| <p class="no-results-message">{{ _('no_products_added') }}</p> |
| {% endif %} |
| </div> |
| </div> |
| |
| <div id="productModal" class="modal"> |
| <div class="modal-content"> |
| <span class="close" onclick="closeModal('productModal')" aria-label="{{ _('close') }}">×</span> |
| <div id="modalContent">{{ _('loading') }}...</div> |
| </div> |
| </div> |
| |
| <div id="quantityModal" class="modal"> |
| <div class="modal-content"> |
| <span class="close" onclick="closeModal('quantityModal')" aria-label="{{ _('close') }}">×</span> |
| <h2>{{ _('specify_quantity_color') }}</h2> |
| <label for="quantityInput">{{ _('quantity') }}</label> |
| <input type="number" id="quantityInput" class="quantity-input" min="1" value="1"> |
| <label for="colorSelect">{{ _('color_variant') }}</label> |
| <select id="colorSelect" class="color-select"></select> |
| <button class="product-button add-to-cart" onclick="confirmAddToCart()"><i class="fas fa-check"></i> {{ _('confirm_add_to_cart') }}</button> |
| </div> |
| </div> |
| |
| <div id="cartModal" class="modal"> |
| <div class="modal-content"> |
| <span class="close" onclick="closeModal('cartModal')" aria-label="{{ _('close') }}">×</span> |
| <h2><i class="fas fa-shopping-cart"></i> {{ _('your_cart') }}</h2> |
| <div id="cartContent"><p style="text-align: center; padding: 20px;">{{ _('cart_is_empty') }}</p></div> |
| <div class="cart-summary"> |
| <strong>{{ _('total') }} <span id="cartTotal">0.00</span> {{ currency_code }}</strong> |
| </div> |
| <div class="cart-actions"> |
| <button class="product-button clear-cart" onclick="clearCart()"> |
| <i class="fas fa-trash"></i> {{ _('clear_cart') }} |
| </button> |
| <button class="product-button formulate-order-button" onclick="formulateOrder()"> |
| <i class="fas fa-file-alt"></i> {{ _('formulate_order') }} |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <button id="cart-button" onclick="openCartModal()" aria-label="{{ _('open_cart') }}"> |
| <i class="fas fa-shopping-cart"></i> |
| <span id="cart-count">0</span> |
| </button> |
| |
| <div id="notification-placeholder"></div> |
| |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.2.0/swiper-bundle.min.js"></script> |
| <script> |
| const products = {{ products|tojson }}; |
| const repoId = '{{ repo_id }}'; |
| const currencyCode = '{{ currency_code }}'; |
| const t = {{ translations[lang]|tojson|safe }}; |
| let selectedProductIndex = null; |
| let cart = JSON.parse(localStorage.getItem('dalarssiCart') || '[]'); |
| |
| function openModal(index) { |
| loadProductDetails(index); |
| const modal = document.getElementById('productModal'); |
| if (modal) { |
| modal.style.display = "block"; |
| document.body.style.overflow = 'hidden'; |
| } |
| } |
| |
| function closeModal(modalId) { |
| const modal = document.getElementById(modalId); |
| if (modal) { |
| modal.style.display = "none"; |
| } |
| const anyModalOpen = document.querySelector('.modal[style*="display: block"]'); |
| if (!anyModalOpen) { |
| document.body.style.overflow = 'auto'; |
| } |
| } |
| |
| function loadProductDetails(index) { |
| const modalContent = document.getElementById('modalContent'); |
| if (!modalContent) return; |
| modalContent.innerHTML = `<p style="text-align:center; padding: 40px;">${t.loading}...</p>`; |
| fetch(`/product/${index}?lang=${'{{lang}}'}`) |
| .then(response => { |
| if (!response.ok) throw new Error(`Error ${response.status}: ${response.statusText}`); |
| return response.text(); |
| }) |
| .then(data => { |
| modalContent.innerHTML = data; |
| initializeSwiper(); |
| }) |
| .catch(error => { |
| console.error('Error loading product details:', error); |
| modalContent.innerHTML = `<p style="color: red; text-align:center; padding: 40px;">${t.product_load_error} ${error.message}</p>`; |
| }); |
| } |
| |
| function initializeSwiper() { |
| const swiperContainer = document.querySelector('#productModal .swiper-container'); |
| if (swiperContainer) { |
| new Swiper(swiperContainer, { |
| slidesPerView: 1, spaceBetween: 20, loop: true, grabCursor: true, |
| pagination: { el: '.swiper-pagination', clickable: true }, |
| navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev' }, |
| zoom: { maxRatio: 3, containerClass: 'swiper-zoom-container' }, |
| autoplay: { delay: 5000, disableOnInteraction: true, }, |
| }); |
| } |
| } |
| |
| function openQuantityModal(index) { |
| selectedProductIndex = index; |
| const product = products[index]; |
| if (!product) { |
| console.error("Product not found for index:", index); |
| alert(t.product_add_error); |
| return; |
| } |
| |
| const colorSelect = document.getElementById('colorSelect'); |
| const colorLabel = document.querySelector('label[for="colorSelect"]'); |
| colorSelect.innerHTML = ''; |
| |
| const validColors = product.colors ? product.colors.filter(c => c && c.trim() !== "") : []; |
| |
| if (validColors.length > 0) { |
| validColors.forEach(color => { |
| const option = document.createElement('option'); |
| option.value = color.trim(); |
| option.text = color.trim(); |
| colorSelect.appendChild(option); |
| }); |
| colorSelect.style.display = 'block'; |
| if(colorLabel) colorLabel.style.display = 'block'; |
| } else { |
| colorSelect.style.display = 'none'; |
| if(colorLabel) colorLabel.style.display = 'none'; |
| } |
| |
| document.getElementById('quantityInput').value = 1; |
| const modal = document.getElementById('quantityModal'); |
| if(modal) { |
| modal.style.display = 'block'; |
| document.body.style.overflow = 'hidden'; |
| } |
| } |
| |
| function confirmAddToCart() { |
| if (selectedProductIndex === null) return; |
| |
| const quantityInput = document.getElementById('quantityInput'); |
| const quantity = parseInt(quantityInput.value); |
| const colorSelect = document.getElementById('colorSelect'); |
| const color = colorSelect.style.display !== 'none' && colorSelect.value ? colorSelect.value : 'N/A'; |
| |
| if (isNaN(quantity) || quantity <= 0) { |
| alert(t.enter_correct_quantity); |
| quantityInput.focus(); |
| return; |
| } |
| |
| const product = products[selectedProductIndex]; |
| if (!product) { |
| alert(t.product_add_error); |
| return; |
| } |
| |
| const cartItemId = `${product.name}-${color}`; |
| const existingItemIndex = cart.findIndex(item => item.id === cartItemId); |
| |
| if (existingItemIndex > -1) { |
| cart[existingItemIndex].quantity += quantity; |
| } else { |
| cart.push({ |
| id: cartItemId, name: product.name, price: product.price, |
| photo: product.photos && product.photos.length > 0 ? product.photos[0] : null, |
| quantity: quantity, color: color, items_per_line: product.items_per_line |
| }); |
| } |
| |
| localStorage.setItem('dalarssiCart', JSON.stringify(cart)); |
| closeModal('quantityModal'); |
| updateCartButton(); |
| showNotification(`${product.name} ${t.product_added_notification}`); |
| } |
| |
| function updateCartButton() { |
| const cartCountElement = document.getElementById('cart-count'); |
| const cartButton = document.getElementById('cart-button'); |
| if (!cartCountElement || !cartButton) return; |
| let totalItems = 0; |
| cart.forEach(item => { totalItems += item.quantity; }); |
| |
| if (totalItems > 0) { |
| cartCountElement.textContent = totalItems; |
| cartButton.style.display = 'flex'; |
| } else { |
| cartCountElement.textContent = '0'; |
| cartButton.style.display = 'none'; |
| } |
| } |
| |
| function openCartModal() { |
| const cartContent = document.getElementById('cartContent'); |
| const cartTotalElement = document.getElementById('cartTotal'); |
| if (!cartContent || !cartTotalElement) return; |
| let total = 0; |
| |
| if (cart.length === 0) { |
| cartContent.innerHTML = `<p style="text-align: center; padding: 20px;">${t.cart_is_empty}</p>`; |
| cartTotalElement.textContent = '0.00'; |
| } else { |
| cartContent.innerHTML = cart.map(item => { |
| const itemTotal = item.price * item.quantity; |
| total += itemTotal; |
| const photoUrl = item.photo |
| ? `https://huggingface.co/datasets/${repoId}/resolve/main/photos/${item.photo}` |
| : 'https://via.placeholder.com/70x70.png?text=N/A'; |
| const colorText = item.color !== 'N/A' ? ` (${item.color})` : ''; |
| const lineInfo = item.items_per_line ? ` (${item.items_per_line} ${t.items_in_line})` : ''; |
| |
| return ` |
| <div class="cart-item"> |
| <img src="${photoUrl}" alt="${item.name}"> |
| <div class="cart-item-details"> |
| <strong>${item.name}${colorText}</strong> |
| <p class="cart-item-price">${item.quantity} × ${item.price.toFixed(2)} ${currencyCode}${lineInfo}</p> |
| </div> |
| <span class="cart-item-total">${itemTotal.toFixed(2)} ${currencyCode}</span> |
| <button class="cart-item-remove" onclick="removeFromCart('${item.id}')" title="Удалить товар">×</button> |
| </div>`; |
| }).join(''); |
| cartTotalElement.textContent = total.toFixed(2); |
| } |
| const modal = document.getElementById('cartModal'); |
| if (modal) { |
| modal.style.display = 'block'; |
| document.body.style.overflow = 'hidden'; |
| } |
| } |
| |
| function removeFromCart(itemId) { |
| cart = cart.filter(item => item.id !== itemId); |
| localStorage.setItem('dalarssiCart', JSON.stringify(cart)); |
| openCartModal(); |
| updateCartButton(); |
| } |
| |
| function clearCart() { |
| if (confirm(t.confirm_clear_cart)) { |
| cart = []; |
| localStorage.removeItem('dalarssiCart'); |
| openCartModal(); |
| updateCartButton(); |
| } |
| } |
| |
| function formulateOrder() { |
| if (cart.length === 0) { |
| alert(t.cart_empty_error); |
| return; |
| } |
| const orderData = { cart: cart }; |
| const formulateButton = document.querySelector('.formulate-order-button'); |
| if (formulateButton) formulateButton.disabled = true; |
| showNotification(t.formulating_order, 5000); |
| fetch('/create_order', { |
| method: 'POST', |
| headers: { 'Content-Type': 'application/json' }, |
| body: JSON.stringify(orderData) |
| }) |
| .then(response => { |
| if (!response.ok) { |
| return response.json().then(err => { throw new Error(err.error || 'Failed to create order'); }); |
| } |
| return response.json(); |
| }) |
| .then(data => { |
| if (data.order_id) { |
| localStorage.removeItem('dalarssiCart'); |
| cart = []; |
| updateCartButton(); |
| closeModal('cartModal'); |
| window.location.href = `/order/${data.order_id}`; |
| } else { |
| throw new Error('Order ID not received from server.'); |
| } |
| }) |
| .catch(error => { |
| console.error('Order formulation error:', error); |
| alert(`${t.order_creation_error} ${error.message}`); |
| if (formulateButton) formulateButton.disabled = false; |
| }); |
| } |
| |
| |
| function filterProducts() { |
| const searchTerm = document.getElementById('search-input').value.toLowerCase().trim(); |
| const activeCategoryButton = document.querySelector('.category-filter.active'); |
| const activeCategory = activeCategoryButton ? activeCategoryButton.dataset.category : 'all'; |
| const grid = document.getElementById('products-grid'); |
| let visibleProducts = 0; |
| |
| const existingNoResults = grid.querySelector('.no-results-message'); |
| if (existingNoResults) existingNoResults.remove(); |
| |
| document.querySelectorAll('.products-grid .product').forEach(productElement => { |
| const name = productElement.getAttribute('data-name'); |
| const description = productElement.getAttribute('data-description'); |
| const category = productElement.getAttribute('data-category'); |
| const matchesSearch = !searchTerm || name.includes(searchTerm) || description.includes(searchTerm); |
| const matchesCategory = activeCategory === 'all' || category === activeCategory; |
| |
| if (matchesSearch && matchesCategory) { |
| productElement.style.display = 'flex'; |
| visibleProducts++; |
| } else { |
| productElement.style.display = 'none'; |
| } |
| }); |
| |
| if (visibleProducts === 0 && products.length > 0) { |
| const p = document.createElement('p'); |
| p.className = 'no-results-message'; |
| p.textContent = t.no_products_found; |
| grid.appendChild(p); |
| } else if (products.length === 0 && !grid.querySelector('.no-results-message')) { |
| const p = document.createElement('p'); |
| p.className = 'no-results-message'; |
| p.textContent = t.no_products_added; |
| grid.appendChild(p); |
| } |
| } |
| |
| function setupFilters() { |
| const searchInput = document.getElementById('search-input'); |
| const categoryFilters = document.querySelectorAll('.category-filter'); |
| if(searchInput) searchInput.addEventListener('input', filterProducts); |
| categoryFilters.forEach(filter => { |
| filter.addEventListener('click', function() { |
| categoryFilters.forEach(f => f.classList.remove('active')); |
| this.classList.add('active'); |
| filterProducts(); |
| }); |
| }); |
| filterProducts(); |
| } |
| |
| function showNotification(message, duration = 3000) { |
| const placeholder = document.getElementById('notification-placeholder'); |
| if (!placeholder) return; |
| const notification = document.createElement('div'); |
| notification.className = 'notification'; |
| notification.textContent = message; |
| placeholder.appendChild(notification); |
| void notification.offsetWidth; |
| notification.classList.add('show'); |
| setTimeout(() => { |
| notification.classList.remove('show'); |
| notification.addEventListener('transitionend', () => notification.remove()); |
| }, duration); |
| } |
| |
| document.addEventListener('DOMContentLoaded', () => { |
| updateCartButton(); |
| setupFilters(); |
| window.addEventListener('click', function(event) { |
| if (event.target.classList.contains('modal')) { |
| closeModal(event.target.id); |
| } |
| }); |
| window.addEventListener('keydown', function(event) { |
| if (event.key === 'Escape') { |
| document.querySelectorAll('.modal[style*="display: block"]').forEach(modal => { |
| closeModal(modal.id); |
| }); |
| } |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
| ''' |
|
|
| PRODUCT_DETAIL_TEMPLATE = ''' |
| <div style="padding: 10px;"> |
| <h2 style="font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; text-align: center; color: var(--primary-accent);">{{ product['name'] }}</h2> |
| <div class="swiper-container" style="max-width: 450px; margin: 0 auto 25px; border-radius: 15px; overflow: hidden; background-color: #fff;"> |
| <div class="swiper-wrapper"> |
| {% if product.get('photos') and product['photos']|length > 0 %} |
| {% for photo in product['photos'] %} |
| <div class="swiper-slide" style="display: flex; justify-content: center; align-items: center; padding: 10px;"> |
| <div class="swiper-zoom-container"> |
| <img src="https://huggingface.co/datasets/{{ repo_id }}/resolve/main/photos/{{ photo }}" |
| alt="{{ product['name'] }} - photo {{ loop.index }}" |
| style="max-width: 100%; max-height: 400px; object-fit: contain; display: block; margin: auto; cursor: grab;"> |
| </div> |
| </div> |
| {% endfor %} |
| {% else %} |
| <div class="swiper-slide" style="display: flex; justify-content: center; align-items: center;"> |
| <img src="https://via.placeholder.com/400x400.png?text=No+Image" alt="No image available" style="max-width: 100%; max-height: 400px; object-fit: contain;"> |
| </div> |
| {% endif %} |
| </div> |
| {% if product.get('photos') and product['photos']|length > 1 %} |
| <div class="swiper-pagination" style="position: relative; bottom: 5px;"></div> |
| <div class="swiper-button-next" style="color: var(--primary-accent);"></div> |
| <div class="swiper-button-prev" style="color: var(--primary-accent);"></div> |
| {% endif %} |
| </div> |
| |
| <div style="margin-top: 20px; font-size: 1rem; line-height: 1.8;"> |
| <p><strong>{{ _('category') }}</strong> {{ product.get('category', _('no_category')) }}</p> |
| <p style="font-size: 1.4rem; font-weight: bold; color: var(--primary-accent);"> |
| <strong>{{ _('price') }}</strong> {{ "%.2f"|format(product['price']) }} {{ currency_code }} |
| </p> |
| {% if product.get('items_per_line', 0) > 0 %} |
| <p style="font-size: 1rem; color: var(--text-muted); margin-top: -10px; margin-bottom: 15px;"> |
| {{ "%.2f"|format(product['price'] / product.get('items_per_line')) }} {{ currency_code }} / {{ _('price_per_piece') }} ({{ product.get('items_per_line') }} {{ _('items_in_line') }}) |
| </p> |
| {% endif %} |
| <p><strong>{{ _('description') }}</strong><br> {{ product.get('description', _('no_description'))|replace('\\n', '<br>')|safe }}</p> |
| {% set colors = product.get('colors', []) %} |
| {% if colors and colors|select('ne', '')|list|length > 0 %} |
| <p><strong>{{ _('available_colors') }}</strong> {{ colors|select('ne', '')|join(', ') }}</p> |
| {% endif %} |
| </div> |
| </div> |
| ''' |
|
|
| ORDER_TEMPLATE = ''' |
| <!DOCTYPE html> |
| <html lang="{{ lang }}"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>{{ _('order_title') }}{{ order.id }} - dalarssi</title> |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet"> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> |
| <style> |
| :root { |
| --bg-color: #1a1a1a; |
| --surface-color: #2b2b2b; |
| --primary-accent: #D99ECB; |
| --primary-accent-hover: #C874B2; |
| --secondary-accent: #6f4e37; |
| --text-color: #f0e6e6; |
| --text-muted: #a09a9a; |
| } |
| body { font-family: 'Montserrat', sans-serif; background: var(--bg-color); color: var(--text-color); padding: 20px; } |
| .container { max-width: 800px; margin: 20px auto; padding: 40px; background: var(--surface-color); border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); border: 1px solid var(--secondary-accent); } |
| h1 { text-align: center; color: var(--primary-accent); margin-bottom: 25px; font-size: 2rem; font-weight: 700; } |
| h2 { color: var(--primary-accent); margin-top: 30px; margin-bottom: 15px; font-size: 1.5rem; border-bottom: 1px solid var(--secondary-accent); padding-bottom: 10px;} |
| .order-meta { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; text-align: center; } |
| .order-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--secondary-accent); } |
| .order-item:last-child { border-bottom: none; } |
| .order-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; background-color: #fff; padding: 5px; border: 1px solid var(--secondary-accent);} |
| .item-details strong { display: block; margin-bottom: 5px; font-size: 1.1rem; color: var(--text-color);} |
| .item-details span { font-size: 0.9rem; color: var(--text-muted); display: block;} |
| .item-total { font-weight: bold; text-align: right; font-size: 1.1rem; color: var(--primary-accent);} |
| .order-summary { margin-top: 30px; padding-top: 20px; border-top: 2px solid var(--primary-accent); text-align: right; } |
| .order-summary p { margin-bottom: 10px; font-size: 1.2rem; } |
| .order-summary strong { font-size: 1.5rem; color: var(--primary-accent); } |
| .customer-info { margin-top: 30px; background-color: var(--bg-color); padding: 25px; border-radius: 8px; border: 1px solid var(--secondary-accent);} |
| .customer-info p { margin-bottom: 8px; font-size: 1rem; } |
| .actions { margin-top: 35px; text-align: center; } |
| .button { padding: 14px 30px; border: none; border-radius: 8px; background-color: var(--primary-accent); color: var(--bg-color); font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; } |
| .button:hover { background-color: var(--primary-accent-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(217, 158, 203, 0.2); } |
| .button i { font-size: 1.3rem; } |
| .catalog-link { display: block; text-align: center; margin-top: 30px; color: var(--primary-accent); text-decoration: none; font-size: 1rem; } |
| .catalog-link:hover { text-decoration: underline; } |
| .not-found { text-align: center; color: #e57373; font-size: 1.2rem; padding: 40px 0;} |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| {% if order %} |
| <h1><i class="fas fa-receipt"></i> {{ _('your_order') }}{{ order.id }}</h1> |
| <p class="order-meta">{{ _('creation_date') }}: {{ order.created_at }}</p> |
| |
| <h2><i class="fas fa-shopping-bag"></i> {{ _('products_in_order') }}</h2> |
| <div id="orderItems"> |
| {% for item in order.cart %} |
| <div class="order-item"> |
| <img src="{{ item.photo_url }}" alt="{{ item.name }}"> |
| <div class="item-details"> |
| <strong>{{ item.name }} {% if item.color != 'N/A' %}({{ item.color }}){% endif %}</strong> |
| <span>{{ item.quantity }} × {{ "%.2f"|format(item.price) }} {{ currency_code }}</span> |
| </div> |
| <div class="item-total"> |
| {{ "%.2f"|format(item.price * item.quantity) }} {{ currency_code }} |
| </div> |
| </div> |
| {% endfor %} |
| </div> |
| |
| <div class="order-summary"> |
| <p><strong>{{ _('total_to_pay') }}: {{ "%.2f"|format(order.total_price) }} {{ currency_code }}</strong></p> |
| </div> |
| |
| <div class="customer-info"> |
| <h2><i class="fas fa-info-circle"></i> {{ _('order_status') }}</h2> |
| <p>{{ _('order_status_desc') }}</p> |
| </div> |
| |
| <div class="actions"> |
| <button class="button" onclick="sendOrderViaWhatsApp()"><i class="fab fa-whatsapp"></i> {{ _('send_order') }}</button> |
| </div> |
| |
| <a href="{{ url_for('catalog') }}" class="catalog-link">{{ _('back_to_catalog') }}</a> |
| |
| <script> |
| function sendOrderViaWhatsApp() { |
| const orderId = '{{ order.id }}'; |
| const orderUrl = `{{ request.url }}`; |
| const whatsappNumber = "+77073479416"; |
| |
| let message = `{{ _('whatsapp_greeting') }}%0A%0A`; |
| message += `*{{ _('whatsapp_order_number') }}* ${orderId}%0A`; |
| message += `*{{ _('whatsapp_order_link') }}* ${encodeURIComponent(orderUrl)}%0A%0A`; |
| message += `{{ _('whatsapp_contact_me') }}`; |
| |
| const whatsappUrl = `https://api.whatsapp.com/send?phone=${whatsappNumber}&text=${message}`; |
| window.open(whatsappUrl, '_blank'); |
| } |
| </script> |
| |
| {% else %} |
| <h1 style="color: #e57373;"><i class="fas fa-exclamation-triangle"></i> {{ _('error') }}</h1> |
| <p class="not-found">{{ _('order_not_found') }}</p> |
| <a href="{{ url_for('catalog') }}" class="catalog-link">{{ _('back_to_catalog') }}</a> |
| {% endif %} |
| </div> |
| </body> |
| </html> |
| ''' |
|
|
| ADMIN_TEMPLATE = ''' |
| <!DOCTYPE html> |
| <html lang="ru"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Админ-панель - dalarssi</title> |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet"> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> |
| <style> |
| body { font-family: 'Poppins', sans-serif; background-color: #f0f2f5; color: #3d3522; padding: 20px; line-height: 1.6; } |
| .container { max-width: 1200px; margin: 0 auto; background-color: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); } |
| .header { padding-bottom: 15px; margin-bottom: 25px; border-bottom: 1px solid #dcd3b8; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;} |
| h1, h2, h3 { font-weight: 600; color: #556b2f; margin-bottom: 15px; } |
| h1 { font-size: 1.6rem; } |
| h2 { font-size: 1.5rem; margin-top: 30px; display: flex; align-items: center; gap: 8px; } |
| h3 { font-size: 1.2rem; color: #8b4513; margin-top: 20px; } |
| .section { margin-bottom: 30px; padding: 20px; background-color: #fcfaf5; border: 1px solid #dcd3b8; border-radius: 8px; } |
| form { margin-bottom: 20px; } |
| label { font-weight: 500; margin-top: 10px; display: block; color: #6f6a5b; font-size: 0.9rem;} |
| input[type="text"], input[type="number"], input[type="password"], input[type="tel"], textarea, select { width: 100%; padding: 10px 12px; margin-top: 5px; border: 1px solid #dcd3b8; border-radius: 6px; font-size: 0.95rem; box-sizing: border-box; transition: border-color 0.3s ease; background-color: #fff; } |
| input:focus, textarea:focus, select:focus { border-color: #556b2f; outline: none; box-shadow: 0 0 0 2px rgba(85, 107, 47, 0.1); } |
| textarea { min-height: 80px; resize: vertical; } |
| input[type="file"] { padding: 8px; background-color: #f5f0e1; cursor: pointer; border: 1px solid #dcd3b8;} |
| input[type="file"]::file-selector-button { padding: 5px 10px; border-radius: 4px; background-color: #e0dace; border: 1px solid #dcd3b8; cursor: pointer; margin-right: 10px;} |
| input[type="checkbox"] { margin-right: 5px; vertical-align: middle; } |
| label.inline-label { display: inline-block; margin-top: 10px; font-weight: normal; } |
| button, .button { padding: 10px 18px; border: none; border-radius: 6px; background-color: #556b2f; color: white; font-weight: 500; cursor: pointer; transition: background-color 0.3s ease, transform 0.1s ease; margin-top: 15px; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 5px; text-decoration: none; line-height: 1.2;} |
| button:hover, .button:hover { background-color: #6b8e23; } |
| button:active, .button:active { transform: scale(0.98); } |
| button[type="submit"] { min-width: 120px; justify-content: center; } |
| .delete-button { background-color: #c04c4c; } |
| .delete-button:hover { background-color: #a03c3c; } |
| .add-button { background-color: #556b2f; } |
| .add-button:hover { background-color: #6b8e23; } |
| .item-list { display: grid; gap: 20px; } |
| .item { background: #fff; padding: 15px 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.07); border: 1px solid #e5d9b7; } |
| .item p { margin: 5px 0; font-size: 0.9rem; color: #6f6a5b; } |
| .item strong { color: #3d3522; } |
| .item .description { font-size: 0.85rem; color: #8b8577; max-height: 60px; overflow: hidden; text-overflow: ellipsis; } |
| .item-actions { margin-top: 15px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; } |
| .item-actions button:not(.delete-button) { background-color: #556b2f; } |
| .item-actions button:not(.delete-button):hover { background-color: #6b8e23; } |
| .edit-form-container { margin-top: 15px; padding: 20px; background: #f5f0e1; border: 1px dashed #dcd3b8; border-radius: 6px; display: none; } |
| details { background-color: #fcfaf5; border: 1px solid #dcd3b8; border-radius: 8px; margin-bottom: 20px; } |
| details > summary { cursor: pointer; font-weight: 600; color: #8b4513; display: block; padding: 15px; border-bottom: 1px solid #dcd3b8; list-style: none; position: relative; } |
| details > summary::after { content: '\\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); transition: transform 0.2s ease; color: #556b2f; } |
| details[open] > summary::after { transform: translateY(-50%) rotate(180deg); } |
| details[open] > summary { border-bottom: 1px solid #dcd3b8; } |
| details .form-content { padding: 20px; } |
| .color-input-group { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; } |
| .color-input-group input { flex-grow: 1; margin: 0; } |
| .remove-color-btn { background-color: #c04c4c; padding: 6px 10px; font-size: 0.8rem; margin-top: 0; line-height: 1; } |
| .remove-color-btn:hover { background-color: #a03c3c; } |
| .add-color-btn { background-color: #b2c2a1; color: #3d3522; } |
| .add-color-btn:hover { background-color: #dcd3b8; } |
| .photo-preview img { max-width: 70px; max-height: 70px; border-radius: 5px; margin: 5px 5px 0 0; border: 1px solid #dcd3b8; object-fit: cover;} |
| .sync-buttons { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; } |
| .download-hf-button { background-color: #8b8577; } |
| .download-hf-button:hover { background-color: #6f6a5b; } |
| .flex-container { display: flex; flex-wrap: wrap; gap: 20px; } |
| .flex-item { flex: 1; min-width: 350px; } |
| .message { padding: 10px 15px; border-radius: 6px; margin-bottom: 15px; font-size: 0.9rem;} |
| .message.success { background-color: #f0fff4; color: #155724; border: 1px solid #c3e6cb;} |
| .message.error { background-color: #fff5f5; color: #721c24; border: 1px solid #f5c6cb;} |
| .message.warning { background-color: #fffaf0; color: #856404; border: 1px solid #ffeeba; } |
| .status-indicator { display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: 0.8rem; font-weight: 500; margin-left: 10px; vertical-align: middle; } |
| .status-indicator.in-stock { background-color: #c6f6d5; color: #2f855a; } |
| .status-indicator.out-of-stock { background-color: #fed7d7; color: #c53030; } |
| .status-indicator.top-product { background-color: #feebc8; color: #9c4221; margin-left: 5px;} |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <div class="header"> |
| <div class="logo-title-container" style="display: flex; align-items: center; gap: 15px;"> |
| <i class="fas fa-gem" style="font-size: 36px; color: #556b2f;"></i> |
| <h1><i class="fas fa-tools"></i> Админ-панель dalarssi</h1> |
| </div> |
| <a href="{{ url_for('catalog') }}" class="button" style="background-color: #6b8e23;"><i class="fas fa-store"></i> Перейти в каталог</a> |
| </div> |
| |
| |
| {% with messages = get_flashed_messages(with_categories=true) %} |
| {% if messages %} |
| {% for category, message in messages %} |
| <div class="message {{ category }}">{{ message }}</div> |
| {% endfor %} |
| {% endif %} |
| {% endwith %} |
| |
| <div class="section"> |
| <h2><i class="fas fa-sync-alt"></i> Синхронизация с Датацентром</h2> |
| <div class="sync-buttons"> |
| <form method="POST" action="{{ url_for('force_upload') }}" style="display: inline;" onsubmit="return confirm('Вы уверены, что хотите принудительно загрузить локальные данные на сервер? Это перезапишет данные на сервере.');"> |
| <button type="submit" class="button" title="Загрузить локальные файлы на Hugging Face"><i class="fas fa-upload"></i> Загрузить БД</button> |
| </form> |
| <form method="POST" action="{{ url_for('force_download') }}" style="display: inline;" onsubmit="return confirm('Вы уверены, что хотите принудительно скачать данные с сервера? Это перезапишет ваши локальные файлы.');"> |
| <button type="submit" class="button download-hf-button" title="Скачать файлы (перезапишет локальные)"><i class="fas fa-download"></i> Скачать БД</button> |
| </form> |
| </div> |
| <p style="font-size: 0.85rem; color: #a0aec0;">Резервное копирование происходит автоматически каждые 30 минут, а также после каждого сохранения данных. Используйте эти кнопки для немедленной синхронизации.</p> |
| </div> |
| |
| <div class="flex-container"> |
| <div class="flex-item"> |
| <div class="section"> |
| <h2><i class="fas fa-tags"></i> Управление категориями</h2> |
| <details> |
| <summary><i class="fas fa-plus-circle"></i> Добавить новую категорию</summary> |
| <div class="form-content"> |
| <form method="POST"> |
| <input type="hidden" name="action" value="add_category"> |
| <label for="add_category_name">Название новой категории:</label> |
| <input type="text" id="add_category_name" name="category_name" required> |
| <button type="submit" class="add-button"><i class="fas fa-plus"></i> Добавить</button> |
| </form> |
| </div> |
| </details> |
| |
| <h3>Существующие категории:</h3> |
| {% if categories %} |
| <div class="item-list"> |
| {% for category in categories %} |
| <div class="item" style="display: flex; justify-content: space-between; align-items: center;"> |
| <span>{{ category }}</span> |
| <form method="POST" style="margin: 0;" onsubmit="return confirm('Вы уверены, что хотите удалить категорию \'{{ category }}\'? Товары этой категории будут помечены как \'Без категории\'.');"> |
| <input type="hidden" name="action" value="delete_category"> |
| <input type="hidden" name="category_name" value="{{ category }}"> |
| <button type="submit" class="delete-button" style="padding: 5px 10px; font-size: 0.8rem; margin: 0;"><i class="fas fa-trash-alt"></i></button> |
| </form> |
| </div> |
| {% endfor %} |
| </div> |
| {% else %} |
| <p>Категорий пока нет.</p> |
| {% endif %} |
| </div> |
| </div> |
| |
| <div class="flex-item"> |
| <div class="section"> |
| <h2><i class="fas fa-info-circle"></i> Информация</h2> |
| <p>Управление пользователями отключено, так как сайт не требует входа.</p> |
| <p>Заказы создаются анонимно и должны быть подтверждены через WhatsApp.</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="section"> |
| <h2><i class="fas fa-box-open"></i> Управление товарами</h2> |
| <details> |
| <summary><i class="fas fa-plus-circle"></i> Добавить новый товар</summary> |
| <div class="form-content"> |
| <form method="POST" enctype="multipart/form-data"> |
| <input type="hidden" name="action" value="add_product"> |
| <label for="add_name">Название товара *:</label> |
| <input type="text" id="add_name" name="name" required> |
| <label for="add_price">Цена за линейку ({{ currency_code }}) *:</label> |
| <input type="number" id="add_price" name="price" step="0.01" min="0" required> |
| <label for="add_items_per_line">Штук в линейке *:</label> |
| <input type="number" id="add_items_per_line" name="items_per_line" min="1" step="1" required> |
| <label for="add_description">Описание:</label> |
| <textarea id="add_description" name="description" rows="4"></textarea> |
| <label for="add_category">Категория:</label> |
| <select id="add_category" name="category"> |
| <option value="Без категории">Без категории</option> |
| {% for category in categories %} |
| <option value="{{ category }}">{{ category }}</option> |
| {% endfor %} |
| </select> |
| <label for="add_photos">Фотографии (до 10 шт.):</label> |
| <input type="file" id="add_photos" name="photos" accept="image/*" multiple> |
| <label>Цвета/Варианты (оставьте пустым, если нет):</label> |
| <div id="add-color-inputs"> |
| <div class="color-input-group"> |
| <input type="text" name="colors" placeholder="Например: Хаки"> |
| <button type="button" class="remove-color-btn" onclick="removeColorInput(this)"><i class="fas fa-times"></i></button> |
| </div> |
| </div> |
| <button type="button" class="button add-color-btn" style="margin-top: 5px;" onclick="addColorInput('add-color-inputs')"><i class="fas fa-palette"></i> Добавить поле для цвета/варианта</button> |
| <br> |
| <div style="margin-top: 15px;"> |
| <input type="checkbox" id="add_in_stock" name="in_stock" checked> |
| <label for="add_in_stock" class="inline-label">В наличии</label> |
| </div> |
| <div style="margin-top: 5px;"> |
| <input type="checkbox" id="add_is_top" name="is_top"> |
| <label for="add_is_top" class="inline-label">Топ товар (показывать наверху)</label> |
| </div> |
| <br> |
| <button type="submit" class="add-button" style="margin-top: 20px;"><i class="fas fa-save"></i> Добавить товар</button> |
| </form> |
| </div> |
| </details> |
| |
| <h3>Список товаров:</h3> |
| {% if products %} |
| <div class="item-list"> |
| {% for product in products %} |
| <div class="item"> |
| <div style="display: flex; gap: 15px; align-items: flex-start;"> |
| <div class="photo-preview" style="flex-shrink: 0;"> |
| {% if product.get('photos') %} |
| <a href="https://huggingface.co/datasets/{{ repo_id }}/resolve/main/photos/{{ product['photos'][0] }}" target="_blank" title="Посмотреть первое фото"> |
| <img src="https://huggingface.co/datasets/{{ repo_id }}/resolve/main/photos/{{ product['photos'][0] }}" alt="Фото"> |
| </a> |
| {% else %} |
| <img src="https://via.placeholder.com/70x70.png?text=N/A" alt="Нет фото"> |
| {% endif %} |
| </div> |
| <div style="flex-grow: 1;"> |
| <h3 style="margin-top: 0; margin-bottom: 5px; color: #3d3522;"> |
| {{ product['name'] }} |
| {% if product.get('in_stock', True) %} |
| <span class="status-indicator in-stock">В наличии</span> |
| {% else %} |
| <span class="status-indicator out-of-stock">Нет в наличии</span> |
| {% endif %} |
| {% if product.get('is_top', False) %} |
| <span class="status-indicator top-product"><i class="fas fa-star"></i> Топ</span> |
| {% endif %} |
| </h3> |
| <p><strong>Категория:</strong> {{ product.get('category', 'Без категории') }}</p> |
| <p><strong>Цена за линейку:</strong> {{ "%.2f"|format(product['price']) }} {{ currency_code }}</p> |
| <p><strong>Шт. в линейке:</strong> {{ product.get('items_per_line', 'N/A') }}</p> |
| <p class="description" title="{{ product.get('description', '') }}"><strong>Описание:</strong> {{ product.get('description', 'N/A')[:150] }}{% if product.get('description', '')|length > 150 %}...{% endif %}</p> |
| {% set colors = product.get('colors', []) %} |
| <p><strong>Цвета/Вар-ты:</strong> {{ colors|select('ne', '')|join(', ') if colors|select('ne', '')|list|length > 0 else 'Нет' }}</p> |
| {% if product.get('photos') and product['photos']|length > 1 %} |
| <p style="font-size: 0.8rem; color: #a0aec0;">(Всего фото: {{ product['photos']|length }})</p> |
| {% endif %} |
| </div> |
| </div> |
| |
| <div class="item-actions"> |
| <button type="button" class="button" onclick="toggleEditForm('edit-form-{{ product.id }}')"><i class="fas fa-edit"></i> Редактировать</button> |
| <form method="POST" style="margin:0;" onsubmit="return confirm('Вы уверены, что хотите удалить товар \'{{ product['name'] }}\'?');"> |
| <input type="hidden" name="action" value="delete_product"> |
| <input type="hidden" name="product_id" value="{{ product.id }}"> |
| <button type="submit" class="delete-button"><i class="fas fa-trash-alt"></i> Удалить</button> |
| </form> |
| </div> |
| |
| <div id="edit-form-{{ product.id }}" class="edit-form-container"> |
| <h4><i class="fas fa-edit"></i> Редактирование: {{ product['name'] }}</h4> |
| <form method="POST" enctype="multipart/form-data"> |
| <input type="hidden" name="action" value="edit_product"> |
| <input type="hidden" name="product_id" value="{{ product.id }}"> |
| <label>Название *:</label> |
| <input type="text" name="name" value="{{ product['name'] }}" required> |
| <label>Цена за линейку ({{ currency_code }}) *:</label> |
| <input type="number" name="price" step="0.01" min="0" value="{{ product['price'] }}" required> |
| <label>Штук в линейке *:</label> |
| <input type="number" name="items_per_line" min="1" step="1" value="{{ product.get('items_per_line', 1) }}" required> |
| <label>Описание:</label> |
| <textarea name="description" rows="4">{{ product.get('description', '') }}</textarea> |
| <label>Категория:</label> |
| <select name="category"> |
| <option value="Без категории" {% if product.get('category', 'Без категории') == 'Без категории' %}selected{% endif %}>Без категории</option> |
| {% for category in categories %} |
| <option value="{{ category }}" {% if product.get('category') == category %}selected{% endif %}>{{ category }}</option> |
| {% endfor %} |
| </select> |
| <label>Заменить фотографии (выберите новые файлы, до 10 шт.):</label> |
| <input type="file" name="photos" accept="image/*" multiple> |
| {% if product.get('photos') %} |
| <p style="font-size: 0.85rem; margin-top: 5px;">Текущие фото:</p> |
| <div class="photo-preview"> |
| {% for photo in product['photos'] %} |
| <img src="https://huggingface.co/datasets/{{ repo_id }}/resolve/main/photos/{{ photo }}" alt="Фото {{ loop.index }}"> |
| {% endfor %} |
| </div> |
| {% endif %} |
| <label>Цвета/Варианты:</label> |
| <div id="edit-color-inputs-{{ product.id }}"> |
| {% set current_colors = product.get('colors', []) %} |
| {% if current_colors and current_colors|select('ne', '')|list|length > 0 %} |
| {% for color in current_colors %} |
| {% if color.strip() %} |
| <div class="color-input-group"> |
| <input type="text" name="colors" value="{{ color }}"> |
| <button type="button" class="remove-color-btn" onclick="removeColorInput(this)"><i class="fas fa-times"></i></button> |
| </div> |
| {% endif %} |
| {% endfor %} |
| {% else %} |
| <div class="color-input-group"> |
| <input type="text" name="colors" placeholder="Например: Койот"> |
| <button type="button" class="remove-color-btn" onclick="removeColorInput(this)"><i class="fas fa-times"></i></button> |
| </div> |
| {% endif %} |
| </div> |
| <button type="button" class="button add-color-btn" style="margin-top: 5px;" onclick="addColorInput('edit-color-inputs-{{ product.id }}')"><i class="fas fa-palette"></i> Добавить поле для цвета</button> |
| <br> |
| <div style="margin-top: 15px;"> |
| <input type="checkbox" id="edit_in_stock_{{ product.id }}" name="in_stock" {% if product.get('in_stock', True) %}checked{% endif %}> |
| <label for="edit_in_stock_{{ product.id }}" class="inline-label">В наличии</label> |
| </div> |
| <div style="margin-top: 5px;"> |
| <input type="checkbox" id="edit_is_top_{{ product.id }}" name="is_top" {% if product.get('is_top', False) %}checked{% endif %}> |
| <label for="edit_is_top_{{ product.id }}" class="inline-label">Топ товар</label> |
| </div> |
| <br> |
| <button type="submit" class="add-button" style="margin-top: 20px;"><i class="fas fa-save"></i> Сохранить изменения</button> |
| </form> |
| </div> |
| </div> |
| {% endfor %} |
| </div> |
| {% else %} |
| <p>Товаров пока нет.</p> |
| {% endif %} |
| </div> |
| |
| </div> |
| |
| <script> |
| function toggleEditForm(formId) { |
| const formContainer = document.getElementById(formId); |
| if (formContainer) { |
| formContainer.style.display = formContainer.style.display === 'none' || formContainer.style.display === '' ? 'block' : 'none'; |
| } |
| } |
| function addColorInput(containerId) { |
| const container = document.getElementById(containerId); |
| if (container) { |
| const newInputGroup = document.createElement('div'); |
| newInputGroup.className = 'color-input-group'; |
| newInputGroup.innerHTML = ` |
| <input type="text" name="colors" placeholder="Новый цвет/вариант"> |
| <button type="button" class="remove-color-btn" onclick="removeColorInput(this)"><i class="fas fa-times"></i></button> |
| `; |
| container.appendChild(newInputGroup); |
| const newInput = newInputGroup.querySelector('input[name="colors"]'); |
| if (newInput) { newInput.focus(); } |
| } |
| } |
| function removeColorInput(button) { |
| const group = button.closest('.color-input-group'); |
| if (group) { |
| const container = group.parentNode; |
| group.remove(); |
| if (container && container.children.length === 0) { |
| const placeholderGroup = document.createElement('div'); |
| placeholderGroup.className = 'color-input-group'; |
| placeholderGroup.innerHTML = ` |
| <input type="text" name="colors" placeholder="Например: Цвет"> |
| <button type="button" class="remove-color-btn" onclick="removeColorInput(this)"><i class="fas fa-times"></i></button> |
| `; |
| container.appendChild(placeholderGroup); |
| } |
| } else { |
| console.warn("Could not find parent .color-input-group for remove button"); |
| } |
| } |
| </script> |
| </body> |
| </html> |
| ''' |
|
|
|
|
|
|
| @app.route('/') |
| def catalog(): |
| data = load_data() |
| all_products = data.get('products', []) |
| categories = sorted(data.get('categories', [])) |
|
|
| products_in_stock = [p for p in all_products if p.get('in_stock', True)] |
| products_sorted = sorted(products_in_stock, key=lambda p: (not p.get('is_top', False), p.get('name', '').lower())) |
|
|
| return render_template_string( |
| CATALOG_TEMPLATE, |
| products=products_sorted, |
| categories=categories, |
| repo_id=REPO_ID, |
| store_address=STORE_ADDRESS, |
| currency_code=CURRENCY_CODE |
| ) |
|
|
| @app.route('/product/<int:index>') |
| def product_detail(index): |
| |
| lang = request.args.get('lang', 'ru') |
| session['lang'] = lang if lang in translations else 'ru' |
|
|
| data = load_data() |
| all_products = data.get('products', []) |
| products_in_stock = [p for p in all_products if p.get('in_stock', True)] |
| products_sorted = sorted(products_in_stock, key=lambda p: (not p.get('is_top', False), p.get('name', '').lower())) |
|
|
| try: |
| product = products_sorted[index] |
| except IndexError: |
| logging.warning(f"Attempted access to non-existent or out-of-stock product with index {index}") |
| return _("product_not_found"), 404 |
|
|
| return render_template_string( |
| PRODUCT_DETAIL_TEMPLATE, |
| product=product, |
| repo_id=REPO_ID, |
| currency_code=CURRENCY_CODE |
| ) |
|
|
| @app.route('/create_order', methods=['POST']) |
| def create_order(): |
| order_data = request.get_json() |
|
|
| if not order_data or 'cart' not in order_data or not order_data['cart']: |
| logging.warning("Create order request missing cart data or cart is empty.") |
| return jsonify({"error": "Корзина пуста или не передана."}), 400 |
|
|
| cart_items = order_data['cart'] |
|
|
| total_price = 0 |
| processed_cart = [] |
| for item in cart_items: |
| if not all(k in item for k in ('name', 'price', 'quantity')): |
| logging.error(f"Invalid cart item structure received: {item}") |
| return jsonify({"error": "Неверный формат товара в корзине."}), 400 |
| try: |
| price = float(item['price']) |
| quantity = int(item['quantity']) |
| if price < 0 or quantity <= 0: |
| raise ValueError("Invalid price or quantity") |
| total_price += price * quantity |
| processed_cart.append({ |
| "name": item['name'], |
| "price": price, |
| "quantity": quantity, |
| "color": item.get('color', 'N/A'), |
| "photo": item.get('photo'), |
| "items_per_line": item.get('items_per_line'), |
| "photo_url": f"https://huggingface.co/datasets/{REPO_ID}/resolve/main/photos/{item['photo']}" if item.get('photo') else "https://via.placeholder.com/70x70.png?text=N/A" |
| }) |
| except (ValueError, TypeError) as e: |
| logging.error(f"Invalid price/quantity in cart item: {item}. Error: {e}") |
| return jsonify({"error": "Неверная цена или количество в товаре."}), 400 |
|
|
| order_id = f"{datetime.now().strftime('%Y%m%d%H%M%S')}-{uuid.uuid4().hex[:6]}" |
| order_timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') |
|
|
| new_order = { |
| "id": order_id, |
| "created_at": order_timestamp, |
| "cart": processed_cart, |
| "total_price": round(total_price, 2), |
| "user_info": None, |
| "status": "new" |
| } |
|
|
| try: |
| data = load_data() |
| if 'orders' not in data or not isinstance(data.get('orders'), dict): |
| data['orders'] = {} |
|
|
| data['orders'][order_id] = new_order |
| save_data(data) |
| logging.info(f"Order {order_id} created successfully (anonymously).") |
| return jsonify({"order_id": order_id}), 201 |
|
|
| except Exception as e: |
| logging.error(f"Failed to save order {order_id}: {e}", exc_info=True) |
| return jsonify({"error": "Ошибка сервера при сохранении заказа."}), 500 |
|
|
| @app.route('/order/<order_id>') |
| def view_order(order_id): |
| data = load_data() |
| order = data.get('orders', {}).get(order_id) |
|
|
| if order: |
| logging.info(f"Displaying order {order_id}") |
| else: |
| logging.warning(f"Order {order_id} not found.") |
|
|
| return render_template_string(ORDER_TEMPLATE, |
| order=order, |
| repo_id=REPO_ID, |
| currency_code=CURRENCY_CODE) |
|
|
| @app.route('/admin', methods=['GET', 'POST']) |
| def admin(): |
| data = load_data() |
| products = data.get('products', []) |
| categories = data.get('categories', []) |
|
|
| needs_save = False |
| for product in products: |
| if 'id' not in product: |
| product['id'] = str(uuid.uuid4()) |
| needs_save = True |
| if needs_save: |
| logging.info("Assigning unique IDs to products that were missing them.") |
| data['products'] = products |
| save_data(data) |
|
|
|
|
| if 'orders' not in data or not isinstance(data.get('orders'), dict): |
| data['orders'] = {} |
|
|
| if request.method == 'POST': |
| action = request.form.get('action') |
| logging.info(f"Admin action received: {action}") |
|
|
| try: |
| if action == 'add_category': |
| category_name = request.form.get('category_name', '').strip() |
| if category_name and category_name not in categories: |
| categories.append(category_name) |
| data['categories'] = categories |
| save_data(data) |
| logging.info(f"Category '{category_name}' added.") |
| flash(f"Категория '{category_name}' успешно добавлена.", 'success') |
| elif not category_name: |
| logging.warning("Attempted to add empty category.") |
| flash("Название категории не может быть пустым.", 'error') |
| else: |
| logging.warning(f"Category '{category_name}' already exists.") |
| flash(f"Категория '{category_name}' уже существует.", 'error') |
|
|
| elif action == 'delete_category': |
| category_to_delete = request.form.get('category_name') |
| if category_to_delete and category_to_delete in categories: |
| categories.remove(category_to_delete) |
| updated_count = 0 |
| for product in products: |
| if product.get('category') == category_to_delete: |
| product['category'] = 'Без категории' |
| updated_count += 1 |
| data['categories'] = categories |
| data['products'] = products |
| save_data(data) |
| logging.info(f"Category '{category_to_delete}' deleted. Updated products: {updated_count}.") |
| flash(f"Категория '{category_to_delete}' удалена. {updated_count} товаров обновлено.", 'success') |
| else: |
| logging.warning(f"Attempted to delete non-existent or empty category: {category_to_delete}") |
| flash(f"Не удалось удалить категорию '{category_to_delete}'.", 'error') |
|
|
| elif action == 'add_product': |
| name = request.form.get('name', '').strip() |
| price_str = request.form.get('price', '').replace(',', '.') |
| items_per_line_str = request.form.get('items_per_line', '1') |
| description = request.form.get('description', '').strip() |
| category = request.form.get('category') |
| photos_files = request.files.getlist('photos') |
| colors = [c.strip() for c in request.form.getlist('colors') if c.strip()] |
| in_stock = 'in_stock' in request.form |
| is_top = 'is_top' in request.form |
|
|
| if not name or not price_str or not items_per_line_str: |
| flash("Название, цена и кол-во в линейке обязательны.", 'error') |
| return redirect(url_for('admin')) |
|
|
| try: |
| price = round(float(price_str), 2) |
| items_per_line = int(items_per_line_str) |
| if price < 0 or items_per_line <= 0: |
| raise ValueError |
| except ValueError: |
| flash("Неверный формат цены или кол-ва в линейке.", 'error') |
| return redirect(url_for('admin')) |
|
|
| photos_list = [] |
| if photos_files and HF_TOKEN_WRITE: |
| uploads_dir = 'uploads_temp' |
| os.makedirs(uploads_dir, exist_ok=True) |
| api = HfApi() |
| photo_limit = 10 |
| uploaded_count = 0 |
| for photo in photos_files: |
| if uploaded_count >= photo_limit: |
| logging.warning(f"Photo limit ({photo_limit}) reached, ignoring remaining photos.") |
| flash(f"Загружено только первые {photo_limit} фото.", "warning") |
| break |
| if photo and photo.filename: |
| try: |
| ext = os.path.splitext(photo.filename)[1].lower() |
| if ext not in ['.jpg', '.jpeg', '.png', '.gif', '.webp']: |
| logging.warning(f"Skipping non-image file upload: {photo.filename}") |
| flash(f"Файл {photo.filename} не является изображением и был пропущен.", "warning") |
| continue |
|
|
| safe_name = secure_filename(name.replace(' ', '_'))[:50] |
| photo_filename = f"{safe_name}_{datetime.now().strftime('%Y%m%d%H%M%S%f')}{ext}" |
| temp_path = os.path.join(uploads_dir, photo_filename) |
| photo.save(temp_path) |
| logging.info(f"Uploading photo {photo_filename} to HF for product {name}...") |
| api.upload_file( |
| path_or_fileobj=temp_path, path_in_repo=f"photos/{photo_filename}", |
| repo_id=REPO_ID, repo_type="dataset", token=HF_TOKEN_WRITE, |
| commit_message=f"Add photo for product {name}" |
| ) |
| photos_list.append(photo_filename) |
| logging.info(f"Photo {photo_filename} uploaded successfully.") |
| os.remove(temp_path) |
| uploaded_count += 1 |
| except Exception as e: |
| logging.error(f"Error uploading photo {photo.filename} to HF: {e}", exc_info=True) |
| flash(f"Ошибка при загрузке фото {photo.filename}.", 'error') |
| if os.path.exists(temp_path): |
| try: os.remove(temp_path) |
| except OSError: pass |
| elif photo and not photo.filename: |
| logging.warning("Received an empty photo file object when adding product.") |
| try: |
| if os.path.exists(uploads_dir) and not os.listdir(uploads_dir): |
| os.rmdir(uploads_dir) |
| except OSError as e: |
| logging.warning(f"Could not remove temporary upload directory {uploads_dir}: {e}") |
| elif not HF_TOKEN_WRITE and photos_files and any(f.filename for f in photos_files): |
| flash("HF_TOKEN (write) не настроен. Фотографии не были загружены.", "warning") |
|
|
|
|
| new_product = { |
| 'id': str(uuid.uuid4()), |
| 'name': name, 'price': price, 'description': description, |
| 'category': category if category in categories else 'Без категории', |
| 'photos': photos_list, 'colors': colors, |
| 'in_stock': in_stock, 'is_top': is_top, |
| 'items_per_line': items_per_line |
| } |
| products.append(new_product) |
| data['products'] = products |
| save_data(data) |
| logging.info(f"Product '{name}' added.") |
| flash(f"Товар '{name}' успешно добавлен.", 'success') |
|
|
| elif action == 'edit_product': |
| product_id = request.form.get('product_id') |
| if not product_id: |
| flash("Ошибка редактирования: ID товара не передан.", 'error') |
| return redirect(url_for('admin')) |
|
|
| product_index = next((i for i, p in enumerate(products) if p.get('id') == product_id), -1) |
|
|
| if product_index == -1: |
| flash(f"Ошибка редактирования: товар с ID '{product_id}' не найден.", 'error') |
| logging.error(f"Invalid product ID '{product_id}' for editing.") |
| return redirect(url_for('admin')) |
|
|
| product_to_edit = products[product_index] |
| original_name = product_to_edit.get('name', 'N/A') |
|
|
| product_to_edit['name'] = request.form.get('name', product_to_edit['name']).strip() |
| price_str = request.form.get('price', str(product_to_edit['price'])).replace(',', '.') |
| items_per_line_str = request.form.get('items_per_line', str(product_to_edit.get('items_per_line', '1'))) |
| product_to_edit['description'] = request.form.get('description', product_to_edit.get('description', '')).strip() |
| category = request.form.get('category') |
| product_to_edit['category'] = category if category in categories else 'Без категории' |
| product_to_edit['colors'] = [c.strip() for c in request.form.getlist('colors') if c.strip()] |
| product_to_edit['in_stock'] = 'in_stock' in request.form |
| product_to_edit['is_top'] = 'is_top' in request.form |
|
|
| try: |
| price = round(float(price_str), 2) |
| items_per_line = int(items_per_line_str) |
| if price < 0 or items_per_line <= 0: raise ValueError |
| product_to_edit['price'] = price |
| product_to_edit['items_per_line'] = items_per_line |
| except ValueError: |
| logging.warning(f"Invalid price/line format during edit of product {original_name}. Not changed.") |
| flash(f"Неверный формат цены/кол-ва для товара '{original_name}'. Не изменено.", 'warning') |
|
|
| photos_files = request.files.getlist('photos') |
| if photos_files and any(f.filename for f in photos_files) and HF_TOKEN_WRITE: |
| uploads_dir = 'uploads_temp' |
| os.makedirs(uploads_dir, exist_ok=True) |
| api = HfApi() |
| new_photos_list = [] |
| photo_limit = 10 |
| uploaded_count = 0 |
| logging.info(f"Uploading new photos for product {product_to_edit['name']}...") |
| for photo in photos_files: |
| if uploaded_count >= photo_limit: |
| break |
| if photo and photo.filename: |
| try: |
| ext = os.path.splitext(photo.filename)[1].lower() |
| if ext not in ['.jpg', '.jpeg', '.png', '.gif', '.webp']: continue |
|
|
| safe_name = secure_filename(product_to_edit['name'].replace(' ', '_'))[:50] |
| photo_filename = f"{safe_name}_{datetime.now().strftime('%Y%m%d%H%M%S%f')}{ext}" |
| temp_path = os.path.join(uploads_dir, photo_filename) |
| photo.save(temp_path) |
| api.upload_file(path_or_fileobj=temp_path, path_in_repo=f"photos/{photo_filename}", |
| repo_id=REPO_ID, repo_type="dataset", token=HF_TOKEN_WRITE, |
| commit_message=f"Update photo for product {product_to_edit['name']}") |
| new_photos_list.append(photo_filename) |
| os.remove(temp_path) |
| uploaded_count += 1 |
| except Exception as e: |
| logging.error(f"Error uploading new photo {photo.filename}: {e}", exc_info=True) |
| if os.path.exists(temp_path): |
| try: os.remove(temp_path) |
| except OSError: pass |
| try: |
| if os.path.exists(uploads_dir) and not os.listdir(uploads_dir): |
| os.rmdir(uploads_dir) |
| except OSError as e: |
| logging.warning(f"Could not remove temporary upload directory {uploads_dir}: {e}") |
|
|
| if new_photos_list: |
| old_photos = product_to_edit.get('photos', []) |
| if old_photos: |
| try: |
| api.delete_files( |
| repo_id=REPO_ID, paths_in_repo=[f"photos/{p}" for p in old_photos], |
| repo_type="dataset", token=HF_TOKEN_WRITE, |
| commit_message=f"Delete old photos for product {product_to_edit['name']}" |
| ) |
| except Exception as e: |
| logging.error(f"Error deleting old photos {old_photos} from HF: {e}", exc_info=True) |
| product_to_edit['photos'] = new_photos_list |
| flash("Фотографии товара успешно обновлены.", "success") |
|
|
| products[product_index] = product_to_edit |
| data['products'] = products |
| save_data(data) |
| logging.info(f"Product '{original_name}' (ID {product_id}) updated to '{product_to_edit['name']}'.") |
| flash(f"Товар '{product_to_edit['name']}' успешно обновлен.", 'success') |
|
|
| elif action == 'delete_product': |
| product_id = request.form.get('product_id') |
| product_to_delete = next((p for p in products if p.get('id') == product_id), None) |
|
|
| if product_to_delete: |
| product_name = product_to_delete.get('name', 'N/A') |
| products.remove(product_to_delete) |
|
|
| photos_to_delete = product_to_delete.get('photos', []) |
| if photos_to_delete and HF_TOKEN_WRITE: |
| try: |
| api = HfApi() |
| api.delete_files( |
| repo_id=REPO_ID, paths_in_repo=[f"photos/{p}" for p in photos_to_delete], |
| repo_type="dataset", token=HF_TOKEN_WRITE, |
| commit_message=f"Delete photos for deleted product {product_name}" |
| ) |
| except Exception as e: |
| logging.error(f"Error deleting photos {photos_to_delete} from HF: {e}", exc_info=True) |
|
|
| data['products'] = products |
| save_data(data) |
| logging.info(f"Product '{product_name}' (ID {product_id}) deleted.") |
| flash(f"Товар '{product_name}' удален.", 'success') |
| else: |
| flash(f"Ошибка удаления: неверный ID товара '{product_id}'.", 'error') |
|
|
| else: |
| flash(f"Неизвестное действие: {action}", 'warning') |
|
|
| return redirect(url_for('admin')) |
|
|
| except Exception as e: |
| logging.error(f"Error processing admin action '{action}': {e}", exc_info=True) |
| flash(f"Произошла внутренняя ошибка при выполнении действия '{action}'.", 'error') |
| return redirect(url_for('admin')) |
|
|
|
|
| current_data = load_data() |
| display_products = sorted(current_data.get('products', []), key=lambda p: p.get('name', '').lower()) |
| display_categories = sorted(current_data.get('categories', [])) |
|
|
| return render_template_string( |
| ADMIN_TEMPLATE, |
| products=display_products, |
| categories=display_categories, |
| repo_id=REPO_ID, |
| currency_code=CURRENCY_CODE |
| ) |
|
|
| @app.route('/force_upload', methods=['POST']) |
| def force_upload(): |
| logging.info("Forcing upload to Hugging Face...") |
| try: |
| upload_db_to_hf() |
| flash("Данные успешно загружены на Hugging Face.", 'success') |
| except Exception as e: |
| logging.error(f"Error during forced upload: {e}", exc_info=True) |
| flash(f"Ошибка при загрузке на Hugging Face: {e}", 'error') |
| return redirect(url_for('admin')) |
|
|
| @app.route('/force_download', methods=['POST']) |
| def force_download(): |
| logging.info("Forcing download from Hugging Face...") |
| try: |
| if download_db_from_hf(): |
| flash("Данные успешно скачаны с Hugging Face. Локальные файлы обновлены.", 'success') |
| load_data() |
| else: |
| flash("Не удалось скачать данные с Hugging Face после нескольких попыток.", 'error') |
| except Exception as e: |
| logging.error(f"Error during forced download: {e}", exc_info=True) |
| flash(f"Ошибка при скачивании с Hugging Face: {e}", 'error') |
| return redirect(url_for('admin')) |
|
|
|
|
|
|
| if __name__ == '__main__': |
| logging.info("Application starting up. Performing initial data load/download...") |
| download_db_from_hf() |
| load_data() |
| logging.info("Initial data load complete.") |
|
|
| if HF_TOKEN_WRITE: |
| backup_thread = threading.Thread(target=periodic_backup, daemon=True) |
| backup_thread.start() |
| logging.info("Periodic backup thread started.") |
| else: |
| logging.warning("Periodic backup will NOT run (HF_TOKEN for writing not set).") |
|
|
| port = int(os.environ.get('PORT', 7860)) |
| logging.info(f"Starting Flask app on host 0.0.0.0 and port {port}") |
| app.run(debug=False, host='0.0.0.0', port=port) |
|
|