[LIB-13] Add classes to work with proxy servers
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / proxy / Proxy.java
1 /*
2  * Copyright (c) 2019-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.scanner.proxy;
18
19 import org.hedgecode.chess.scanner.ChessHogScannerConstants;
20 import org.hedgecode.chess.scanner.proxy.type.HTTPSetter;
21 import org.hedgecode.chess.scanner.proxy.type.SOCKSSetter;
22
23 /**
24  * Setter for proxy settings.
25  *
26  * @author Dmitry Samoshin aka gotty
27  */
28 public enum Proxy {
29
30     UNDEFINED ( ChessHogScannerConstants.PROXY_UNDEFINED, null ),
31     HTTP      ( ChessHogScannerConstants.PROXY_HTTP, new HTTPSetter() ),
32     SOCKS     ( ChessHogScannerConstants.PROXY_SOCKS, new SOCKSSetter() );
33
34     private String name;
35     private ProxySetter setter;
36
37     Proxy(String name, ProxySetter setter) {
38         this.name = name;
39         this.setter = setter;
40     }
41
42     private ProxySetter getSetter() {
43         return setter;
44     }
45
46     public static Proxy byName(String name) {
47         for (Proxy proxy : Proxy.values()) {
48             if (proxy.name.equals(name))
49                 return proxy;
50         }
51         return UNDEFINED;
52     }
53
54     public static void setProxy(ProxyParams proxyParams) {
55         setProxy(
56                 proxyParams.getType(),
57                 proxyParams.getHost(), proxyParams.getPort(),
58                 proxyParams.getUser(), proxyParams.getPassword()
59         );
60     }
61
62     public static void setProxy(Proxy type, String host, String port) {
63         setProxy(type, host, port, null, null);
64     }
65
66     public static void setProxy(Proxy type, String host, String port, String user, String password) {
67         ProxySetter proxySetter = type.getSetter();
68         if (proxySetter != null) {
69             proxySetter.setProxyHost(host);
70             proxySetter.setProxyPort(port);
71             if (user != null) {
72                 proxySetter.setProxyAuth(user, password);
73             }
74         }
75     }
76
77 }