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
|
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2013 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cmstools.cli;
import java.util.Collection;
import com.netscape.certsrv.account.AccountClient;
import com.netscape.certsrv.client.ClientConfig;
import com.netscape.certsrv.client.PKIClient;
/**
* This class provides a mechanism to authenticate against
* the appropriate subsystem for the CLI command.
*
* @author Endi S. Dewata
*/
public class ProxyCLI extends CLI {
CLI module;
String defaultSubsystem;
public ProxyCLI(CLI module, String defaultSubsystem) {
super(module.getName(), module.getDescription(), module.getParent());
this.module = module;
this.defaultSubsystem = defaultSubsystem;
}
public String getName() {
return module.getName();
}
public void setName(String name) {
module.setName(name);
}
public String getFullName() {
return module.getFullName();
}
public String getFullModuleName(String moduleName) {
return module.getFullModuleName(moduleName);
}
public String getDescription() {
return module.getDescription();
}
public void setDescription(String description) {
module.setDescription(description);
}
public CLI getParent() {
return module.getParent();
}
public Collection<CLI> getModules() {
return module.getModules();
}
public CLI getModule(String name) {
return module.getModule(name);
}
public void addModule(CLI module) {
this.module.addModule(module);
}
public CLI removeModule(String name) {
return module.removeModule(name);
}
public PKIClient getClient() throws Exception {
return module.getClient();
}
public Object getClient(String name) throws Exception {
return module.getClient(name);
}
public void printHelp() {
module.printHelp();
}
public void execute(String[] args) throws Exception {
AccountClient accountClient = null;
try {
// login if username or nickname is specified
ClientConfig config = module.getConfig();
if (config.getUsername() != null || config.getCertNickname() != null) {
String subsystem = config.getSubsystem();
if (subsystem == null) subsystem = defaultSubsystem;
PKIClient client = module.getClient();
accountClient = new AccountClient(client, subsystem);
accountClient.login();
}
module.execute(args);
} finally {
if (accountClient != null) accountClient.logout();
}
}
}
|