import React, { useContext, useEffect, useState } from 'react'; import { Table, Space, Button, Typography, Alert, Input, Form, message } from 'antd'; import dynamic from 'next/dynamic'; import { ServerStatusContext } from '../../../../utils/server-status-context'; import { fetchData, UPDATE_STREAM_KEYS } from '../../../../utils/apis'; import { PASSWORD_COMPLEXITY_RULES, REGEX_PASSWORD } from '../../../../utils/config-constants'; const { Paragraph } = Typography; // Lazy loaded components const DeleteOutlined = dynamic(() => import('@ant-design/icons/DeleteOutlined'), { ssr: false, }); const EyeOutlined = dynamic(() => import('@ant-design/icons/EyeOutlined'), { ssr: false, }); const PlusOutlined = dynamic(() => import('@ant-design/icons/PlusOutlined'), { ssr: false, }); const saveKeys = async (keys, setError) => { try { await fetchData(UPDATE_STREAM_KEYS, { method: 'POST', auth: true, data: { value: keys }, }); } catch (error) { console.error(error); setError(error.message); } }; export const generateRndKey = () => { let defaultKey = ''; let isValidStreamKey = false; const streamKeyRegex = /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[!@#$^&*]).{8,192}$/; const s = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$^&*'; while (!isValidStreamKey) { const temp = Array.apply(20, Array(30)) .map(() => s.charAt(Math.floor(Math.random() * s.length))) .join(''); if (streamKeyRegex.test(temp)) { isValidStreamKey = true; defaultKey = temp; } } return defaultKey; }; const AddKeyForm = ({ setShowAddKeyForm, setFieldInConfigState, streamKeys, setError }) => { const [hasChanged, setHasChanged] = useState(true); const [form] = Form.useForm(); const { Item } = Form; // Password Complexity rules const passwordComplexityRules = []; useEffect(() => { PASSWORD_COMPLEXITY_RULES.forEach(element => { passwordComplexityRules.push(element); }); }, []); const handleAddKey = (newkey: any) => { const updatedKeys = [...streamKeys, newkey]; setFieldInConfigState({ fieldName: 'streamKeys', value: updatedKeys, }); saveKeys(updatedKeys, setError); setShowAddKeyForm(false); }; const handleInputChange = (event: any) => { const val = event.target.value; if (REGEX_PASSWORD.test(val)) { setHasChanged(true); } else { setHasChanged(false); } }; // Default auto-generated key const defaultKey = generateRndKey(); return (
The key you provide your broadcasting software. Please note that the key must be a minimum of eight characters and must include at least one uppercase letter, at least one lowercase letter, at least one special character, and at least one number.

} rules={PASSWORD_COMPLEXITY_RULES} >
); }; const AddKeyButton = ({ setShowAddKeyForm }) => ( ); const copyText = (text: string) => { navigator.clipboard .writeText(text) .then(() => message.success('Copied to clipboard')) .catch(() => message.error('Failed to copy to clipboard')); }; const StreamKeys = () => { const serverStatusData = useContext(ServerStatusContext); const { serverConfig, setFieldInConfigState } = serverStatusData || {}; const { streamKeys } = serverConfig; const [showAddKeyForm, setShowAddKeyForm] = useState(false); const [showKeyMap, setShowKeyMap] = useState({}); const [error, setError] = useState(null); const handleDeleteKey = keyToRemove => { const newKeys = streamKeys.filter(k => k !== keyToRemove); setFieldInConfigState({ fieldName: 'streamKeys', value: newKeys, }); saveKeys(newKeys, setError); }; const handleToggleShowKey = key => { setShowKeyMap({ ...showKeyMap, [key]: !showKeyMap[key], }); }; const columns = [ { title: 'Key', dataIndex: 'key', key: 'key', render: text => ( copyText(text), }} > {showKeyMap[text] ? text : '**********'}