imgUploadFile.asp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. <!--#include file="Conn.asp"--><%Checklogin("")
  2. ' upload demo for asp
  3. ' @requires xhEditor
  4. '
  5. ' @author Yanis.Wang<yanis.wang@gmail.com>
  6. ' @site http://xheditor.com/
  7. ' @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php)
  8. '
  9. ' @Version: 0.9.3 (build 100504)
  10. '
  11. ' 注1:本程序仅为演示用,请您根据自己需求进行相应修改,或者重开发
  12. ' 注2:本程序调用的无惧上传类 V2.2为xhEditor特别针对HTML5上传而修改过的版本
  13. 'option explicit
  14. response.charset="UTF-8"
  15. dim inputname,immediate,attachdir,dirtype,maxattachsize,upext,msgtype
  16. inputname="filedata"'表单文件域name
  17. attachdir="u"'上传文件保存路径,结尾不要带/
  18. dirtype=2'1:按天存入目录 2:按月存入目录 3:按扩展名存目录 建议使用按天存
  19. maxattachsize=5242880'最大上传大小,默认是2M
  20. upext="txt,rar,zip,jpg,jpeg,gif,png,swf,wmv,avi,wma,mp3,mid,pdf"'上传扩展名
  21. msgtype=2'返回上传参数的格式:1,只返回url,2,返回参数数组
  22. immediate=Request.QueryString("immediate")'立即上传模式,仅为演示用
  23. id=Request.QueryString("id")
  24. dim err,msg,upfile
  25. err = ""
  26. msg = "''"
  27. set upfile=new upfile_class
  28. upfile.AllowExt=replace(upext,",",";")+";"
  29. upfile.GetData(maxattachsize)
  30. if upfile.isErr then
  31. select case upfile.isErr
  32. case 1
  33. err="无数据提交"
  34. case 2
  35. err="文件大小超过 "+cstr(maxattachsize)+"字节"
  36. case else
  37. err=upfile.ErrMessage
  38. end select
  39. else
  40. dim attach_dir,attach_subdir,filename,extension,target,tmpfile
  41. extension=upfile.file(inputname).FileExt
  42. select case dirtype
  43. case 1
  44. attach_subdir="day_"+DateFormat(now,"yymmdd")
  45. case 2
  46. attach_subdir="m"+DateFormat(now,"yymm")
  47. case 3
  48. attach_subdir="ext_"+extension
  49. end select
  50. attach_dir=attachdir+"/"+attach_subdir+"/"
  51. '建文件夹
  52. CreateFolder attach_dir
  53. tmpfile=upfile.AutoSave(inputname,Server.mappath(attach_dir)+"\")
  54. if upfile.isErr then
  55. if upfile.isErr=3 then
  56. err="上传文件扩展名必需为:"+upext
  57. else
  58. err=upfile.ErrMessage
  59. end if
  60. else
  61. '生成随机文件名并改名
  62. Randomize timer
  63. filename=DateFormat(now,"ddhhnnss")+cstr(cint(99*Rnd))+"."+extension
  64. target=attach_dir+filename
  65. moveFile attach_dir+tmpfile,target
  66. if immediate="1" then target="!"+target
  67. imgurl = target
  68. target=jsonString(target)
  69. if msgtype=1 then
  70. msg="'"+target+"'"
  71. else
  72. msg="{'url':'"+target+"','localname':'"+jsonString(upfile.file(inputname).FileName)+"','id':'1'}"
  73. end if
  74. end if
  75. end if
  76. set upfile=nothing
  77. act = Request.QueryString("act")
  78. If act = "s" Then
  79. Response.Write "<script>parent.document.getElementById("""&id&""").value='/System/"&imgurl&"';location.href='imgUpload.asp'</script>"
  80. Else
  81. response.write "{'err':'"+jsonString(err)+"','msg':"+msg+"}"
  82. End If
  83. function jsonString(str)
  84. str=replace(str,"\","\\")
  85. str=replace(str,"/","\/")
  86. str=replace(str,"'","\'")
  87. jsonString=str
  88. end function
  89. Function Iif(expression,returntrue,returnfalse)
  90. If expression=true Then
  91. iif=returntrue
  92. Else
  93. iif=returnfalse
  94. End If
  95. End Function
  96. function DateFormat(strDate,fstr)
  97. if isdate(strDate) then
  98. dim i,temp
  99. temp=replace(fstr,"yyyy",DatePart("yyyy",strDate))
  100. temp=replace(temp,"yy",mid(DatePart("yyyy",strDate),3))
  101. temp=replace(temp,"y",DatePart("y",strDate))
  102. temp=replace(temp,"w",DatePart("w",strDate))
  103. temp=replace(temp,"ww",DatePart("ww",strDate))
  104. temp=replace(temp,"q",DatePart("q",strDate))
  105. temp=replace(temp,"mm",iif(len(DatePart("m",strDate))>1,DatePart("m",strDate),"0"&DatePart("m",strDate)))
  106. temp=replace(temp,"dd",iif(len(DatePart("d",strDate))>1,DatePart("d",strDate),"0"&DatePart("d",strDate)))
  107. temp=replace(temp,"hh",iif(len(DatePart("h",strDate))>1,DatePart("h",strDate),"0"&DatePart("h",strDate)))
  108. temp=replace(temp,"nn",iif(len(DatePart("n",strDate))>1,DatePart("n",strDate),"0"&DatePart("n",strDate)))
  109. temp=replace(temp,"ss",iif(len(DatePart("s",strDate))>1,DatePart("s",strDate),"0"&DatePart("s",strDate)))
  110. DateFormat=temp
  111. else
  112. DateFormat=false
  113. end if
  114. end function
  115. Function CreateFolder(FolderPath)
  116. dim lpath,fs,f
  117. lpath=Server.MapPath(FolderPath)
  118. Set fs=Server.CreateObject("Scri"&"pting.File"&"Sys"&"temObject")
  119. If not fs.FolderExists(lpath) then
  120. Set f=fs.CreateFolder(lpath)
  121. CreateFolder=F.Path
  122. end if
  123. Set F=Nothing
  124. Set fs=Nothing
  125. End Function
  126. Function moveFile(oldfile,newfile)
  127. dim fs
  128. Set fs=Server.CreateObject("Scri"&"pting.File"&"Sys"&"temObject")
  129. fs.movefile Server.MapPath(oldfile),Server.MapPath(newfile)
  130. Set fs=Nothing
  131. End Function
  132. '----------------------------------------------------------------------
  133. '转发时请保留此声明信息,这段声明不并会影响你的速度!
  134. '******************* 无惧上传类 V2.2 xheditor特别修改版 ************************************
  135. '作者:梁无惧
  136. '网站:http://www.25cn.com
  137. '电子邮件:yjlrb@21cn.com
  138. '版权声明:版权所有,源代码公开,各种用途均可免费使用,但是修改后必须把修改后的文件
  139. '发送一份给作者.并且保留作者此版权信息
  140. '**********************************************************************
  141. '----------------------------------------------------------------------
  142. '----------------------------------------------------------------------
  143. '文件上传类
  144. Class UpFile_Class
  145. Dim Form,File
  146. Dim AllowExt_ '允许上传类型(白名单)
  147. Dim NoAllowExt_ '不允许上传类型(黑名单)
  148. Dim IsDebug_ '是否显示出错信息
  149. Private oUpFileStream '上传的数据流
  150. Private isErr_ '错误的代码,0或true表示无错
  151. Private ErrMessage_ '错误的字符串信息
  152. Private isGetData_ '指示是否已执行过GETDATA过程
  153. '------------------------------------------------------------------
  154. '类的属性
  155. Public Property Get Version
  156. Version="无惧上传类 Version V2.0"
  157. End Property
  158. Public Property Get isErr '错误的代码,0或true表示无错
  159. isErr=isErr_
  160. End Property
  161. Public Property Get ErrMessage '错误的字符串信息
  162. ErrMessage=ErrMessage_
  163. End Property
  164. Public Property Get AllowExt '允许上传类型(白名单)
  165. AllowExt=AllowExt_
  166. End Property
  167. Public Property Let AllowExt(Value) '允许上传类型(白名单)
  168. AllowExt_=LCase(Value)
  169. End Property
  170. Public Property Get NoAllowExt '不允许上传类型(黑名单)
  171. NoAllowExt=NoAllowExt_
  172. End Property
  173. Public Property Let NoAllowExt(Value) '不允许上传类型(黑名单)
  174. NoAllowExt_=LCase(Value)
  175. End Property
  176. Public Property Let IsDebug(Value) '是否设置为调试模式
  177. IsDebug_=Value
  178. End Property
  179. '----------------------------------------------------------------
  180. '类实现代码
  181. '初始化类
  182. Private Sub Class_Initialize
  183. isErr_ = 0
  184. NoAllowExt="" '黑名单,可以在这里预设不可上传的文件类型,以文件的后缀名来判断,不分大小写,每个每缀名用;号分开,如果黑名单为空,则判断白名单
  185. NoAllowExt=LCase(NoAllowExt)
  186. AllowExt="" '白名单,可以在这里预设可上传的文件类型,以文件的后缀名来判断,不分大小写,每个后缀名用;号分开
  187. AllowExt=LCase(AllowExt)
  188. isGetData_=false
  189. End Sub
  190. '类结束
  191. Private Sub Class_Terminate
  192. on error Resume Next
  193. '清除变量及对像
  194. Form.RemoveAll
  195. Set Form = Nothing
  196. File.RemoveAll
  197. Set File = Nothing
  198. oUpFileStream.Close
  199. Set oUpFileStream = Nothing
  200. if Err.number<>0 then OutErr("清除类时发生错误!")
  201. End Sub
  202. '分析上传的数据
  203. Public Sub GetData (MaxSize)
  204. '定义变量
  205. on error Resume Next
  206. if isGetData_=false then
  207. Dim RequestBinData,sSpace,bCrLf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,oFileInfo
  208. Dim sFormValue,sFileName
  209. Dim iFindStart,iFindEnd
  210. Dim iFormStart,iFormEnd,sFormName
  211. '代码开始
  212. If Request.TotalBytes < 1 Then '如果没有数据上传
  213. isErr_ = 1
  214. ErrMessage_="没有数据上传,这是因为直接提交网址所产生的错误!"
  215. OutErr("没有数据上传,这是因为直接提交网址所产生的错误!!")
  216. Exit Sub
  217. End If
  218. If MaxSize > 0 Then '如果限制大小
  219. If Request.TotalBytes > MaxSize Then
  220. isErr_ = 2 '如果上传的数据超出限制大小
  221. ErrMessage_="上传的数据超出限制大小!"
  222. OutErr("上传的数据超出限制大小!")
  223. Exit Sub
  224. End If
  225. End If
  226. Set Form = Server.CreateObject ("Scripting.Dictionary")
  227. Form.CompareMode = 1
  228. Set File = Server.CreateObject ("Scripting.Dictionary")
  229. File.CompareMode = 1
  230. Set tStream = Server.CreateObject ("ADODB.Stream")
  231. Set oUpFileStream = Server.CreateObject ("ADODB.Stream")
  232. if Err.number<>0 then OutErr("创建流对象(ADODB.STREAM)时出错,可能系统不支持或没有开通该组件")
  233. oUpFileStream.Type = 1
  234. oUpFileStream.Mode = 3
  235. oUpFileStream.Open
  236. oUpFileStream.Write Request.BinaryRead (Request.TotalBytes)
  237. oUpFileStream.Position = 0
  238. RequestBinData = oUpFileStream.Read
  239. Dim sHtml5FileInfo
  240. sHtml5FileInfo=Request.ServerVariables("HTTP_CONTENT_DISPOSITION")
  241. If sHtml5FileInfo<>"" Then'针对Html5上传特别修正
  242. iFindStart = InStr (1,sHtml5FileInfo,"name=""",1)+6
  243. iFindEnd = InStr (iFindStart,sHtml5FileInfo,"""",1)
  244. sFormName=Trim(Mid(sHtml5FileInfo,iFindStart,iFindEnd-iFindStart))
  245. iFindStart = InStr (iFindStart,sHtml5FileInfo,"filename=""",1)+10
  246. iFindEnd = InStr (iFindStart,sHtml5FileInfo,"""",1)
  247. sFileName = Trim(Mid(sHtml5FileInfo,iFindStart,iFindEnd-iFindStart))
  248. Set oFileInfo = new FileInfo_Class
  249. oFileInfo.FileName = GetFileName(sFileName)
  250. oFileInfo.FilePath = GetFilePath(sFileName)
  251. oFileInfo.FileExt = GetFileExt(sFileName)
  252. oFileInfo.FileStart = 0
  253. oFileInfo.FileSize = Request.TotalBytes
  254. oFileInfo.FormName = sFormName
  255. file.add sFormName,oFileInfo
  256. Else
  257. iFormEnd = oUpFileStream.Size
  258. bCrLf = ChrB (13) & ChrB (10)
  259. '取得每个项目之间的分隔符
  260. sSpace = MidB (RequestBinData,1, InStrB (1,RequestBinData,bCrLf)-1)
  261. iStart = LenB(sSpace)
  262. iFormStart = iStart+2
  263. '分解项目
  264. Do
  265. iInfoEnd = InStrB (iFormStart,RequestBinData,bCrLf & bCrLf)+3
  266. tStream.Type = 1
  267. tStream.Mode = 3
  268. tStream.Open
  269. oUpFileStream.Position = iFormStart
  270. oUpFileStream.CopyTo tStream,iInfoEnd-iFormStart
  271. tStream.Position = 0
  272. tStream.Type = 2
  273. tStream.CharSet = "utf-8"
  274. sInfo = tStream.ReadText
  275. '取得表单项目名称
  276. iFormStart = InStrB (iInfoEnd,RequestBinData,sSpace)-1
  277. iFindStart = InStr (22,sInfo,"name=""",1)+6
  278. iFindEnd = InStr (iFindStart,sInfo,"""",1)
  279. sFormName = Mid(sinfo,iFindStart,iFindEnd-iFindStart)
  280. '如果是文件
  281. If InStr (45,sInfo,"filename=""",1) > 0 Then
  282. Set oFileInfo = new FileInfo_Class
  283. '取得文件属性
  284. iFindStart = InStr (iFindEnd,sInfo,"filename=""",1)+10
  285. iFindEnd = InStr (iFindStart,sInfo,""""&vbCrLf,1)
  286. sFileName = Trim(Mid(sinfo,iFindStart,iFindEnd-iFindStart))
  287. oFileInfo.FileName = GetFileName(sFileName)
  288. oFileInfo.FilePath = GetFilePath(sFileName)
  289. oFileInfo.FileExt = GetFileExt(sFileName)
  290. iFindStart = InStr (iFindEnd,sInfo,"Content-Type: ",1)+14
  291. iFindEnd = InStr (iFindStart,sInfo,vbCr)
  292. oFileInfo.FileMIME = Mid(sinfo,iFindStart,iFindEnd-iFindStart)
  293. oFileInfo.FileStart = iInfoEnd
  294. oFileInfo.FileSize = iFormStart -iInfoEnd -2
  295. oFileInfo.FormName = sFormName
  296. file.add sFormName,oFileInfo
  297. else
  298. '如果是表单项目
  299. tStream.Close
  300. tStream.Type = 1
  301. tStream.Mode = 3
  302. tStream.Open
  303. oUpFileStream.Position = iInfoEnd
  304. oUpFileStream.CopyTo tStream,iFormStart-iInfoEnd-2
  305. tStream.Position = 0
  306. tStream.Type = 2
  307. tStream.CharSet = "utf-8"
  308. sFormValue = tStream.ReadText
  309. If Form.Exists (sFormName) Then
  310. Form (sFormName) = Form (sFormName) & ", " & sFormValue
  311. else
  312. Form.Add sFormName,sFormValue
  313. End If
  314. End If
  315. tStream.Close
  316. iFormStart = iFormStart+iStart+2
  317. '如果到文件尾了就退出
  318. Loop Until (iFormStart+2) >= iFormEnd
  319. if Err.number<>0 then OutErr("分解上传数据时发生错误,可能客户端的上传数据不正确或不符合上传数据规则")
  320. End if
  321. RequestBinData = ""
  322. Set tStream = Nothing
  323. isGetData_=true
  324. end if
  325. End Sub
  326. '保存到文件,自动覆盖已存在的同名文件
  327. Public Function SaveToFile(Item,Path)
  328. SaveToFile=SaveToFileEx(Item,Path,True)
  329. End Function
  330. '保存到文件,自动设置文件名
  331. Public Function AutoSave(Item,Path)
  332. AutoSave=SaveToFileEx(Item,Path,false)
  333. End Function
  334. '保存到文件,OVER为真时,自动覆盖已存在的同名文件,否则自动把文件改名保存
  335. Private Function SaveToFileEx(Item,Path,Over)
  336. On Error Resume Next
  337. Dim FileExt
  338. if file.Exists(Item) then
  339. Dim oFileStream
  340. Dim tmpPath
  341. isErr_=0
  342. Set oFileStream = CreateObject ("ADODB.Stream")
  343. oFileStream.Type = 1
  344. oFileStream.Mode = 3
  345. oFileStream.Open
  346. oUpFileStream.Position = File(Item).FileStart
  347. oUpFileStream.CopyTo oFileStream,File(Item).FileSize
  348. tmpPath=Split(Path,".")(0)
  349. FileExt=GetFileExt(Path)
  350. if Over then
  351. if isAllowExt(FileExt) then
  352. oFileStream.SaveToFile tmpPath & "." & FileExt,2
  353. if Err.number<>0 then OutErr("保存文件时出错,请检查路径,是否存在该上传目录!该文件保存路径为" & tmpPath & "." & FileExt)
  354. Else
  355. isErr_=3
  356. ErrMessage_="该后缀名的文件不允许上传!"
  357. OutErr("该后缀名的文件不允许上传")
  358. End if
  359. Else
  360. Path=GetFilePath(Path)
  361. dim fori
  362. fori=1
  363. if isAllowExt(File(Item).FileExt) then
  364. do
  365. fori=fori+1
  366. Err.Clear()
  367. tmpPath=Path&GetNewFileName()&"."&File(Item).FileExt
  368. oFileStream.SaveToFile tmpPath
  369. loop Until ((Err.number=0) or (fori>50))
  370. if Err.number<>0 then OutErr("自动保存文件出错,已经测试50次不同的文件名来保存,请检查目录是否存在!该文件最后一次保存时全路径为"&Path&GetNewFileName()&"."&File(Item).FileExt)
  371. Else
  372. isErr_=3
  373. ErrMessage_="该后缀名的文件不允许上传!"
  374. OutErr("该后缀名的文件不允许上传")
  375. End if
  376. End if
  377. oFileStream.Close
  378. Set oFileStream = Nothing
  379. else
  380. ErrMessage_="不存在该对象(如该文件没有上传,文件为空)!"
  381. OutErr("不存在该对象(如该文件没有上传,文件为空)")
  382. end if
  383. if isErr_=3 then SaveToFileEx="" else SaveToFileEx=GetFileName(tmpPath)
  384. End Function
  385. '取得文件数据
  386. Public Function FileData(Item)
  387. isErr_=0
  388. if file.Exists(Item) then
  389. if isAllowExt(File(Item).FileExt) then
  390. oUpFileStream.Position = File(Item).FileStart
  391. FileData = oUpFileStream.Read (File(Item).FileSize)
  392. Else
  393. isErr_=3
  394. ErrMessage_="该后缀名的文件不允许上传"
  395. OutErr("该后缀名的文件不允许上传")
  396. FileData=""
  397. End if
  398. else
  399. ErrMessage_="不存在该对象(如该文件没有上传,文件为空)!"
  400. OutErr("不存在该对象(如该文件没有上传,文件为空)")
  401. end if
  402. End Function
  403. '取得文件路径
  404. Public function GetFilePath(FullPath)
  405. If FullPath <> "" Then
  406. GetFilePath = Left(FullPath,InStrRev(FullPath, "\"))
  407. Else
  408. GetFilePath = ""
  409. End If
  410. End function
  411. '取得文件名
  412. Public Function GetFileName(FullPath)
  413. If FullPath <> "" Then
  414. GetFileName = mid(FullPath,InStrRev(FullPath, "\")+1)
  415. Else
  416. GetFileName = ""
  417. End If
  418. End function
  419. '取得文件的后缀名
  420. Public Function GetFileExt(FullPath)
  421. If FullPath <> "" Then
  422. GetFileExt = LCase(Mid(FullPath,InStrRev(FullPath, ".")+1))
  423. Else
  424. GetFileExt = ""
  425. End If
  426. End function
  427. '取得一个不重复的序号
  428. Public Function GetNewFileName()
  429. dim ranNum
  430. dim dtNow
  431. dtNow=Now()
  432. randomize
  433. ranNum=int(90000*rnd)+10000
  434. '以下这段由webboy提供
  435. GetNewFileName=year(dtNow) & right("0" & month(dtNow),2) & right("0" & day(dtNow),2) & right("0" & hour(dtNow),2) & right("0" & minute(dtNow),2) & right("0" & second(dtNow),2) & ranNum
  436. End Function
  437. Public Function isAllowExt(Ext)
  438. if NoAllowExt="" then
  439. isAllowExt=cbool(InStr(1,";"&AllowExt&";",LCase(";"&Ext&";")))
  440. else
  441. isAllowExt=not CBool(InStr(1,";"&NoAllowExt&";",LCase(";"&Ext&";")))
  442. end if
  443. End Function
  444. End Class
  445. Public Sub OutErr(ErrMsg)
  446. if IsDebug_=true then
  447. Response.Write ErrMsg
  448. Response.End
  449. End if
  450. End Sub
  451. '----------------------------------------------------------------------------------------------------
  452. '文件属性类
  453. Class FileInfo_Class
  454. Dim FormName,FileName,FilePath,FileSize,FileMIME,FileStart,FileExt
  455. End Class
  456. %>