You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.7 KiB
122 lines
4.7 KiB
package com.dji.sample.manage.controller; |
|
|
|
import com.dji.sample.common.model.CustomClaim; |
|
import com.dji.sample.common.model.PaginationData; |
|
import com.dji.sample.common.model.ResponseResult; |
|
import com.dji.sample.manage.model.dto.DeviceLogsDTO; |
|
import com.dji.sample.manage.model.param.DeviceLogsCreateParam; |
|
import com.dji.sample.manage.model.param.DeviceLogsQueryParam; |
|
import com.dji.sample.manage.model.param.LogsFileUpdateParam; |
|
import com.dji.sample.manage.service.IDeviceLogsService; |
|
import lombok.extern.slf4j.Slf4j; |
|
import org.springframework.beans.factory.annotation.Autowired; |
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
import javax.servlet.http.HttpServletResponse; |
|
import java.net.URL; |
|
import java.util.List; |
|
|
|
import static com.dji.sample.component.AuthInterceptor.TOKEN_CLAIM; |
|
|
|
/** |
|
* @author sean |
|
* @version 1.2 |
|
* @date 2022/9/7 |
|
*/ |
|
@RestController |
|
@Slf4j |
|
@RequestMapping("${url.manage.prefix}${url.manage.version}/workspaces") |
|
public class DeviceLogsController { |
|
|
|
@Autowired |
|
private IDeviceLogsService deviceLogsService; |
|
|
|
/** |
|
* Obtain the device upload log list by paging according to the query parameters. |
|
* @param workspaceId |
|
* @param deviceSn |
|
* @param param |
|
* @return |
|
*/ |
|
@GetMapping("/{workspace_id}/devices/{device_sn}/logs-uploaded") |
|
public ResponseResult getUploadedLogs(DeviceLogsQueryParam param, @PathVariable("workspace_id") String workspaceId, |
|
@PathVariable("device_sn") String deviceSn) { |
|
PaginationData<DeviceLogsDTO> data = deviceLogsService.getUploadedLogs(deviceSn, param); |
|
return ResponseResult.success(data); |
|
} |
|
|
|
/** |
|
* Get a list of log files that can be uploaded in real time. |
|
* @param workspaceId |
|
* @param deviceSn |
|
* @param domainList |
|
* @return |
|
*/ |
|
@GetMapping("/{workspace_id}/devices/{device_sn}/logs") |
|
public ResponseResult getLogsBySn(@PathVariable("workspace_id") String workspaceId, |
|
@PathVariable("device_sn") String deviceSn, |
|
@RequestParam("domain_list") List<String> domainList) { |
|
return deviceLogsService.getRealTimeLogs(deviceSn, domainList); |
|
} |
|
|
|
/** |
|
* Initiate a log upload request to the gateway. |
|
* @return |
|
*/ |
|
@PostMapping("/{workspace_id}/devices/{device_sn}/logs") |
|
public ResponseResult uploadLogs(@PathVariable("workspace_id") String workspaceId, |
|
@PathVariable("device_sn") String deviceSn, |
|
HttpServletRequest request, @RequestBody DeviceLogsCreateParam param) { |
|
|
|
CustomClaim customClaim = (CustomClaim)request.getAttribute(TOKEN_CLAIM); |
|
|
|
return deviceLogsService.pushFileUpload(customClaim.getUsername(), deviceSn, param); |
|
} |
|
|
|
/** |
|
* Cancel logs file upload. |
|
* @return |
|
*/ |
|
@DeleteMapping("/{workspace_id}/devices/{device_sn}/logs") |
|
public ResponseResult cancelUploadedLogs(@PathVariable("workspace_id") String workspaceId, |
|
@PathVariable("device_sn") String deviceSn, |
|
@RequestBody LogsFileUpdateParam param) { |
|
|
|
return deviceLogsService.pushUpdateFile(deviceSn, param); |
|
} |
|
|
|
/** |
|
* Delete upload history. |
|
* @return |
|
*/ |
|
@DeleteMapping("/{workspace_id}/devices/{device_sn}/logs/{logs_id}") |
|
public ResponseResult deleteUploadedLogs(@PathVariable("workspace_id") String workspaceId, |
|
@PathVariable("device_sn") String deviceSn, |
|
@PathVariable("logs_id") String logsId) { |
|
deviceLogsService.deleteLogs(deviceSn, logsId); |
|
return ResponseResult.success(); |
|
} |
|
/** |
|
* Query the download address of the file according to the wayline file id, |
|
* and redirect to this address directly for download. |
|
* @param workspaceId |
|
* @param fileId |
|
* @param logsId |
|
* @param response |
|
*/ |
|
@GetMapping("/{workspace_id}/logs/{logs_id}/url/{file_id}") |
|
public ResponseResult getFileUrl(@PathVariable(name = "workspace_id") String workspaceId, |
|
@PathVariable(name = "file_id") String fileId, |
|
@PathVariable(name = "logs_id") String logsId, HttpServletResponse response) { |
|
|
|
try { |
|
URL url = deviceLogsService.getLogsFileUrl(logsId, fileId); |
|
return ResponseResult.success(url.toString()); |
|
} catch (Exception e) { |
|
log.error("Failed to get the logs file download address."); |
|
e.printStackTrace(); |
|
} |
|
return ResponseResult.error("Failed to get the logs file download address."); |
|
} |
|
}
|
|
|