summaryrefslogtreecommitdiffstats
path: root/verigraph/src/it/polito/neo4j/translator/GraphToNeo4j.java
blob: 8641cbc105d16bb68ccd54d5b6150c26260ee70d (plain)
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
/*******************************************************************************
 * Copyright (c) 2017 Politecnico di Torino and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Apache License, Version 2.0
 * which accompanies this distribution, and is available at
 * http://www.apache.org/licenses/LICENSE-2.0
 *******************************************************************************/
package it.polito.neo4j.translator;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import static javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI;

import java.io.File;
import java.io.IOException;
import java.io.StringWriter;
import java.math.BigInteger;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.UnmarshalException;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.ValidationEvent;
import javax.xml.bind.ValidationEventHandler;
import javax.xml.bind.ValidationEventLocator;
import javax.xml.stream.FactoryConfigurationError;
import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;

import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.fasterxml.jackson.databind.util.JSONWrappedObject;

import it.polito.neo4j.jaxb.Antispam;
import it.polito.neo4j.jaxb.Cache;
import it.polito.neo4j.jaxb.Dpi;
import it.polito.neo4j.jaxb.Elements;
import it.polito.neo4j.jaxb.Endhost;
import it.polito.neo4j.jaxb.Endpoint;
import it.polito.neo4j.jaxb.Fieldmodifier;
import it.polito.neo4j.jaxb.Firewall;
import it.polito.neo4j.jaxb.FunctionalTypes;
import it.polito.neo4j.jaxb.Graph;
import it.polito.neo4j.jaxb.Node;
import it.polito.neo4j.jaxb.ObjectFactory;
import it.polito.neo4j.jaxb.ProtocolTypes;
import it.polito.neo4j.jaxb.Vpnaccess;
import it.polito.neo4j.jaxb.Vpnexit;
import it.polito.neo4j.jaxb.Webclient;
import it.polito.neo4j.jaxb.Webserver;
import it.polito.verigraph.model.Configuration;
import it.polito.verigraph.service.VerigraphLogger;
import it.polito.neo4j.jaxb.Graphs;
import it.polito.neo4j.jaxb.Mailclient;
import it.polito.neo4j.jaxb.Mailserver;
import it.polito.neo4j.jaxb.Nat;
import it.polito.neo4j.jaxb.Neighbour;

public class GraphToNeo4j {
    public static VerigraphLogger vlogger = VerigraphLogger.getVerigraphlogger();
    public static it.polito.neo4j.jaxb.Graph generateObject(it.polito.verigraph.model.Graph gr) throws JsonParseException, JsonMappingException, IOException {
        it.polito.neo4j.jaxb.Graph graph;
        graph=(new ObjectFactory()).createGraph();
        graph.setId(gr.getId());

        List<it.polito.neo4j.jaxb.Node> nodes=new ArrayList<it.polito.neo4j.jaxb.Node>();
        for(Map.Entry<Long, it.polito.verigraph.model.Node> c : gr.getNodes().entrySet()){
            it.polito.neo4j.jaxb.Node node=(new ObjectFactory()).createNode();
            node.setId(c.getValue().getId());
            node.setName(c.getValue().getName());
            node.setFunctionalType(FunctionalTypes.fromValue(c.getValue().getFunctional_type().toUpperCase()));
            List<Neighbour> neighbours=new ArrayList<Neighbour>();

            /* setNeighbours*/
            for(Map.Entry<Long, it.polito.verigraph.model.Neighbour> a : c.getValue().getNeighbours().entrySet()){
                Neighbour neighbour=(new ObjectFactory()).createNeighbour();
                neighbour.setId(a.getValue().getId());
                neighbour.setName(a.getValue().getName());
                neighbours.add(neighbour);
            }
            node.getNeighbour().addAll(neighbours);

            /* setConfigurations */
            it.polito.neo4j.jaxb.Configuration configuration=(new ObjectFactory()).createConfiguration();
            JsonNode json=c.getValue().getConfiguration().getConfiguration();
            setConfiguration(configuration, c.getValue(), json);
            node.setConfiguration(configuration);
            nodes.add(node);
        }
        graph.getNode().addAll(nodes);
        return graph;
    }

    public static it.polito.neo4j.jaxb.Configuration ConfToNeo4j(it.polito.verigraph.model.Configuration nodeConfiguration, it.polito.verigraph.model.Node node) throws JsonParseException, JsonMappingException, IOException {
        it.polito.neo4j.jaxb.Configuration configuration=(new ObjectFactory()).createConfiguration();
        JsonNode nodes=nodeConfiguration.getConfiguration();
        setConfiguration(configuration, node, nodes);

        return configuration;

    }

