cf5_upload.cfm
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:10k
源码类别:

数据库编程

开发平台:

Visual C++

  1. <cfsetting enablecfoutputonly="Yes">
  2. <!---
  3.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  4.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  5.  *
  6.  * == BEGIN LICENSE ==
  7.  *
  8.  * Licensed under the terms of any of the following licenses at your
  9.  * choice:
  10.  *
  11.  *  - GNU General Public License Version 2 or later (the "GPL")
  12.  *    http://www.gnu.org/licenses/gpl.html
  13.  *
  14.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  15.  *    http://www.gnu.org/licenses/lgpl.html
  16.  *
  17.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  18.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  19.  *
  20.  * == END LICENSE ==
  21.  *
  22.  * This is the "File Uploader" for ColdFusion 5.
  23.  * Based on connector.cfm by Mark Woods (mark@thickpaddy.com)
  24.  *
  25.  * Note:
  26.  * FCKeditor requires that the connector responds with UTF-8 encoded XML.
  27.  * As ColdFusion 5 does not fully support UTF-8 encoding, we force ASCII
  28.  * file and folder names in this connector to allow CF5 send a UTF-8
  29.  * encoded response - code points under 127 in UTF-8 are stored using a
  30.  * single byte, using the same encoding as ASCII, which is damn handy.
  31.  * This is all grand for the English speakers, like meself, but I dunno
  32.  * how others are gonna take to it. Well, the previous version of this
  33.  * connector already did this with file names and nobody seemed to mind,
  34.  * so fingers-crossed nobody will mind their folder names being munged too.
  35.  *
  36. --->
  37. <cfparam name="url.command" default="QuickUpload">
  38. <cfparam name="url.type" default="File">
  39. <cfparam name="url.currentFolder" default="/">
  40. <cfif not isDefined("config_included")>
  41. <cfinclude template="config.cfm">
  42. </cfif>
  43. <cfscript>
  44. function SendUploadResults(errorNumber, fileUrl, fileName, customMsg)
  45. {
  46. WriteOutput('<script type="text/javascript">');
  47. WriteOutput('window.parent.OnUploadCompleted(' & errorNumber & ', "' & JSStringFormat(fileUrl) & '", "' & JSStringFormat(fileName) & '", "' & JSStringFormat(customMsg) & '");' );
  48. WriteOutput('</script>');
  49. }
  50. </cfscript>
  51. <cfif NOT config.enabled>
  52. <cfset SendUploadResults(1, "", "", "This file uploader is disabled. Please check the ""editor/filemanager/connectors/cfm/config.cfm"" file")>
  53. <cfabort>
  54. </cfif>
  55. <cfif isDefined("Config.ConfigAllowedCommands") and not ListFind(Config.ConfigAllowedCommands, url.command)>
  56. <cfset SendUploadResults(1, "", "", "The """ & url.command & """ command isn't allowed")>
  57. <cfabort>
  58. </cfif>
  59. <cfif isDefined("Config.ConfigAllowedTypes") and not ListFind(Config.ConfigAllowedTypes, url.type)>
  60. <cfset SendUploadResults(1, "", "", "The """ & url.type &  """ type isn't allowed")>
  61. <cfabort>
  62. </cfif>
  63. <cfif find( "..", url.currentFolder)>
  64. <cfset SendUploadResults(102)>
  65. <cfabort>
  66. </cfif>
  67. <cfscript>
  68. userFilesPath = config.userFilesPath;
  69. if ( userFilesPath eq "" ) {
  70. userFilesPath = "/userfiles/";
  71. }
  72. // make sure the user files path is correctly formatted
  73. userFilesPath = replace(userFilesPath, "", "/", "ALL");
  74. userFilesPath = replace(userFilesPath, '//', '/', 'ALL');
  75. if ( right(userFilesPath,1) NEQ "/" ) {
  76. userFilesPath = userFilesPath & "/";
  77. }
  78. if ( left(userFilesPath,1) NEQ "/" ) {
  79. userFilesPath = "/" & userFilesPath;
  80. }
  81. // make sure the current folder is correctly formatted
  82. url.currentFolder = replace(url.currentFolder, "", "/", "ALL");
  83. url.currentFolder = replace(url.currentFolder, '//', '/', 'ALL');
  84. if ( right(url.currentFolder,1) neq "/" ) {
  85. url.currentFolder = url.currentFolder & "/";
  86. }
  87. if ( left(url.currentFolder,1) neq "/" ) {
  88. url.currentFolder = "/" & url.currentFolder;
  89. }
  90. if (find("/",getBaseTemplatePath())) {
  91. fs = "/";
  92. } else {
  93. fs = "";
  94. }
  95. // Get the base physical path to the web root for this application. The code to determine the path automatically assumes that
  96. // the "FCKeditor" directory in the http request path is directly off the web root for the application and that it's not a
  97. // virtual directory or a symbolic link / junction. Use the serverPath config setting to force a physical path if necessary.
  98. if ( len(config.serverPath) ) {
  99. serverPath = config.serverPath;
  100. if ( right(serverPath,1) neq fs ) {
  101. serverPath = serverPath & fs;
  102. }
  103. } else {
  104. serverPath = replaceNoCase(getBaseTemplatePath(),replace(cgi.script_name,"/",fs,"all"),"") & replace(userFilesPath,"/",fs,"all");
  105. }
  106. rootPath = left( serverPath, Len(serverPath) - Len(userFilesPath) ) ;
  107. </cfscript>
  108. <cfif url.command eq "QuickUpload">
  109. <cfset resourceTypeUrl = rereplace( replace( Config.QuickUploadPath[url.type], fs, "/", "all"), "/$", "") >
  110. <cfif isDefined( "Config.QuickUploadAbsolutePath" )
  111. and structkeyexists( Config.QuickUploadAbsolutePath, url.type )
  112. and Len( Config.QuickUploadAbsolutePath[url.type] )>
  113. <cfset userFilesServerPath = Config.QuickUploadAbsolutePath[url.type] & url.currentFolder>
  114. <cfelse>
  115. <cftry>
  116. <cfset userFilesServerPath = expandpath( resourceTypeUrl ) & url.currentFolder>
  117. <!--- Catch: Parameter 1 of function ExpandPath must be a relative path --->
  118. <cfcatch type="any">
  119. <cfset userFilesServerPath = rootPath & Config.QuickUploadPath[url.type] & url.currentFolder>
  120. </cfcatch>
  121. </cftry>
  122. </cfif>
  123. <cfelse>
  124. <cfset resourceTypeUrl = rereplace( replace( Config.FileTypesPath[url.type], fs, "/", "all"), "/$", "") >
  125. <cfif isDefined( "Config.FileTypesAbsolutePath" )
  126. and structkeyexists( Config.FileTypesAbsolutePath, url.type )
  127. and Len( Config.FileTypesAbsolutePath[url.type] )>
  128. <cfset userFilesServerPath = Config.FileTypesAbsolutePath[url.type] & url.currentFolder>
  129. <cfelse>
  130. <cftry>
  131. <cfset userFilesServerPath = expandpath( resourceTypeUrl ) & url.currentFolder>
  132. <!--- Catch: Parameter 1 of function ExpandPath must be a relative path --->
  133. <cfcatch type="any">
  134. <cfset userFilesServerPath = rootPath & Config.FileTypesPath[url.type] & url.currentFolder>
  135. </cfcatch>
  136. </cftry>
  137. </cfif>
  138. </cfif>
  139. <cfset userFilesServerPath = replace( userFilesServerPath, "/", fs, "all" ) >
  140. <!--- get rid of double directory separators --->
  141. <cfset userFilesServerPath = replace( userFilesServerPath, fs & fs, fs, "all") >
  142. <!--- create resource type directory if not exists --->
  143. <cfset resourceTypeDirectory = left( userFilesServerPath, Len(userFilesServerPath) - Len(url.currentFolder) )>
  144. <cfif not directoryexists( resourceTypeDirectory )>
  145. <cfset currentPath = "">
  146. <cftry>
  147. <cfloop list="#resourceTypeDirectory#" index="name" delimiters="#fs#">
  148. <cfif currentPath eq "" and fs eq "">
  149. <!--- Without checking this, we would have in Windows C: --->
  150. <cfif not directoryExists(name)>
  151. <cfdirectory action="create" directory="#name#" mode="755">
  152. </cfif>
  153. <cfelse>
  154. <cfif not directoryExists(currentPath & fs & name)>
  155. <cfdirectory action="create" directory="#currentPath##fs##name#" mode="755">
  156. </cfif>
  157. </cfif>
  158. <cfif fs eq "" and currentPath eq "">
  159. <cfset currentPath = name>
  160. <cfelse>
  161. <cfset currentPath = currentPath & fs & name>
  162. </cfif>
  163. </cfloop>
  164. <cfcatch type="any">
  165. <!--- this should only occur as a result of a permissions problem --->
  166. <cfset SendUploadResults(103)>
  167. <cfabort>
  168. </cfcatch>
  169. </cftry>
  170. </cfif>
  171. <cfset currentFolderPath = userFilesServerPath>
  172. <cfset resourceType = url.type>
  173. <cfset fileName = "">
  174. <cfset fileExt = "">
  175. <!--- Can be overwritten. The last value will be sent with the result --->
  176. <cfset customMsg = "">
  177. <cftry>
  178. <!--- first upload the file with an unique filename --->
  179. <cffile action="upload"
  180. fileField="NewFile"
  181. destination="#currentFolderPath#"
  182. nameConflict="makeunique"
  183. mode="644"
  184. attributes="normal">
  185. <cfif cffile.fileSize EQ 0>
  186. <cfthrow>
  187. </cfif>
  188. <cfset lAllowedExtensions = config.allowedExtensions[#resourceType#]>
  189. <cfset lDeniedExtensions = config.deniedExtensions[#resourceType#]>
  190. <cfif ( len(lAllowedExtensions) and not listFindNoCase(lAllowedExtensions,cffile.ServerFileExt) )
  191. or ( len(lDeniedExtensions) and listFindNoCase(lDeniedExtensions,cffile.ServerFileExt) )>
  192. <cfset errorNumber = "202">
  193. <cffile action="delete" file="#cffile.ServerDirectory##fs##cffile.ServerFile#">
  194. <cfelse>
  195. <cfscript>
  196. errorNumber = 0;
  197. fileName = cffile.ClientFileName ;
  198. fileExt = cffile.ServerFileExt ;
  199. fileExisted = false ;
  200. // munge filename for html download. Only a-z, 0-9, _, - and . are allowed
  201. if( reFind("[^A-Za-z0-9_-.]", fileName) ) {
  202. fileName = reReplace(fileName, "[^A-Za-z0-9-.]", "_", "ALL");
  203. fileName = reReplace(fileName, "_{2,}", "_", "ALL");
  204. fileName = reReplace(fileName, "([^_]+)_+$", "1", "ALL");
  205. fileName = reReplace(fileName, "$_([^_]+)$", "1", "ALL");
  206. }
  207. // remove additional dots from file name
  208. if( isDefined("Config.ForceSingleExtension") and Config.ForceSingleExtension )
  209. fileName = replace( fileName, '.', "_", "all" ) ;
  210. // When the original filename already exists, add numbers (0), (1), (2), ... at the end of the filename.
  211. if( compare( cffile.ServerFileName, fileName ) ) {
  212. counter = 0;
  213. tmpFileName = fileName;
  214. while( fileExists("#currentFolderPath##fileName#.#fileExt#") ) {
  215. fileExisted = true ;
  216. counter = counter + 1 ;
  217. fileName = tmpFileName & '(#counter#)' ;
  218. }
  219. }
  220. </cfscript>
  221. <!--- Rename the uploaded file, if neccessary --->
  222. <cfif compare(cffile.ServerFileName,fileName)>
  223. <cfif fileExisted>
  224. <cfset errorNumber = "201">
  225. </cfif>
  226. <cffile
  227. action="rename"
  228. source="#currentFolderPath##cffile.ServerFileName#.#cffile.ServerFileExt#"
  229. destination="#currentFolderPath##fileName#.#fileExt#"
  230. mode="644"
  231. attributes="normal">
  232. </cfif>
  233. </cfif>
  234. <cfcatch type="any">
  235. <cfset errorNumber = "1">
  236. <cfset customMsg = cfcatch.message >
  237. </cfcatch>
  238. </cftry>
  239. <cfif errorNumber EQ 0>
  240. <!--- file was uploaded succesfully --->
  241. <cfset SendUploadResults(errorNumber, '#resourceTypeUrl##url.currentFolder##fileName#.#fileExt#', "", "")>
  242. <cfabort>
  243. <cfelseif errorNumber EQ 201>
  244. <!--- file was changed (201), submit the new filename --->
  245. <cfset SendUploadResults(errorNumber, '#resourceTypeUrl##url.currentFolder##fileName#.#fileExt#', replace( fileName & "." & fileExt, "'", "'", "ALL"), customMsg)>
  246. <cfabort>
  247. <cfelse>
  248. <!--- An error occured(202). Submit only the error code and a message (if available). --->
  249. <cfset SendUploadResults(errorNumber, '', '', customMsg)>
  250. <cfabort>
  251. </cfif>