com.jeesuite.logging.integrate.storage.HttpApiLogStorageProvider Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2022 www.jeesuite.com.
*
* 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.jeesuite.logging.integrate.storage;
import org.springframework.beans.factory.annotation.Value;
import com.jeesuite.common.http.HttpRequestEntity;
import com.jeesuite.common.model.Page;
import com.jeesuite.common.model.PageParams;
import com.jeesuite.common.model.PageQueryRequest;
import com.jeesuite.common.util.JsonUtils;
import com.jeesuite.logging.integrate.ActionLog;
import com.jeesuite.logging.integrate.ActionLogQueryParam;
import com.jeesuite.logging.integrate.LogStorageProvider;
/**
*
* @description
* @author jiangwei
* @date 2021年5月13日
*/
public class HttpApiLogStorageProvider implements LogStorageProvider {
@Value("${jeesuite.actionlog.api.baseUrl}/actionlog/add")
private String addUrl;
@Value("${jeesuite.actionlog.api.baseUrl}/actionlog/list")
private String listUrl;
@Value("${jeesuite.actionlog.api.baseUrl}/actionlog/details")
private String detailsUrl;
@Override
public void storage(ActionLog log) {
HttpRequestEntity.post(addUrl).body(log).backendInternalCall().execute();
}
@Override
public Page pageQuery(PageParams pageParam, ActionLogQueryParam queryParam) {
PageQueryRequest pageQueryRequest;
pageQueryRequest = new PageQueryRequest<>(pageParam.getPageNo(), pageParam.getPageSize(), queryParam);
return HttpRequestEntity.post(listUrl).body(JsonUtils.toJson(pageQueryRequest)).execute().toPage(ActionLog.class);
}
@Override
public ActionLog getDetails(String id) {
return HttpRequestEntity.get(detailsUrl).queryParam("id", id).execute().toObject(ActionLog.class);
}
}