    @SuppressWarnings("unchecked")
    private static void setConfiguration(it.polito.neo4j.jaxb.Configuration configuration, it.polito.verigraph.model.Node node, JsonNode nodes) throws JsonParseException, JsonMappingException, IOException {

        String empty="[]";

        switch(node.getFunctional_type().toUpperCase()){
        case "FIREWALL":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Firewall firewall=new Firewall();
            List<Elements> elements_list=new ArrayList<Elements>();

            if(!nodes.toString().equals(empty)){
                ObjectMapper mapper=new ObjectMapper();
                java.util.Map<String, String> map=new LinkedHashMap();
                String input;
                Matcher matcher = Pattern.compile("\\[([^\\]]*)\\]").matcher(nodes.toString());
                if(matcher.find()){
                    input=matcher.group(1);
                }else
                    input=nodes.toString();
                Pattern pattern=Pattern.compile("\\{([^\\}]*)\\}");
                List<String> list = new ArrayList<String>();
                Matcher match= pattern.matcher(input);
                while (match.find()) {
                    list.add(match.group());
                }

                try{
                    for(String string : list){
                        map.putAll(mapper.readValue(string, LinkedHashMap.class));
                    }
                    for(java.util.Map.Entry<String, String> m : map.entrySet()){
                        Elements e=new Elements();
                        e.setDestination(m.getKey());
                        e.setSource(m.getValue());
                        elements_list.add(e);
                    }

                }catch(JsonGenerationException e) {
                    e.printStackTrace();
                } catch (JsonMappingException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            else{
                vlogger.logger.info("elements_list of Firewall " +node.getName()+" empty");
            }
            firewall.getElements().addAll(elements_list);
            configuration.setFirewall(firewall);
            break;
        }
        case "ANTISPAM":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Antispam antispam=new Antispam();
            List<String> source=new ArrayList<String>();

            if(!nodes.toString().equals(empty)){
                ObjectMapper mapper=new ObjectMapper();
                List<String> list=new ArrayList<String>();

                try {

                    list = mapper.readValue(nodes.toString(), ArrayList.class);

                    for(String s : list){
                        source.add(s);
                    }

                } catch (JsonGenerationException e) {
                    e.printStackTrace();
                } catch (JsonMappingException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            else{
                vlogger.logger.info("Antispam " +node.getName()+" empty");

            }
            antispam.getSource().addAll(source);
            configuration.setAntispam(antispam);
            break;
        }
        case "CACHE":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Cache cache=new Cache();
            List<String> resource=new ArrayList<String>();

            if(!nodes.toString().equals(empty)){
                ObjectMapper mapper=new ObjectMapper();

                List<String> list=new ArrayList<String>();
                try {

                    list = mapper.readValue(nodes.toString(), ArrayList.class);

                    for(String s : list){
                        resource.add(s);
                    }

                } catch (JsonGenerationException e) {
                    e.printStackTrace();
                } catch (JsonMappingException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            else{
                vlogger.logger.info("Cache " +node.getName()+" empty");

            }
            cache.getResource().addAll(resource);
            configuration.setCache(cache);
            break;

        }
        case "DPI":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Dpi dpi=new Dpi();
            List<String> notAllowed=new ArrayList<String>();

            if(!nodes.toString().equals(empty)){
                ObjectMapper mapper=new ObjectMapper();

                List<String> list=new ArrayList<String>();
                try {

                    list = mapper.readValue(nodes.toString(), ArrayList.class);

                    for(String s : list){
                        notAllowed.add(s);
                    }

                } catch (JsonGenerationException e) {
                    e.printStackTrace();
                } catch (JsonMappingException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }

            }
            else{
                vlogger.logger.info("Dpi " +node.getName()+"  empty");

            }
            dpi.getNotAllowed().addAll(notAllowed);
            configuration.setDpi(dpi);
            break;
        }
        case "ENDHOST":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Endhost endhost=new Endhost();

            if(!nodes.toString().equals(empty)){
                ObjectMapper mapper=new ObjectMapper();
                java.util.Map<String, String> map=new LinkedHashMap();
                String input;
                Matcher matcher = Pattern.compile("\\[([^\\]]*)\\]").matcher(nodes.toString());
                if(matcher.find()){
                    input=matcher.group(1);
                }else
                    input=nodes.toString();

                try{
                    map=mapper.readValue(input, java.util.LinkedHashMap.class);
                    for(java.util.Map.Entry<String, String> m : map.entrySet()){
                        switch(m.getKey()){
                        case "body":{
                            endhost.setBody(m.getValue());
                            break;
                        }
                        case"sequence":{
                            endhost.setSequence(new BigInteger(m.getValue()));
                            break;
                        }
                        case "protocol":{
                            endhost.setProtocol(ProtocolTypes.fromValue(m.getValue()));
                            break;
                        }
                        case "email_from":{
                            endhost.setEmailFrom(m.getValue());
                            break;
                        }
                        case "url":{
                            endhost.setUrl(m.getValue());
                            break;
                        }
                        case "option":{
                            endhost.setOptions(m.getValue());
                            break;
                        }
                        case "destination":{
                            endhost.setDestination(m.getValue());
                            break;
                        }
                        }
                    }

                }catch(JsonGenerationException e) {
                    e.printStackTrace();
                } catch (JsonMappingException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            else{
                vlogger.logger.info("Endhost " +node.getName()+" empty");

            }
            configuration.setEndhost(endhost);
            break;
        }
        case "ENDPOINT":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Endpoint endpoint=new Endpoint();
            configuration.setEndpoint(endpoint);
            break;
        }
        case "FIELDMODIFIER":{

            configuration.setName(node.getFunctional_type());
            Fieldmodifier fieldmodifier=new  Fieldmodifier();
            configuration.setFieldmodifier(fieldmodifier);
            break;
        }

        case "MAILCLIENT":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Mailclient mailclient=new Mailclient();

            ObjectMapper mapper=new ObjectMapper();
            java.util.Map<String, String> map=new LinkedHashMap();
            String input;
            Matcher matcher = Pattern.compile("\\[([^\\]]*)\\]").matcher(nodes.toString());
            if(matcher.find()){
                input=matcher.group(1);
            }else
                input=nodes.toString();

            Pattern pattern=Pattern.compile("\\{([^\\}]*)\\}");
            List<String> list = new ArrayList<String>();
            Matcher match= pattern.matcher(input);
            while (match.find()) {
                list.add(match.group());
            }

            try{
                for(String string : list){
                    map.putAll(mapper.readValue(string, LinkedHashMap.class));
                    if(map!=null || !map.isEmpty()){
                        for(java.util.Map.Entry<String, String> m : map.entrySet()){
                            switch(m.getKey()){
                            case "mailserver":{
                                mailclient.setMailserver(m.getValue());
                                break;
                            }
                            default:
                                vlogger.logger.info("\"mailserver\" object is required");
                                break;
                            }
                        }
                    }
                }
            }catch(JsonGenerationException e) {
                e.printStackTrace();
            } catch (JsonMappingException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            configuration.setMailclient(mailclient);
            break;
        }
        case "MAILSERVER":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Mailserver mailserver=new Mailserver();
            configuration.setMailserver(mailserver);
            break;
        }
        case "NAT":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Nat nat=new Nat();
            List<String> source=new ArrayList<String>();

            if(!nodes.toString().equals(empty)){
                ObjectMapper mapper=new ObjectMapper();
                List<String> list=new ArrayList<String>();
                try {

                    list = mapper.readValue(nodes.toString(), ArrayList.class);

                    for(String s : list){
                        source.add(s);
                    }
                } catch (JsonGenerationException e) {
                    e.printStackTrace();
                } catch (JsonMappingException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            else{
                vlogger.logger.info("Nat " +node.getName()+" empty");
            }
            nat.getSource().addAll(source);
            configuration.setNat(nat);
            break;
        }
        case "VPNACCESS":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Vpnaccess vpnaccess=new Vpnaccess();
            ObjectMapper mapper=new ObjectMapper();
            java.util.Map<String, String> map=new LinkedHashMap();
            String input;
            Matcher matcher = Pattern.compile("\\[([^\\]]*)\\]").matcher(nodes.toString());
            if(matcher.find()){
                input=matcher.group(1);
            }else
                input=nodes.toString();

            Pattern pattern=Pattern.compile("\\{([^\\}]*)\\}");
            List<String> list = new ArrayList<String>();
            Matcher match= pattern.matcher(input);
            while (match.find()) {
                list.add(match.group());
            }
            try{
                for(String string : list){
                    map.putAll(mapper.readValue(string, LinkedHashMap.class));
                    if(map!=null || !map.isEmpty()){
                        for(java.util.Map.Entry<String, String> m : map.entrySet()){
                            switch(m.getKey()){
                            case "vpnexit":{
                                vpnaccess.setVpnexit(m.getValue());
                                break;
                            }
                            default:
                                vlogger.logger.info("\"vpnexit\" is required");
                                break;
                            }
                        }
                    }
                }
            }catch(JsonGenerationException e) {
                e.printStackTrace();
            } catch (JsonMappingException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            configuration.setVpnaccess(vpnaccess);
            break;
        }
        case "VPNEXIT":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Vpnexit vpnexit=new Vpnexit();

            ObjectMapper mapper=new ObjectMapper();
            java.util.Map<String, String> map=new LinkedHashMap();
            String input;
            Matcher matcher = Pattern.compile("\\[([^\\]]*)\\]").matcher(nodes.toString());
            if(matcher.find()){
                input=matcher.group(1);
            }else
                input=nodes.toString();

            Pattern pattern=Pattern.compile("\\{([^\\}]*)\\}");
            List<String> list = new ArrayList<String>();
            Matcher match= pattern.matcher(input);
            while (match.find()) {
                list.add(match.group());
            }

            try{
                for(String string : list){
                    /* there is only 1 string */
                    map.putAll(mapper.readValue(string, LinkedHashMap.class));
                    if(map!=null || !map.isEmpty()){
                        for(java.util.Map.Entry<String, String> m : map.entrySet()){
                            switch(m.getKey()){
                            case "vpnaccess":{
                                vpnexit.setVpnaccess(m.getValue());
                                break;
                            }
                            default:{
                                vlogger.logger.info("\"vpnaccess\" is required");
                                break;
                            }
                            }
                        }
                    }
                }
            }catch(JsonGenerationException e) {
                e.printStackTrace();
            } catch (JsonMappingException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            configuration.setVpnexit(vpnexit);
            break;
        }
        case "WEBCLIENT":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Webclient webclient=new Webclient();
            ObjectMapper mapper=new ObjectMapper();
            java.util.Map<String, String> map=new LinkedHashMap();
            String input;
            Matcher matcher = Pattern.compile("\\[([^\\]]*)\\]").matcher(nodes.toString());
            if(matcher.find()){
                input=matcher.group(1);
            }else
                input=nodes.toString();

            Pattern pattern=Pattern.compile("\\{([^\\}]*)\\}");
            List<String> list = new ArrayList<String>();
            Matcher match= pattern.matcher(input);
            while (match.find()) {
                list.add(match.group());
            }
            try{
                for(String string : list){
                    map.putAll(mapper.readValue(string, LinkedHashMap.class));
                    if(map!=null || !map.isEmpty()){
                        for(java.util.Map.Entry<String, String> m : map.entrySet()){
                            switch(m.getKey()){
                            case "webserver":{
                                webclient.setNameWebServer(m.getValue());
                                break;
                            }
                            default:{
                                vlogger.logger.info("\"webserver\" object is required");
                                break;
                            }
                            }
                        }
                    }
                }
            }catch(JsonGenerationException e) {
                e.printStackTrace();
            } catch (JsonMappingException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            configuration.setWebclient(webclient);
            break;
        }
        case "WEBSERVER":{
            configuration.setName(node.getFunctional_type().toLowerCase());
            Webserver webserver=new Webserver();
            configuration.setWebserver(webserver);
            break;
        }
        }
    }

    public static Neighbour NeighbourToNeo4j(it.polito.verigraph.model.Neighbour n){
        Neighbour neighbourRoot;
        neighbourRoot=(new ObjectFactory()).createNeighbour();
        neighbourRoot.setId(n.getId());
        neighbourRoot.setName(n.getName());
        return neighbourRoot;
    }

    public static Node NodeToNeo4j(it.polito.verigraph.model.Node n) throws JsonParseException, JsonMappingException, IOException{
        Node nodeRoot;
        it.polito.neo4j.jaxb.Configuration configuration=(new ObjectFactory()).createConfiguration();
        nodeRoot=(new ObjectFactory()).createNode();
        nodeRoot.setId(n.getId());
        nodeRoot.setName(n.getName());
        nodeRoot.setFunctionalType(FunctionalTypes.fromValue(n.getFunctional_type().toUpperCase()));
        for(Map.Entry<Long, it.polito.verigraph.model.Neighbour> neighbour : n.getNeighbours().entrySet()){
            it.polito.verigraph.model.Neighbour neighb=neighbour.getValue();
            nodeRoot.getNeighbour().add(NeighbourToNeo4j(neighb));
        }
        JsonNode json=n.getConfiguration().getConfiguration();
        setConfiguration(configuration, n, json);
        nodeRoot.setConfiguration(configuration);
        return nodeRoot;
    }
}