|
|
@@ -137,4 +137,20 @@ public class CrawlerController {
|
|
|
crawlerService.jsoupIkoaMovie4VideoInfo(bitrate);
|
|
|
return "success";
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * findIkoaMovie4VideoInfo
|
|
|
+ *
|
|
|
+ * @author lvzhiqiang
|
|
|
+ * 2022/10/11 14:31
|
|
|
+ */
|
|
|
+ @RequestMapping("/findIkoaMovie4VideoInfo")
|
|
|
+ @ResponseBody
|
|
|
+ public String findIkoaMovie4VideoInfo(String bitrate, String order) throws Exception {
|
|
|
+ if (StringUtils.isEmpty(bitrate)) {
|
|
|
+ throw new ParameterException("bitrate不能为空");
|
|
|
+ }
|
|
|
+
|
|
|
+ return crawlerService.findIkoaMovie4VideoInfo(bitrate, order);
|
|
|
+ }
|
|
|
}
|