import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const usedNames = new Set(); const usedEmails = new Set(); const usedNumbers = new Set(); const usedSlugs = new Set(); const usedCurrencies = new Set(); const usedLocales = new Set(); export function generateName() { const adjectives = [ "Cool", "Smart", "Fast", "Sleek", "Innovative", "Shiny", "Bold", "Elegant", "Epic", "Mystic", "Brilliant", "Luminous", ]; const nouns = [ "Star", "Vision", "Echo", "Spark", "Horizon", "Nova", "Shadow", "Wave", "Pulse", "Vortex", "Zenith", "Element", ]; let name = ""; do { const adj = adjectives[Math.floor(Math.random() * adjectives.length)]; const noun = nouns[Math.floor(Math.random() * nouns.length)]; name = `${adj} ${noun}`; } while (usedNames.has(name)); usedNames.add(name); return name; } export function generateFirstName() { const firstNames = [ "James", "Emma", "Liam", "Olivia", "Noah", "Ava", "William", "Sophia", "Benjamin", "Isabella", "Lucas", "Mia", ]; return firstNames[Math.floor(Math.random() * firstNames.length)]; } export function generateLastName() { const lastNames = [ "Smith", "Johnson", "Brown", "Williams", "Jones", "Garcia", "Miller", "Davis", "Rodriguez", "Martinez", "Hernandez", "Lopez", ]; return lastNames[Math.floor(Math.random() * lastNames.length)]; } export function generateFullName() { return `${generateFirstName()} ${generateLastName()}`; } export function generateEmail() { const adjectives = [ "Cool", "Smart", "Fast", "Sleek", "Innovative", "Shiny", "Bold", "Elegant", "Epic", "Mystic", "Brilliant", "Luminous", ]; const nouns = [ "Star", "Vision", "Echo", "Spark", "Horizon", "Nova", "Shadow", "Wave", "Pulse", "Vortex", "Zenith", "Element", ]; let email = ""; do { const adj = adjectives[Math.floor(Math.random() * adjectives.length)]; const noun = nouns[Math.floor(Math.random() * nouns.length)]; const number = Math.floor(1000 + Math.random() * 9000); email = `${adj}${noun}${number}@example.com`.toLowerCase(); } while (usedEmails.has(email)); usedEmails.add(email); return email; } export function generatePhoneNumber() { let phoneNumber; do { phoneNumber = Math.floor(6000000000 + Math.random() * 4000000000); } while (usedNumbers.has(phoneNumber)); usedNumbers.add(phoneNumber); return `${phoneNumber}`; } export function generateSKU() { const letters = Array.from({ length: 3 }, () => String.fromCharCode(65 + Math.floor(Math.random() * 26)) ).join(""); const numbers = Math.floor(1000 + Math.random() * 9000); return `${letters}${numbers}`; } export function generateSlug(delimiter = "-") { let slug; do { const name = generateName(); const randomStr = Math.random().toString(36).substring(2, 8); slug = `${name .toLowerCase() .replace(/\s+/g, delimiter)}${delimiter}${randomStr}`; } while (usedSlugs.has(slug)); usedSlugs.add(slug); return slug; } export function generateDescription(length = 255) { const phrases = [ "An innovative and sleek design.", "Built for speed and efficiency.", "Experience the future today.", "A perfect blend of style and power.", "Engineered to perfection.", "Designed for those who dream big.", "Unleash creativity with this masterpiece.", "A game-changer in every way.", "Smart, fast, and reliable.", "The perfect companion for your journey.", "Crafted with precision and excellence.", "Innovation that redefines possibilities.", "Enhancing your experience like never before.", "Where technology meets elegance.", "Power, performance, and perfection combined.", "Redefining the way you experience the world.", "A masterpiece of engineering and design.", "Unmatched quality and exceptional performance.", "Designed to elevate your lifestyle.", "Beyond expectations, beyond limits.", ]; let description = ""; while (description.length < length) { let phrase = phrases[Math.floor(Math.random() * phrases.length)]; if (description.length + phrase.length <= length) { description += (description ? " " : "") + phrase; } else { description += " " + phrase.substring(0, length - description.length); break; } } return description.trim(); } /** * Generates a random numeric string with specified length or within a numeric range. * * @param {number} [length=10] - The length of the random string (used only when min and max are undefined) * @param {number|null|undefined} [min=undefined] - Minimum value (inclusive) when generating a number in range * @param {number|null|undefined} [max=undefined] - Maximum value (inclusive) when generating a number in range * @returns {string} - Random numeric string */ export function generateRandomNumericString(length: number = 10, min?: number | null, max?: number | null): string { // Generate a number within range if (min !== null && min !== undefined && max !== null && max !== undefined) { // Input validation if (!Number.isInteger(min) || !Number.isInteger(max)) { throw new Error("Min and max must be integers when provided."); } if (min > max) { throw new Error("Min value cannot be greater than max value."); } // Generate a random number within the range and convert to string return Math.floor(Math.random() * (max - min + 1) + min).toString(); } // Generate a random string of specified length if (!Number.isInteger(length) || length <= 0) { throw new Error("Length must be a positive integer."); } // More efficient method for generating random digits let result = ''; for (let i = 0; i < length; i++) { result += Math.floor(Math.random() * 10); } // Ensure first character is not zero for a consistent length string if (length > 1 && result[0] === '0') { result = String(1 + Math.floor(Math.random() * 9)) + result.substring(1); } return result; } export function generateHostname() { const words = [ "tech", "cloud", "byte", "stream", "nexus", "core", "pulse", "data", "sync", "wave", "hub", "zone", ]; const domains = [".com", ".net", ".io", ".ai", ".xyz", ".co"]; const part1 = words[Math.floor(Math.random() * words.length)]; const part2 = words[Math.floor(Math.random() * words.length)]; const domain = domains[Math.floor(Math.random() * domains.length)]; return `https://${part1}${part2}${domain}`; } export function generateCurrency() { const currencies = [ { name: "US Dollar", code: "USD", symbol: "$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Euro", code: "EUR", symbol: "€", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "British Pound", code: "GBP", symbol: "£", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Japanese Yen", code: "JPY", symbol: "¥", decimalDigits: "0", groupSeparator: ",", decimalSeparator: ".", }, { name: "Australian Dollar", code: "AUD", symbol: "A$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Canadian Dollar", code: "CAD", symbol: "C$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Swiss Franc", code: "CHF", symbol: "CHF", decimalDigits: "2", groupSeparator: "'", decimalSeparator: ".", }, { name: "Chinese Yuan", code: "CNY", symbol: "¥", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Indian Rupee", code: "INR", symbol: "₹", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "South Korean Won", code: "KRW", symbol: "₩", decimalDigits: "0", groupSeparator: ",", decimalSeparator: ".", }, { name: "Mexican Peso", code: "MXN", symbol: "MX$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Russian Ruble", code: "RUB", symbol: "₽", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Brazilian Real", code: "BRL", symbol: "R$", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "South African Rand", code: "ZAR", symbol: "R", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "New Zealand Dollar", code: "NZD", symbol: "NZ$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Singapore Dollar", code: "SGD", symbol: "S$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Hong Kong Dollar", code: "HKD", symbol: "HK$", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Norwegian Krone", code: "NOK", symbol: "kr", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Swedish Krona", code: "SEK", symbol: "kr", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Danish Krone", code: "DKK", symbol: "kr", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "Polish Złoty", code: "PLN", symbol: "zł", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Turkish Lira", code: "TRY", symbol: "₺", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "Thai Baht", code: "THB", symbol: "฿", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Indonesian Rupiah", code: "IDR", symbol: "Rp", decimalDigits: "0", groupSeparator: ".", decimalSeparator: ",", }, { name: "Malaysian Ringgit", code: "MYR", symbol: "RM", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Philippine Peso", code: "PHP", symbol: "₱", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Israeli Shekel", code: "ILS", symbol: "₪", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Saudi Riyal", code: "SAR", symbol: "﷼", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "UAE Dirham", code: "AED", symbol: "د.إ", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Czech Koruna", code: "CZK", symbol: "Kč", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Hungarian Forint", code: "HUF", symbol: "Ft", decimalDigits: "0", groupSeparator: " ", decimalSeparator: ",", }, { name: "Romanian Leu", code: "RON", symbol: "lei", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "Bulgarian Lev", code: "BGN", symbol: "лв", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Croatian Kuna", code: "HRK", symbol: "kn", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "Icelandic Króna", code: "ISK", symbol: "kr", decimalDigits: "0", groupSeparator: ".", decimalSeparator: ",", }, { name: "Ukrainian Hryvnia", code: "UAH", symbol: "₴", decimalDigits: "2", groupSeparator: " ", decimalSeparator: ",", }, { name: "Pakistani Rupee", code: "PKR", symbol: "₨", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Bangladeshi Taka", code: "BDT", symbol: "৳", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Sri Lankan Rupee", code: "LKR", symbol: "Rs", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Nepalese Rupee", code: "NPR", symbol: "₨", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Kuwaiti Dinar", code: "KWD", symbol: "د.ك", decimalDigits: "3", groupSeparator: ",", decimalSeparator: ".", }, { name: "Qatari Riyal", code: "QAR", symbol: "ر.ق", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Omani Rial", code: "OMR", symbol: "ر.ع.", decimalDigits: "3", groupSeparator: ",", decimalSeparator: ".", }, { name: "Bahraini Dinar", code: "BHD", symbol: "ب.د", decimalDigits: "3", groupSeparator: ",", decimalSeparator: ".", }, { name: "Argentine Peso", code: "ARS", symbol: "$", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, { name: "Chilean Peso", code: "CLP", symbol: "$", decimalDigits: "0", groupSeparator: ".", decimalSeparator: ",", }, { name: "Colombian Peso", code: "COP", symbol: "$", decimalDigits: "0", groupSeparator: ".", decimalSeparator: ",", }, { name: "Peruvian Sol", code: "PEN", symbol: "S/.", decimalDigits: "2", groupSeparator: ",", decimalSeparator: ".", }, { name: "Venezuelan Bolívar", code: "VES", symbol: "Bs.", decimalDigits: "2", groupSeparator: ".", decimalSeparator: ",", }, ]; if (usedCurrencies.size >= currencies.length) { throw new Error("All currencies have been used."); } let currency; do { const randomIndex = Math.floor(Math.random() * currencies.length); currency = currencies[randomIndex]; } while (usedCurrencies.has(currency.code)); usedCurrencies.add(currency.code); return currency; } export function generateLocale() { const locales = [ { name: "English", code: "en", direction: "LTR" }, { name: "French", code: "fr", direction: "LTR" }, { name: "Spanish", code: "es", direction: "LTR" }, { name: "Arabic", code: "ar", direction: "RTL" }, { name: "Hebrew", code: "he", direction: "RTL" }, { name: "Japanese", code: "ja", direction: "LTR" }, { name: "Chinese", code: "zh_CN", direction: "LTR" }, { name: "Hindi", code: "hi_IN", direction: "LTR" }, { name: "Bengali", code: "bn", direction: "LTR" }, { name: "German", code: "de", direction: "LTR" }, { name: "Persian", code: "fa", direction: "LTR" }, { name: "Italian", code: "it", direction: "LTR" }, { name: "Dutch", code: "nl", direction: "LTR" }, ]; if (usedLocales.size >= locales.length) { throw new Error("All locales have been used."); } let locale; do { const randomIndex = Math.floor(Math.random() * locales.length); locale = locales[randomIndex]; } while (usedLocales.has(locale.code)); usedLocales.add(locale.code); return locale; } export function randomElement(array) { return array[Math.floor(Math.random() * array.length)]; } export function getImageFile( directory = path.resolve(__dirname, "../data/images/") ) { if (!fs.existsSync(directory)) { throw new Error(`Directory does not exist: ${directory}`); } const files = fs.readdirSync(directory); const imageFiles = files.filter((file) => /\.(gif|jpeg|jpg|png|svg|webp)$/i.test(file) ); if (!imageFiles.length) { throw new Error("No image files found in the directory."); } const randomIndex = Math.floor(Math.random() * imageFiles.length); return path.join(directory, imageFiles[randomIndex]); } export function generateRandomDateTime(end = new Date(new Date().setFullYear(new Date().getFullYear() + 10))) { const start = new Date(); const date = new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime())); const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, '0'); const day = String(date.getDate()).padStart(2, '0'); const hours = String(date.getHours()).padStart(2, '0'); const minutes = String(date.getMinutes()).padStart(2, '0'); const seconds = String(date.getSeconds()).padStart(2, '0'); return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; } export function generateLocation() { const location = [ "New York", "Los Angeles", "Chicago", "Houston", "Phoenix", "Philadelphia", "San Antonio", "San Diego", "Dallas", "San Jose", "Austin", "Jacksonville", "San Francisco", "Indianapolis", "Columbus", "Fort Worth", ]; return location[Math.floor(Math.random() * location.length)]; } export function generateRandomDate( start: Date = new Date(), end: Date = new Date(new Date().getFullYear(), 11, 31) ): string { /** * Generate a random timestamp between start and end */ const timestamp = start.getTime() + Math.random() * (end.getTime() - start.getTime()); const randomDate = new Date(timestamp); /** * Format to YYYY-MM-DD */ const year = randomDate.getFullYear(); const month = String(randomDate.getMonth() + 1).padStart(2, "0"); const day = String(randomDate.getDate()).padStart(2, "0"); return `${year}-${month}-${day}`; }