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

数据库编程

开发平台:

Visual C++

  1. <cfsetting enablecfoutputonly="yes" showdebugoutput="no">
  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.  * File Browser connector for ColdFusion (MX 6.0 and above).
  23.  * (based on the original CF connector by Hendrik Kramer - hk@lwd.de)
  24.  *
  25. --->
  26. <cfparam name="url.command">
  27. <cfparam name="url.type">
  28. <cfparam name="url.currentFolder">
  29. <!--- note: no serverPath url parameter - see config.cfm if you need to set the serverPath manually --->
  30. <cfinclude template="config.cfm">
  31. <cfinclude template="cf_util.cfm">
  32. <cfinclude template="cf_io.cfm">
  33. <cfinclude template="cf_basexml.cfm">
  34. <cfinclude template="cf_commands.cfm">
  35. <cfif not Config.Enabled>
  36. <cfset SendError( 1, 'This connector is disabled. Please check the "editor/filemanager/connectors/cfm/config.cfm" file' )>
  37. </cfif>
  38. <cfset REQUEST.Config = Config>
  39. <cfif find( "/", getBaseTemplatePath() ) >
  40. <cfset REQUEST.Fs = "/">
  41. <cfelse>
  42. <cfset REQUEST.Fs = "">
  43. </cfif>
  44. <cfset DoResponse() >
  45. <cffunction name="DoResponse" output="true" returntype="void">
  46. <!--- Get the main request informaiton. --->
  47. <cfset var sCommand = "#URL.Command#" >
  48. <cfset var sResourceType = URL.Type >
  49. <cfset var sCurrentFolder = GetCurrentFolder() >
  50. <!--- Check if it is an allowed command --->
  51. <cfif not IsAllowedCommand( sCommand ) >
  52. <cfset SendError( 1, "The """ & sCommand & """ command isn't allowed" ) >
  53. </cfif>
  54. <!--- Check if it is an allowed type. --->
  55. <cfif not IsAllowedType( sResourceType ) >
  56. <cfset SendError( 1, 'Invalid type specified' ) >
  57. </cfif>
  58. <!--- File Upload doesn't have to Return XML, so it must be intercepted before anything. --->
  59. <cfif sCommand eq "FileUpload">
  60. <cfset FileUpload( sResourceType, sCurrentFolder, sCommand )>
  61. <cfabort>
  62. </cfif>
  63. <cfset CreateXmlHeader( sCommand, sResourceType, sCurrentFolder )>
  64. <!--- Execute the required command. --->
  65. <cfif sCommand eq "GetFolders">
  66. <cfset GetFolders( sResourceType, sCurrentFolder ) >
  67. <cfelseif sCommand eq "GetFoldersAndFiles">
  68. <cfset GetFoldersAndFiles( sResourceType, sCurrentFolder ) >
  69. <cfelseif sCommand eq "CreateFolder">
  70. <cfset CreateFolder( sResourceType, sCurrentFolder ) >
  71. </cfif>
  72. <cfset CreateXmlFooter()>
  73. <cfexit>
  74. </cffunction>