/providers/profitbricks/src/main/java/org/jclouds/profitbricks/util/Preconditions.java

http://github.com/jclouds/jclouds · Java · 105 lines · 69 code · 17 blank · 19 comment · 22 complexity · be557849642517824ed4ce5f2aa67e38 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. 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. package org.jclouds.profitbricks.util;
  18. import static com.google.common.base.Preconditions.checkArgument;
  19. import static com.google.common.base.Preconditions.checkNotNull;
  20. import static com.google.common.base.Strings.isNullOrEmpty;
  21. import static com.google.common.net.InetAddresses.isInetAddress;
  22. import static org.jclouds.profitbricks.util.MacAddresses.isMacAddress;
  23. import java.util.List;
  24. import java.util.regex.Pattern;
  25. import org.jclouds.profitbricks.domain.Firewall;
  26. import org.jclouds.profitbricks.domain.Firewall.Protocol;
  27. /**
  28. * Static convenience methods for validating various ProfitBricks domain preconditions
  29. */
  30. public final class Preconditions {
  31. private static final Pattern INVALID_CHARS = Pattern.compile("^.*[@/\\|'`’^].*$");
  32. public static void checkInvalidChars(String name) {
  33. checkArgument(!isNullOrEmpty(name), "Name is required.");
  34. checkArgument(!INVALID_CHARS.matcher(name).matches(), "Name must not contain any of: @ / \\ | ' ` ’ ^");
  35. }
  36. public static void checkIp(String ip) {
  37. checkArgument(isInetAddress(ip), "IP '%s' is invalid", ip);
  38. }
  39. public static void checkIps(List<String> ips) {
  40. checkNotNull(ips, "Null ip list");
  41. for (String ip : ips)
  42. checkIp(ip);
  43. }
  44. public static void checkPortRange(Integer portRangeStart, Integer portRangeEnd, Firewall.Protocol protocol) {
  45. checkArgument(!(portRangeEnd == null ^ portRangeStart == null), "Port range must be both present or null");
  46. if (portRangeEnd != null) {
  47. checkArgument(protocol == Firewall.Protocol.TCP || protocol == Firewall.Protocol.UDP, "Port range can only be set for TCP or UDP");
  48. checkArgument(portRangeEnd > portRangeStart, "portRangeEnd must be greater than portRangeStart");
  49. checkArgument(portRangeEnd >= 1 && portRangeEnd <= 65534, "Port range end must be 1 to 65534");
  50. checkArgument(portRangeStart >= 1 && portRangeStart <= 65534, "Port range start must be 1 to 65534");
  51. }
  52. }
  53. public static void checkMacAddress(String macAddress) {
  54. checkArgument(isMacAddress(macAddress), "MAC must match pattern 'aa:bb:cc:dd:ee:ff'");
  55. }
  56. public static void checkIcmp(Integer icmpType, Integer icmpCode, Protocol protocol) {
  57. checkNotNull(protocol, "Protocol can't be null");
  58. if (protocol == Protocol.ICMP) {
  59. if (icmpType != null)
  60. checkArgument(icmpType >= 1 && icmpType <= 254, "ICMP type must be 1 to 254");
  61. if (icmpCode != null)
  62. checkArgument(icmpCode >= 1 && icmpCode <= 254, "ICMP code must be 1 to 254");
  63. }
  64. }
  65. public static void checkLanId(Integer id) {
  66. checkArgument(id >= 0, "LAN ID must be non-negative");
  67. }
  68. public static void checkCores(Integer cores) {
  69. checkArgument(cores > 0, "Number of cores must be atleast 1.");
  70. }
  71. public static void checkRam(Integer ram, Boolean isRamHotPlug) {
  72. int minRam = (isRamHotPlug == null || !isRamHotPlug) ? 256 : 1024;
  73. checkArgument(ram >= minRam && ram % 256 == 0, "RAM must be multiples of 256 with minimum of 256 MB "
  74. + "(1024 MB if ramHotPlug is enabled)");
  75. }
  76. public static void checkSize(Float size) {
  77. checkArgument(size > 1, "Storage size must be > 1GB");
  78. }
  79. private static final int VALID_PASSWORD_MIN_LENGTH = 8;
  80. private static final int VALID_PASSWORD_MAX_LENGTH = 50;
  81. private static final String PASSWORD_FORMAT = String.format(
  82. "[a-zA-Z0-9][^iIloOwWyYzZ10]{%d,%d}", VALID_PASSWORD_MIN_LENGTH - 1, VALID_PASSWORD_MAX_LENGTH);
  83. private static final Pattern PASSWORD_PATTERN = Pattern.compile(PASSWORD_FORMAT);
  84. public static void checkPassword(String password) {
  85. checkArgument(PASSWORD_PATTERN.matcher(password).matches(), "Password must be between 8 and 50 characters, "
  86. + "only a-z, A-Z, 0-9 without characters i, I, l, o, O, w, W, y, Y, z, Z and 1, 0");
  87. }
  88. }