106 lines
3.8 KiB
TypeScript
106 lines
3.8 KiB
TypeScript
import { Button, Group, Space, TextInput, Notification, Modal, Switch, SegmentedControl, Box } from '@mantine/core';
|
|
import { useForm } from '@mantine/form';
|
|
import { useState } from 'react';
|
|
import { okNotify, regex_ipv4, regex_ipv6 } from '../../js/utils';
|
|
import { ImCross } from "react-icons/im"
|
|
import { nfregex } from './utils';
|
|
import PortAndInterface from '../PortAndInterface';
|
|
|
|
type ServiceAddForm = {
|
|
name:string,
|
|
port:number,
|
|
proto:string,
|
|
ip_int:string,
|
|
autostart: boolean,
|
|
}
|
|
|
|
function AddNewService({ opened, onClose }:{ opened:boolean, onClose:()=>void }) {
|
|
|
|
const form = useForm({
|
|
initialValues: {
|
|
name:"",
|
|
port:8080,
|
|
ip_int:"",
|
|
proto:"tcp",
|
|
autostart: true
|
|
},
|
|
validate:{
|
|
name: (value) => value !== "" ? null : "Service name is required",
|
|
port: (value) => (value>0 && value<65536) ? null : "Invalid port",
|
|
proto: (value) => ["tcp","udp"].includes(value) ? null : "Invalid protocol",
|
|
ip_int: (value) => (value.match(regex_ipv6) || value.match(regex_ipv4)) ? null : "Invalid IP address",
|
|
}
|
|
})
|
|
|
|
const close = () =>{
|
|
onClose()
|
|
form.reset()
|
|
setError(null)
|
|
}
|
|
|
|
const [submitLoading, setSubmitLoading] = useState(false)
|
|
const [error, setError] = useState<string|null>(null)
|
|
|
|
const submitRequest = ({ name, port, autostart, proto, ip_int }:ServiceAddForm) =>{
|
|
setSubmitLoading(true)
|
|
nfregex.servicesadd({name, port, proto, ip_int }).then( res => {
|
|
if (res.status === "ok" && res.service_id){
|
|
setSubmitLoading(false)
|
|
close();
|
|
if (autostart) nfregex.servicestart(res.service_id)
|
|
okNotify(`Service ${name} has been added`, `Successfully added service with port ${port}`)
|
|
}else{
|
|
setSubmitLoading(false)
|
|
setError("Invalid request! [ "+res.status+" ]")
|
|
}
|
|
}).catch( err => {
|
|
setSubmitLoading(false)
|
|
setError("Request Failed! [ "+err+" ]")
|
|
})
|
|
}
|
|
|
|
|
|
return <Modal size="xl" title="Add a new service" opened={opened} onClose={close} closeOnClickOutside={false} centered>
|
|
<form onSubmit={form.onSubmit(submitRequest)}>
|
|
<TextInput
|
|
label="Service name"
|
|
placeholder="Challenge 01"
|
|
{...form.getInputProps('name')}
|
|
/>
|
|
<Space h="md" />
|
|
<PortAndInterface form={form} int_name="ip_int" port_name="port" label={"Public IP Interface and port (ipv4/ipv6 + CIDR allowed)"} />
|
|
<Space h="md" />
|
|
|
|
<Box className='center-flex'>
|
|
<Switch
|
|
label="Auto-Start Service"
|
|
{...form.getInputProps('autostart', { type: 'checkbox' })}
|
|
/>
|
|
<Box className="flex-spacer"></Box>
|
|
<SegmentedControl
|
|
data={[
|
|
{ label: 'TCP', value: 'tcp' },
|
|
{ label: 'UDP', value: 'udp' },
|
|
]}
|
|
{...form.getInputProps('proto')}
|
|
/>
|
|
</Box>
|
|
|
|
<Group justify='flex-end' mt="md" mb="sm">
|
|
<Button loading={submitLoading} type="submit">Add Service</Button>
|
|
</Group>
|
|
|
|
{error?<>
|
|
<Space h="md" />
|
|
<Notification icon={<ImCross size={14} />} color="red" onClose={()=>{setError(null)}}>
|
|
Error: {error}
|
|
</Notification><Space h="md" />
|
|
</>:null}
|
|
|
|
</form>
|
|
</Modal>
|
|
|
|
}
|
|
|
|
export default AddNewService;
|