Adding TestVNF netconf server
[demo.git] / vnfs / TestVNF / netconfserver / src / main / java / com / ericsson / testvnf / server / builder / ServerBuilder.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package com.ericsson.testvnf.server.builder;
22
23 import java.io.IOException;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import org.apache.commons.logging.Log;
28 import org.apache.commons.logging.LogFactory;
29 import org.apache.sshd.common.NamedFactory;
30 import org.apache.sshd.server.SshServer;
31 import org.apache.sshd.server.command.Command;
32 import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider;
33 import org.apache.sshd.server.session.ServerSession;
34
35 import com.ericsson.testvnf.server.netconf.NetconfSubsystem;
36
37 /**
38  * Build the server by extending a netconf subsystem
39  */
40 public class ServerBuilder {
41
42         private static final Log log = LogFactory.getLog(ServerBuilder.class);
43         private SshServer sshd;
44         
45         // initialize the server
46         public void initializeServer(String host, int listeningPort) {
47                 log.info("Configuring server...");
48                 sshd = SshServer.setUpDefaultServer();
49                 sshd.setHost(host);
50                 sshd.setPort(listeningPort);
51
52                 log.info("Host: '" + host + "', listenig port: " + listeningPort);
53
54                  // set the password authenticator, here the access is granted always.
55                 sshd.setPasswordAuthenticator((String username, String password, ServerSession session) -> true);
56                  
57                 sshd.setKeyPairProvider(new SimpleGeneratorHostKeyProvider());
58
59                 List<NamedFactory<Command>> subsystemFactories = new ArrayList<>();
60                 subsystemFactories.add(NetconfSubsystem.Factory.createFactory()); 
61                 sshd.setSubsystemFactories(subsystemFactories); // add the netconf subystem to the server.
62
63                 log.info("Server configured.");
64         }
65
66         // start the server
67         public void startServer(){
68                 log.info("Starting server...");
69                 try {
70                         sshd.start();
71                 } catch (IOException e) {
72                         log.error("Error starting server!", e);
73                 }
74                 log.info("Server started.");
75         }
76
77         // stop the server
78         public void stopServer() throws IOException {
79                 log.info("Stopping server...");
80                 sshd.stop();
81                 log.info("Server stopped.");
82         }
83 }