aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/views/Config.js
blob: 1468b1bc6830ebd5cc3a3a2e23d1cc92b18134cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import {
    validateIpAddress,
} from "../utils";
import React, {Component, useState} from 'react';
import './Config.scss';
import {Button, ButtonGroup, ToggleButton, Col, Container, Form, FormControl, InputGroup, Modal, Row, Table} from "react-bootstrap";
import {createCurlCommand} from '../utils';

class Config extends Component {

    constructor(props) {
        super(props);

        this.state = {
            server_address: "",
            flag_regex: "",
			auth_required: false,
			accounts: {},
			showSignup: false,
			showConfig: true,
			tmpUser:"",
			tmpPass:"",
			tmpConf:""
        };

        this.serverIpChanged = this.serverIpChanged.bind(this);
        this.flagRegexChanged = this.flagRegexChanged.bind(this);
        this.authRequiredChanged = this.authRequiredChanged.bind(this);
        this.userChanged = this.userChanged.bind(this);
        this.passwdChanged = this.passwdChanged.bind(this);
        this.confirmChanged = this.confirmChanged.bind(this);
    }

    serverIpChanged(event) {
        this.setState({server_address: event.target.value});
    }

    flagRegexChanged(event) {
        this.setState({flag_regex: event.target.value});
    }

    authRequiredChanged() {
        this.setState({auth_required: !this.value});
		this.checked = !this.checked;
		this.value = !this.value;
    }

    userChanged(event) {
        this.setState({tmpUser: event.target.value});
    }

    passwdChanged(event) {
        this.setState({tmpPass: event.target.value});
    }
	
    confirmChanged(event) {
        this.setState({tmpConf: event.target.value});
    }

    setup() {
		const requestOptions = {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ 
			config: { 
				server_address:  this.state.server_address,
				flag_regex: this.state.flag_regex,
				auth_required: this.state.auth_required,
				}, 
				accounts: this.state.accounts  
			})
		};


		fetch('/setup', requestOptions)
			.then(response => {
				if (response.status === 202 ){
					//this.setState({showConfig:false});
					this.props.onHide();
					this.props.onDone();
					console.log(this.props.disabled);
				}
			}
		);
		
    }

	signup(){
		if (this.state.tmpPass === this.state.tmpConf){
			const accounts = {...this.state.accounts};
			accounts[this.state.tmpUser] = this.state.tmpPass;
			this.setState({accounts});
			console.log(this.state);
			this.setState({showSignup:false,showConfig:true})
		}
		this.setState({tmpUser : ""});
		this.setState({tmpPass : ""});
		this.setState({tmpConf : ""});
	}

    render() {
		let rows = Object.keys(this.state.accounts).map(u =>
            <tr>
                <td>{u}</td>
            </tr>
        );



        return (
			<>
			<Modal show={this.state.showSignup} size="lg" aria-labelledby="services-dialog" centered >
                <Modal.Header>
                    <Modal.Title id="services-dialog">
                        # passwd
                    </Modal.Title>
                </Modal.Header>
                <Modal.Body>
                    <Container>
                        <Row>
                                <Form id="passwd-form">
                                    <Form.Group controlId="username">
                                        <Form.Label>username:</Form.Label>
                                        <Form.Control type="text" onChange={this.userChanged} value={this.state.tmpUser}/>
                                    </Form.Group>

                                    <Form.Group controlId="password">
                                        <Form.Label>password:</Form.Label>
                                        <Form.Control type="password" onChange={this.passwdChanged} value={this.state.tmpPass}/>
                                    </Form.Group>

                                    <Form.Group controlId="confirmPassword">
                                        <Form.Label>confirm password:</Form.Label>
                                        <Form.Control type="password" onChange={this.confirmChanged} value={this.state.tmpConf}/>
                                    </Form.Group>


                                </Form>

                        </Row>

                    </Container>
                </Modal.Body>
                <Modal.Footer className="dialog-footer">
					<Button variant="green" onClick={() => this.signup()}>signup</Button>
                    <Button variant="red" onClick={() => this.setState({showSignup:false,showConfig:true})}>close</Button>
                </Modal.Footer>

			</Modal>
            <Modal
                {...this.props}
                show="true"
                size="lg"
                aria-labelledby="services-dialog"
                centered
            >
                <Modal.Header>
                    <Modal.Title id="services-dialog">
                        ~/.config
                    </Modal.Title>
                </Modal.Header>
                <Modal.Body>
					<div class="blink"><span><b>Warning:</b></span> once the configuration is completed, it cannot be changed unless you reset caronte :(</div> 
					<hr/>
                    <Container>
                        <Row>
                            <Col md={5}>

									<ButtonGroup toggle className="mb-2">
									<ToggleButton
									  type="checkbox"
									  variant="secondary"
									  checked={this.state.auth_required}
									  value={this.state.auth_required}
									  onChange={() => this.authRequiredChanged()}
									>
									  Authentication
									</ToggleButton>
								  </ButtonGroup>

									<Table borderless size="sm" className="users-list">

									<thead>
									<tr>
									<th>users</th>
									</tr>
									</thead>
									<tbody>
									{rows}
									<tr> <td>
									<Button size="sm" onClick={() => this.setState({showSignup:true,showConfig:false})}>new</Button>
									</td> </tr>
									</tbody>
									</Table>



                            </Col>

                            <Col md={7}>

									<Form>
                                    <Form.Group controlId="server_address">
                                        <Form.Label>server_address:</Form.Label>
                                        <Form.Control type="text" onChange={this.serverIpChanged} value={this.state.server_address}/>
                                    </Form.Group>

                                    <Form.Group controlId="flag_regex">
                                        <Form.Label>flag_regex:</Form.Label>
                                        <Form.Control type="text" onChange={this.flagRegexChanged} value={this.state.flag_regex}/>
                                    </Form.Group>

                                </Form>

                            </Col>

                        </Row>

                    </Container>
                </Modal.Body>
                <Modal.Footer className="dialog-footer">
					<Button variant="green" onClick={() => this.setup()}>set</Button>
                    <Button variant="red" onClick={this.props.onHide}>close</Button>
                </Modal.Footer>
            </Modal>
			</>
        );
    }
}

export default Config;