import { Router, Response, Request } from 'express';
import { AboutPage } from '../models/index.js';
import { authenticate, requireRole, AuthRequest } from '../middleware/auth.js';

const router = Router();

const defaultAbout = {
  heroTitle: { en: 'About Golf Lifestyle Group', zh: '關於高球品味集團' },
  heroSubtitle: {
    en: 'Premium golf services and lifestyle experiences in Hong Kong',
    zh: '香港優質高爾夫服務及品味生活體驗',
  },
  introTitle: { en: 'Group Mission and Business Objectives', zh: '集團宗旨及業務目標' },
  introContent: {
    en: '<p>Our group strives to create a premium golf consumption platform and activities for members, offering a range of golf sports, travel, and associated products and services.</p><p>Our goal is to build a top-tier golf lifestyle membership platform in the Hong Kong/Greater Bay Area region. Additionally, we aim to develop innovative financial technology, insurance technology, wealth technology, investment technology, health technology, and other related product and service platforms.</p><p>We are dedicated to establishing ourselves as a premier golf service and lifestyle brand, committed to providing partners with a comprehensive golf lifestyle service platform.</p>',
    zh: '<p>本集團致力為會員打造優質的高爾夫消費平台及活動，提供涵蓋高爾夫運動、旅遊及相關產品與服務。</p><p>我們的目標是在香港及大灣區建立頂級高爾夫生活會員平台。此外，我們亦致力發展創新的金融科技、保險科技、財富科技、投資科技、健康科技及其他相關產品與服務平台。</p><p>我們致力將自身打造為頂尖的高爾夫服務及生活品牌，為合作夥伴提供全面的高爾夫生活服務平台。</p>',
  },
  contentSections: [
    {
      label: { en: 'Hong Kong Golf Industry Experience', zh: '香港高爾夫行業經驗' },
      title: { en: 'Pioneering Golf Services Since 2003', zh: '自2003年開創高爾夫服務先河' },
      content: {
        en: '<ul><li>Launched the first Golf ID Credit Card in Hong Kong (2003) in partnership with major banks</li><li>Introduced the Golf ID Debit Card (2005), broadening accessibility to golf benefits</li><li>Established professional relationships with leading golf clubs and resorts across the Greater Bay Area</li><li>Built a comprehensive golf membership platform serving thousands of active members</li><li>Developed strategic partnerships with international golf brands and tour operators</li></ul>',
        zh: '<ul><li>於2003年與主要銀行合作推出香港首張高球證信用卡</li><li>於2005年推出高球證扣賬卡，擴大高爾夫福利的覆蓋範圍</li><li>與大灣區頂級高爾夫球會及度假村建立專業合作關係</li><li>建立全面的高爾夫會員平台，服務數千名活躍會員</li><li>與國際高爾夫品牌及旅遊營運商建立戰略合作夥伴關係</li></ul>',
      },
      imagePosition: 'right',
    },
    {
      label: { en: 'Tours & Experiences', zh: '旅遊及體驗' },
      title: { en: 'Premium Golf Tours Worldwide', zh: '全球優質高爾夫旅遊' },
      content: {
        en: '<p>Golf Lifestyle Group organizes exclusive golf tours and travel experiences to premier destinations across Asia, Europe, and beyond. Our curated itineraries combine world-class golf courses with luxury accommodations and cultural experiences.</p><p>From weekend getaways to extended international tours, we cater to golfers of all skill levels, ensuring every trip delivers unforgettable moments on and off the course.</p>',
        zh: '<p>高球品味集團精心策劃獨家高爾夫旅遊體驗，帶領會員前往亞洲、歐洲及世界各地的頂級目的地。我們的行程結合世界級高爾夫球場、豪華住宿及文化體驗。</p><p>從週末短途遊到國際長途旅行，我們為各級高爾夫球手提供服務，確保每次旅程都帶來難忘的球場內外體驗。</p>',
      },
      imagePosition: 'left',
    },
    {
      label: { en: 'Group Events Organizer', zh: '團體活動策劃' },
      title: { en: 'Corporate & Group Golf Events', zh: '企業及團體高爾夫活動' },
      content: {
        en: '<ul><li>Full-service corporate golf outing planning and execution</li><li>Customized tournament organization for companies and associations</li><li>Exclusive membership services for corporate clients</li><li>Team building events combining golf with networking opportunities</li><li>Annual charity tournaments and industry events</li><li>Comprehensive event management including catering, prizes, and media coverage</li></ul>',
        zh: '<ul><li>全方位企業高爾夫活動策劃及執行</li><li>為企業及協會度身訂造錦標賽</li><li>為企業客戶提供專屬會員服務</li><li>結合高爾夫與社交機會的團隊建設活動</li><li>年度慈善錦標賽及行業活動</li><li>全面活動管理，包括餐飲、獎品及媒體報導</li></ul>',
      },
      imagePosition: 'right',
    },
  ],
  galleryImages: [],
  ctaTitle: { en: 'Join Golf Lifestyle Group', zh: '加入高球品味集團' },
  ctaDescription: {
    en: 'Register for Golf ID now and enjoy exclusive member benefits',
    zh: '立即登記高球証，享受獨家會員優惠',
  },
  ctaButtonText: { en: 'Learn about Golf ID', zh: '了解高球証' },
  ctaButtonLink: '/golf-id',
};

router.get('/', async (req: Request, res: Response): Promise<void> => {
  try {
    let about = await AboutPage.findOne();

    if (!about) {
      about = new AboutPage(defaultAbout);
      await about.save();
    }

    res.json(about);
  } catch (error) {
    res.status(500).json({ error: 'Server error' });
  }
});

router.put(
  '/',
  authenticate,
  requireRole('admin'),
  async (req: AuthRequest, res: Response): Promise<void> => {
    try {
      let about = await AboutPage.findOne();

      if (!about) {
        about = new AboutPage(req.body);
      } else {
        Object.assign(about, req.body);
      }

      await about.save();
      res.json(about);
    } catch (error) {
      res.status(500).json({ error: 'Server error' });
    }
  }
);

export default router;
