|
@@ -0,0 +1,93 @@
|
|
|
+/*
|
|
|
+ * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
|
|
|
+ *
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
+ * you may not use this file except in compliance with the License.
|
|
|
+ * You may obtain a copy of the License at
|
|
|
+ *
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ *
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
+ * See the License for the specific language governing permissions and
|
|
|
+ * limitations under the License.
|
|
|
+ */
|
|
|
+
|
|
|
+package org.maxkey.util;
|
|
|
+
|
|
|
+
|
|
|
+import java.util.Locale;
|
|
|
+import java.util.regex.Pattern;
|
|
|
+
|
|
|
+import org.maxkey.client.oauth.model.OAuthConstants;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Utils for checking preconditions and invariants
|
|
|
+ */
|
|
|
+public abstract class Preconditions {
|
|
|
+
|
|
|
+ private static final String DEFAULT_MESSAGE = "Received an invalid parameter";
|
|
|
+
|
|
|
+ // scheme = alpha *( alpha | digit | "+" | "-" | "." )
|
|
|
+ private static final String URL_REGEXP = "^[a-zA-Z][a-zA-Z0-9+.-]*://\\S+";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Checks that an object is not null.
|
|
|
+ *
|
|
|
+ * @param object any object
|
|
|
+ * @param errorMsg error message
|
|
|
+ *
|
|
|
+ * @throws IllegalArgumentException if the object is null
|
|
|
+ */
|
|
|
+ public static void checkNotNull(Object object, String errorMsg) {
|
|
|
+ check(object != null, errorMsg);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Checks that a string is not null or empty
|
|
|
+ *
|
|
|
+ * @param string any string
|
|
|
+ * @param errorMsg error message
|
|
|
+ *
|
|
|
+ * @throws IllegalArgumentException if the string is null or empty
|
|
|
+ */
|
|
|
+ public static void checkEmptyString(String string, String errorMsg) {
|
|
|
+ check(string != null && !string.trim().isEmpty(), errorMsg);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Checks that a URL is valid
|
|
|
+ *
|
|
|
+ * @param url any string
|
|
|
+ * @param errorMsg error message
|
|
|
+ */
|
|
|
+ public static void checkValidUrl(String url, String errorMsg) {
|
|
|
+ checkEmptyString(url, errorMsg);
|
|
|
+ check(isUrl(url), errorMsg);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Checks that a URL is a valid OAuth callback
|
|
|
+ *
|
|
|
+ * @param url any string
|
|
|
+ * @param errorMsg error message
|
|
|
+ */
|
|
|
+ public static void checkValidOAuthCallback(String url, String errorMsg) {
|
|
|
+ checkEmptyString(url, errorMsg);
|
|
|
+ if (url.toLowerCase(Locale.getDefault()).compareToIgnoreCase(OAuthConstants.OUT_OF_BAND) != 0) {
|
|
|
+ check(isUrl(url), errorMsg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private static boolean isUrl(String url) {
|
|
|
+ return Pattern.compile(URL_REGEXP).matcher(url).matches();
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void check(boolean requirements, String error) {
|
|
|
+ if (!requirements) {
|
|
|
+ throw new IllegalArgumentException(error == null || error.trim().length() <= 0 ? DEFAULT_MESSAGE : error);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|