Upload.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:11k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <!--#include file="Include/Startup.asp"-->
  2. <!--#include file="Include/upfile_class.asp"-->
  3. <%
  4. Server.ScriptTimeOut = 1800
  5. ' 参数变量
  6. Dim sType, sStyleName
  7. ' 设置变量
  8. Dim sAllowExt, nAllowSize, sUploadDir, nUploadObject, nAutoDir, sBaseUrl, sContentPath
  9. ' 接口变量
  10. Dim sFileExt, sOriginalFileName, sSaveFileName, sPathFileName, nFileNum
  11. Call DBConnBegin() ' 初始化数据库连接
  12. Call InitUpload() ' 初始化上传变量
  13. Call DBConnEnd() ' 断开数据库连接
  14. Dim sAction
  15. sAction = UCase(Trim(Request.QueryString("action")))
  16. Select Case sAction
  17. Case "REMOTE"
  18. Call DoRemote() ' 远程自动获取
  19. Case "SAVE"
  20. Call ShowForm() ' 显示上传表单
  21. Call DoSave() ' 存文件
  22. Case Else
  23. Call ShowForm() ' 显示上传表单
  24. End Select
  25. Sub ShowForm() 
  26. %>
  27. <HTML>
  28. <HEAD>
  29. <TITLE>文件上传</TITLE>
  30. <META http-equiv=Content-Type content="text/html; charset=gb2312">
  31. <meta name="Author" contect="">
  32. <style type="text/css">
  33. body, a, table, div, span, td, th, input, select{font:9pt;font-family: "宋体", Verdana, Arial, Helvetica, sans-serif;}
  34. body {padding:0px;margin:0px}
  35. </style>
  36. <script language="JavaScript" src="dialog/dialog.js"></script>
  37. </head>
  38. <body bgcolor=menu>
  39. <form action="?action=save&type=<%=sType%>&style=<%=sStyleName%>" method=post name=myform enctype="multipart/form-data">
  40. <input type=file name=uploadfile size=1 style="width:100%" onchange="originalfile.value=this.value">
  41. <input type=hidden name=originalfile value="">
  42. </form>
  43. <script language=javascript>
  44. var sAllowExt = "<%=sAllowExt%>";
  45. // 检测上传表单
  46. function CheckUploadForm() {
  47. if (!IsExt(document.myform.uploadfile.value,sAllowExt)){
  48. parent.UploadError("提示:nn请选择一个有效的文件,n支持的格式有("+sAllowExt+")!");
  49. return false;
  50. }
  51. return true
  52. }
  53. // 提交事件加入检测表单
  54. var oForm = document.myform ;
  55. oForm.attachEvent("onsubmit", CheckUploadForm) ;
  56. if (! oForm.submitUpload) oForm.submitUpload = new Array() ;
  57. oForm.submitUpload[oForm.submitUpload.length] = CheckUploadForm ;
  58. if (! oForm.originalSubmit) {
  59. oForm.originalSubmit = oForm.submit ;
  60. oForm.submit = function() {
  61. if (this.submitUpload) {
  62. for (var i = 0 ; i < this.submitUpload.length ; i++) {
  63. this.submitUpload[i]() ;
  64. }
  65. }
  66. this.originalSubmit() ;
  67. }
  68. }
  69. // 上传表单已装入完成
  70. try {
  71. parent.UploadLoaded();
  72. }
  73. catch(e){
  74. }
  75. </script>
  76. </body>
  77. </html>
  78. <% 
  79. End Sub 
  80. ' 保存操作
  81. Sub DoSave()
  82. ' 默认无组件上传类
  83. Call DoUpload_Class
  84. sPathFileName = sContentPath & sSaveFileName
  85. Call OutScript("parent.UploadSaved('" & sPathFileName & "');var obj=parent.dialogArguments.dialogArguments;if (!obj) obj=parent.dialogArguments;try{obj.addUploadFile('" & sOriginalFileName & "', '" & sSaveFileName & "', '" & sPathFileName & "');} catch(e){}")
  86. End Sub
  87. ' 自动获取远程文件
  88. Sub DoRemote()
  89. Dim sContent, i
  90. For i = 1 To Request.Form("eWebEditor_UploadText").Count 
  91. sContent = sContent & Request.Form("eWebEditor_UploadText")(i) 
  92. Next
  93. If sAllowExt <> "" Then
  94. sContent = ReplaceRemoteUrl(sContent, sAllowExt)
  95. End If
  96. Response.Write "<HTML><HEAD><TITLE>远程上传</TITLE><meta http-equiv='Content-Type' content='text/html; charset=gb2312'></head><body>" & _
  97. "<input type=hidden id=UploadText value=""" & inHTML(sContent) & """>" & _
  98. "</body></html>"
  99. Call OutScriptNoBack("parent.setHTML(UploadText.value);try{parent.addUploadFile('" & sOriginalFileName & "', '" & sSaveFileName & "', '" & sPathFileName & "');} catch(e){} parent.remoteUploadOK();")
  100. End Sub
  101. ' 无组上传类
  102. Sub DoUpload_Class()
  103. On Error Resume Next
  104. Dim oUpload, oFile
  105. ' 建立上传对象
  106. Set oUpload = New upfile_class
  107. ' 取得上传数据,限制最大上传
  108. oUpload.GetData(nAllowSize*1024)
  109. If oUpload.Err > 0 Then
  110. Select Case oUpload.Err
  111. Case 1
  112. Call OutScript("parent.UploadError('请选择有效的上传文件!')")
  113. Case 2
  114. Call OutScript("parent.UploadError('你上传的文件总大小超出了最大限制(" & nAllowSize & "KB)!')")
  115. End Select
  116. Response.End
  117. End If
  118. Set oFile = oUpload.File("uploadfile")
  119. sFileExt = LCase(oFile.FileExt)
  120. Call CheckValidExt(sFileExt)
  121. sOriginalFileName = oFile.FileName
  122. sSaveFileName = GetRndFileName(sFileExt)
  123. oFile.SaveToFile Server.Mappath(sUploadDir & sSaveFileName)
  124. Set oFile = Nothing
  125. Set oUpload = Nothing
  126. End Sub
  127. ' 取随机文件名
  128. Function GetRndFileName(sExt)
  129. Dim sRnd
  130. Randomize
  131. sRnd = Int(900 * Rnd) + 100
  132. GetRndFileName = year(now) & month(now) & day(now) & hour(now) & minute(now) & second(now) & sRnd & "." & sExt
  133. End Function
  134. ' 输出客户端脚本
  135. Sub OutScript(str)
  136. Response.Write "<script language=javascript>" & str & ";history.back()</script>"
  137. End Sub
  138. Sub OutScriptNoBack(str)
  139. Response.Write "<script language=javascript>" & str & "</script>"
  140. End Sub
  141. ' 检测扩展名的有效性
  142. Sub CheckValidExt(sExt)
  143. Dim b, i, aExt
  144. b = False
  145. aExt = Split(sAllowExt, "|")
  146. For i = 0 To UBound(aExt)
  147. If LCase(aExt(i)) = sExt Then
  148. b = True
  149. Exit For
  150. End If
  151. Next
  152. If b = False Then
  153. OutScript("parent.UploadError('提示:nn请选择一个有效的文件,n支持的格式有("+sAllowExt+")!')")
  154. Response.End
  155. End If
  156. End Sub
  157. ' 初始化上传限制数据
  158. Sub InitUpload()
  159. sType = UCase(Trim(Request.QueryString("type")))
  160. sStyleName = Get_SafeStr(Trim(Request.QueryString("style")))
  161. sSql = "select * from ewebeditor_style where s_name='" & sStyleName & "'"
  162. oRs.Open sSql, oConn, 0, 1
  163. If Not oRs.Eof Then
  164. sBaseUrl = oRs("S_BaseUrl")
  165. nUploadObject = oRs("S_UploadObject")
  166. nAutoDir = oRs("S_AutoDir")
  167. sUploadDir = oRs("S_UploadDir")
  168. Select Case sBaseUrl
  169. Case "0"
  170. sContentPath = oRs("S_ContentPath")
  171. Case "1"
  172. sContentPath = RelativePath2RootPath(sUploadDir)
  173. Case "2"
  174. sContentPath = RootPath2DomainPath(RelativePath2RootPath(sUploadDir))
  175. End Select
  176. Select Case sType
  177. Case "REMOTE"
  178. sAllowExt = oRs("S_RemoteExt")
  179. nAllowSize = oRs("S_RemoteSize")
  180. Case "FILE"
  181. sAllowExt = oRs("S_FileExt")
  182. nAllowSize = oRs("S_FileSize")
  183. Case "MEDIA"
  184. sAllowExt = oRs("S_MediaExt")
  185. nAllowSize = oRs("S_MediaSize")
  186. Case "FLASH"
  187. sAllowExt = oRs("S_FlashExt")
  188. nAllowSize = oRs("S_FlashSize")
  189. Case Else
  190. sAllowExt = oRs("S_ImageExt")
  191. nAllowSize = oRs("S_ImageSize")
  192. End Select
  193. Else
  194. OutScript("parent.UploadError('无效的样式ID号,请通过页面上的链接进行操作!')")
  195. End If
  196. oRs.Close
  197. ' 任何情况下都不允许上传asp脚本文件
  198. sAllowExt = Replace(UCase(sAllowExt), "ASP", "")
  199. End Sub
  200. ' 转为根路径格式
  201. Function RelativePath2RootPath(url)
  202. Dim sTempUrl
  203. sTempUrl = url
  204. If Left(sTempUrl, 1) = "/" Then
  205. RelativePath2RootPath = sTempUrl
  206. Exit Function
  207. End If
  208. Dim sWebEditorPath
  209. sWebEditorPath = Request.ServerVariables("SCRIPT_NAME")
  210. sWebEditorPath = Left(sWebEditorPath, InstrRev(sWebEditorPath, "/") - 1)
  211. Do While Left(sTempUrl, 3) = "../"
  212. sTempUrl = Mid(sTempUrl, 4)
  213. sWebEditorPath = Left(sWebEditorPath, InstrRev(sWebEditorPath, "/") - 1)
  214. Loop
  215. RelativePath2RootPath = sWebEditorPath & "/" & sTempUrl
  216. End Function
  217. ' 根路径转为带域名全路径格式
  218. Function RootPath2DomainPath(url)
  219. Dim sHost, sPort
  220. sHost = Split(Request.ServerVariables("SERVER_PROTOCOL"), "/")(0) & "://" & Request.ServerVariables("HTTP_HOST")
  221. sPort = Request.ServerVariables("SERVER_PORT")
  222. If sPort <> "80" Then
  223. sHost = sHost & ":" & sPort
  224. End If
  225. RootPath2DomainPath = sHost & url
  226. End Function
  227. '================================================
  228. '作  用:替换字符串中的远程文件为本地文件并保存远程文件
  229. '参  数:
  230. ' sHTML : 要替换的字符串
  231. ' sExt : 执行替换的扩展名
  232. '================================================
  233. Function ReplaceRemoteUrl(sHTML, sExt)
  234. Dim s_Content
  235. s_Content = sHTML
  236. If IsObjInstalled("Microsoft.XMLHTTP") = False then
  237. ReplaceRemoteUrl = s_Content
  238. Exit Function
  239. End If
  240. Dim re, RemoteFile, RemoteFileurl, SaveFileName, SaveFileType
  241. Set re = new RegExp
  242. re.IgnoreCase  = True
  243. re.Global = True
  244. re.Pattern = "((http|https|ftp|rtsp|mms):(//|\\){1}(([A-Za-z0-9_-])+[.]){1,}(net|com|cn|org|cc|tv|[0-9]{1,3})(S*/)((S)+[.]{1}(" & sExt & ")))"
  245. Set RemoteFile = re.Execute(s_Content)
  246. Dim a_RemoteUrl(), n, i, bRepeat
  247. n = 0
  248. ' 转入无重复数据
  249. For Each RemoteFileurl in RemoteFile
  250. If n = 0 Then
  251. n = n + 1
  252. Redim a_RemoteUrl(n)
  253. a_RemoteUrl(n) = RemoteFileurl
  254. Else
  255. bRepeat = False
  256. For i = 1 To UBound(a_RemoteUrl)
  257. If UCase(RemoteFileurl) = UCase(a_RemoteUrl(i)) Then
  258. bRepeat = True
  259. Exit For
  260. End If
  261. Next
  262. If bRepeat = False Then
  263. n = n + 1
  264. Redim Preserve a_RemoteUrl(n)
  265. a_RemoteUrl(n) = RemoteFileurl
  266. End If
  267. End If
  268. Next
  269. ' 开始替换操作
  270. nFileNum = 0
  271. For i = 1 To n
  272. SaveFileType = Mid(a_RemoteUrl(i), InstrRev(a_RemoteUrl(i), ".") + 1)
  273. SaveFileName = GetRndFileName(SaveFileType)
  274. If SaveRemoteFile(SaveFileName, a_RemoteUrl(i)) = True Then
  275. nFileNum = nFileNum + 1
  276. If nFileNum > 0 Then
  277. sOriginalFileName = sOriginalFileName & "|"
  278. sSaveFileName = sSaveFileName & "|"
  279. sPathFileName = sPathFileName & "|"
  280. End If
  281. sOriginalFileName = sOriginalFileName & Mid(a_RemoteUrl(i), InstrRev(a_RemoteUrl(i), "/") + 1)
  282. sSaveFileName = sSaveFileName & SaveFileName
  283. sPathFileName = sPathFileName & sContentPath & SaveFileName
  284. s_Content = Replace(s_Content, a_RemoteUrl(i), sContentPath & SaveFileName, 1, -1, 1)
  285. End If
  286. Next
  287. ReplaceRemoteUrl = s_Content
  288. End Function
  289. '================================================
  290. '作  用:保存远程的文件到本地
  291. '参  数:s_LocalFileName ------ 本地文件名
  292. '  s_RemoteFileUrl ------ 远程文件URL
  293. '返回值:True  ----成功
  294. '        False ----失败
  295. '================================================
  296. Function SaveRemoteFile(s_LocalFileName, s_RemoteFileUrl)
  297. Dim Ads, Retrieval, GetRemoteData
  298. Dim bError
  299. bError = False
  300. SaveRemoteFile = False
  301. On Error Resume Next
  302. Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
  303. With Retrieval
  304. .Open "Get", s_RemoteFileUrl, False, "", ""
  305. .Send
  306. GetRemoteData = .ResponseBody
  307. End With
  308. Set Retrieval = Nothing
  309. If LenB(GetRemoteData) > nAllowSize*1024 Then
  310. bError = True
  311. Else
  312. Set Ads = Server.CreateObject("Adodb.Stream")
  313. With Ads
  314. .Type = 1
  315. .Open
  316. .Write GetRemoteData
  317. .SaveToFile Server.MapPath(sUploadDir & s_LocalFileName), 2
  318. .Cancel()
  319. .Close()
  320. End With
  321. Set Ads=nothing
  322. End If
  323. If Err.Number = 0 And bError = False Then
  324. SaveRemoteFile = True
  325. Else
  326. Err.Clear
  327. End If
  328. End Function
  329. '================================================
  330. '作  用:检查组件是否已经安装
  331. '参  数:strClassString ----组件名
  332. '返回值:True  ----已经安装
  333. '        False ----没有安装
  334. '================================================
  335. Function IsObjInstalled(strClassString)
  336. On Error Resume Next
  337. IsObjInstalled = False
  338. Err = 0
  339. Dim xTestObj
  340. Set xTestObj = Server.CreateObject(strClassString)
  341. If 0 = Err Then IsObjInstalled = True
  342. Set xTestObj = Nothing
  343. Err = 0
  344. End Function
  345. %>