forked from I2P_Developers/i2p.i2p
SSL wizard: Add missing file, fix form params
This commit is contained in:
60
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/web/SSLHelper.java
Normal file
60
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/web/SSLHelper.java
Normal file
@@ -0,0 +1,60 @@
|
||||
package net.i2p.i2ptunnel.web;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Helper class for ssl.jsp
|
||||
*
|
||||
* @since 0.9.35
|
||||
*/
|
||||
public class SSLHelper {
|
||||
|
||||
/**
|
||||
* Adapted from LoadClientAppsJob
|
||||
* @return param args non-null
|
||||
* @return non-null
|
||||
*/
|
||||
public static List<String> parseArgs(String args) {
|
||||
List<String> argList = new ArrayList<String>(4);
|
||||
StringBuilder buf = new StringBuilder(32);
|
||||
boolean isQuoted = false;
|
||||
for (int j = 0; j < args.length(); j++) {
|
||||
char c = args.charAt(j);
|
||||
switch (c) {
|
||||
case '\'':
|
||||
case '"':
|
||||
if (isQuoted) {
|
||||
String str = buf.toString().trim();
|
||||
if (str.length() > 0)
|
||||
argList.add(str);
|
||||
buf.setLength(0);
|
||||
}
|
||||
isQuoted = !isQuoted;
|
||||
break;
|
||||
case ' ':
|
||||
case '\t':
|
||||
// whitespace - if we're in a quoted section, keep this as part of the quote,
|
||||
// otherwise use it as a delim
|
||||
if (isQuoted) {
|
||||
buf.append(c);
|
||||
} else {
|
||||
String str = buf.toString().trim();
|
||||
if (str.length() > 0)
|
||||
argList.add(str);
|
||||
buf.setLength(0);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
buf.append(c);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (buf.length() > 0) {
|
||||
String str = buf.toString().trim();
|
||||
if (str.length() > 0)
|
||||
argList.add(str);
|
||||
}
|
||||
return argList;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user