-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE #13023]Add Unit Test for ConfigQueryHandlerChainn and optimize…
… the logic (#13024) optimize Config Query Chain logic
- Loading branch information
Showing
16 changed files
with
856 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
.../java/com/alibaba/nacos/config/server/service/query/handler/ConfigContentTypeHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 1999-2024 Alibaba Group Holding Ltd. | ||
* | ||
* 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 com.alibaba.nacos.config.server.service.query.handler; | ||
|
||
import com.alibaba.nacos.config.server.enums.FileTypeEnum; | ||
import com.alibaba.nacos.config.server.service.query.model.ConfigQueryChainRequest; | ||
import com.alibaba.nacos.config.server.service.query.model.ConfigQueryChainResponse; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* The type Config content type handler. | ||
* @author Sunrisea | ||
*/ | ||
public class ConfigContentTypeHandler extends AbstractConfigQueryHandler { | ||
|
||
private static final String CONFIG_CONTENT_TYPE_HANDLER_NAME = "ConfigContentTypeHandler"; | ||
|
||
@Override | ||
public String getName() { | ||
return CONFIG_CONTENT_TYPE_HANDLER_NAME; | ||
} | ||
|
||
@Override | ||
public ConfigQueryChainResponse handle(ConfigQueryChainRequest request) throws IOException { | ||
ConfigQueryChainResponse response = getNextHandler().handle(request); | ||
if (response.getStatus() == ConfigQueryChainResponse.ConfigQueryStatus.CONFIG_NOT_FOUND | ||
|| response.getStatus() == ConfigQueryChainResponse.ConfigQueryStatus.SPECIAL_TAG_CONFIG_NOT_FOUND) { | ||
return response; | ||
} | ||
String contentType = | ||
response.getContentType() != null ? response.getContentType() : FileTypeEnum.TEXT.getFileType(); | ||
FileTypeEnum fileTypeEnum = FileTypeEnum.getFileTypeEnumByFileExtensionOrFileType(contentType); | ||
String contentTypeHeader = fileTypeEnum.getContentType(); | ||
response.setContentType(contentTypeHeader); | ||
return response; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.