org.noear.solon.docs.util.BasicAuthUtil Maven / Gradle / Ivy
/*
* Copyright 2017-2024 noear.org and authors
*
* 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
*
* https://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.noear.solon.docs.util;
import org.noear.solon.docs.DocDocket;
import org.noear.solon.Utils;
import org.noear.solon.core.handle.Context;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.util.Base64;
/**
* @author noear
* @since 2.3
*/
public class BasicAuthUtil {
static final Charset UTF_8 = Charset.forName("UTF-8");
public static String base64DecodeToStr(String value) {
byte[] decodedValue = Base64.getDecoder().decode(value);
return new String(decodedValue, UTF_8);
}
public static String base64EncodeToStr(String user, String password) {
String value = user + ":" + password;
byte[] encodedValue = Base64.getEncoder().encode(value.getBytes(UTF_8));
return new String(encodedValue, UTF_8);
}
/**
* WWW-Authenticate 简单认证
*/
public static boolean basicAuth(Context ctx, DocDocket docket) throws IOException {
if (docket.basicAuth() == null || docket.basicAuth().size() == 0) {
// 未启用简单认证
return true;
}
String authorization = ctx.header("Authorization");
if (Utils.isBlank(authorization)) {
// 请求头无认证信息
return false;
}
String nameAndPwd = base64DecodeToStr(authorization.substring(6));
String[] upArr = nameAndPwd.split(":");
if (upArr.length != 2) {
return false;
}
String iptName = upArr[0];
String iptPwd = upArr[1];
return iptPwd.equals(docket.basicAuth().get(iptName));
}
public static void response401(Context ctx) throws IOException {
String realm = URLEncoder.encode("请输入文档访问账号密码", "utf-8");
ctx.status(401);
ctx.headerSet("WWW-Authenticate", "Basic realm=\"" + realm + "\"");
ctx.output("无权限访问");
}
}