upload.asp 16 KB

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