[LIB-13] Rename some common classes
[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.proxy.type.HTTPSetter;
20 import org.hedgecode.chess.scanner.proxy.type.SOCKSSetter;
21
22 import static org.hedgecode.chess.scanner.ScannerConstants.*;
23
24 /**
25  * Setter for proxy settings.
26  *
27  * @author Dmitry Samoshin aka gotty
28  */
29 public enum Proxy {
30
31     UNDEFINED ( PROXY_UNDEFINED, null              ),
32     HTTP      ( PROXY_HTTP,      new HTTPSetter()  ),
33     SOCKS     ( PROXY_SOCKS,     new SOCKSSetter() );
34
35     private String name;
36     private ProxySetter setter;
37
38     Proxy(String name, ProxySetter setter) {
39         this.name = name;
40         this.setter = setter;
41     }
42
43     private ProxySetter getSetter() {
44         return setter;
45     }
46
47     public static Proxy byName(String name) {
48         for (Proxy proxy : Proxy.values()) {
49             if (proxy.name.equals(name))
50                 return proxy;
51         }
52         return UNDEFINED;
53     }
54
55     public static void setProxy(ProxyParams proxyParams) {
56         setProxy(
57                 proxyParams.getType(),
58                 proxyParams.getHost(), proxyParams.getPort(),
59                 proxyParams.getUser(), proxyParams.getPassword()
60         );
61     }
62
63     public static void setProxy(Proxy type, String host, String port) {
64         setProxy(type, host, port, null, null);
65     }
66
67     public static void setProxy(Proxy type, String host, String port, String user, String password) {
68         ProxySetter proxySetter = type.getSetter();
69         if (proxySetter != null) {
70             proxySetter.setProxyHost(host);
71             proxySetter.setProxyPort(port);
72             if (user != null) {
73                 proxySetter.setProxyAuth(user, password);
74             }
75         }
76     }
77
78 }