소스 검색

去掉编辑器有漏洞的方法

黑龙江艺术高中职
dao 1 개월 전
부모
커밋
f32496d8a6
1개의 변경된 파일22개의 추가작업 그리고 22개의 파일을 삭제
  1. +22
    -22
      Learun.Framework.Ultimate V7/Learun.Application.Web/Controllers/UtilityController.cs

+ 22
- 22
Learun.Framework.Ultimate V7/Learun.Application.Web/Controllers/UtilityController.cs 파일 보기

@@ -269,29 +269,29 @@ namespace Learun.Application.Web.Controllers
}.ToJson());
}

public ActionResult CrawlerHandler()
{
string[] sources = Request.Form.GetValues("source[]");
if (sources == null || sources.Length == 0)
{
return Content(new
{
state = "参数错误:没有指定抓取源"
}.ToJson());
}
//public ActionResult CrawlerHandler()
//{
// string[] sources = Request.Form.GetValues("source[]");
// if (sources == null || sources.Length == 0)
// {
// return Content(new
// {
// state = "参数错误:没有指定抓取源"
// }.ToJson());
// }

UeditorCrawler[] crawlers = sources.Select(x => new UeditorCrawler(x).Fetch()).ToArray();
return Content(new
{
state = "SUCCESS",
list = crawlers.Select(x => new
{
state = x.State,
source = x.SourceUrl,
url = x.ServerUrl
})
}.ToJson());
}
// UeditorCrawler[] crawlers = sources.Select(x => new UeditorCrawler(x).Fetch()).ToArray();
// return Content(new
// {
// state = "SUCCESS",
// list = crawlers.Select(x => new
// {
// state = x.State,
// source = x.SourceUrl,
// url = x.ServerUrl
// })
// }.ToJson());
//}
private string GetStateMessage(UeditorUploadState state)
{
switch (state)


불러오는 중...
취소
저장