connector.php
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. <?php 
  2. /*
  3.  * FCKeditor - The text editor for internet
  4.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  5.  * 
  6.  * Licensed under the terms of the GNU Lesser General Public License:
  7.  *  http://www.opensource.org/licenses/lgpl-license.php
  8.  * 
  9.  * For further information visit:
  10.  *  http://www.fckeditor.net/
  11.  * 
  12.  * "Support Open Source software. What about a donation today?"
  13.  * 
  14.  * File Name: connector.php
  15.  *  This is the File Manager Connector for PHP.
  16.  * 
  17.  * File Authors:
  18.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  19.  */
  20. ob_start() ;
  21. include('config.php') ;
  22. include('util.php') ;
  23. include('io.php') ;
  24. include('basexml.php') ;
  25. include('commands.php') ;
  26. if ( !$Config['Enabled'] )
  27. SendError( 1, 'This connector is disabled. Please check the "editor/filemanager/browser/default/connectors/php/config.php" file' ) ;
  28. // Get the "UserFiles" path.
  29. $GLOBALS["UserFilesPath"] = '' ;
  30. if ( isset( $Config['UserFilesPath'] ) )
  31. $GLOBALS["UserFilesPath"] = $Config['UserFilesPath'] ;
  32. else if ( isset( $_GET['ServerPath'] ) )
  33. $GLOBALS["UserFilesPath"] = $_GET['ServerPath'] ;
  34. else
  35. $GLOBALS["UserFilesPath"] = '/UserFiles/' ;
  36. if ( ! ereg( '/$', $GLOBALS["UserFilesPath"] ) )
  37. $GLOBALS["UserFilesPath"] .= '/' ;
  38. if ( strlen( $Config['UserFilesAbsolutePath'] ) > 0 ) 
  39. {
  40. $GLOBALS["UserFilesDirectory"] = $Config['UserFilesAbsolutePath'] ;
  41. if ( ! ereg( '/$', $GLOBALS["UserFilesDirectory"] ) )
  42. $GLOBALS["UserFilesDirectory"] .= '/' ;
  43. }
  44. else
  45. {
  46. // Map the "UserFiles" path to a local directory.
  47. $GLOBALS["UserFilesDirectory"] = GetRootPath() . $GLOBALS["UserFilesPath"] ;
  48. }
  49. DoResponse() ;
  50. function DoResponse()
  51. {
  52. if ( !isset( $_GET['Command'] ) || !isset( $_GET['Type'] ) || !isset( $_GET['CurrentFolder'] ) )
  53. return ;
  54. // Get the main request informaiton.
  55. $sCommand = $_GET['Command'] ;
  56. $sResourceType = $_GET['Type'] ;
  57. $sCurrentFolder = $_GET['CurrentFolder'] ;
  58. // Check if it is an allowed type.
  59. if ( !in_array( $sResourceType, array('File','Image','Flash','Media') ) )
  60. return ;
  61. // Check the current folder syntax (must begin and start with a slash).
  62. if ( ! ereg( '/$', $sCurrentFolder ) ) $sCurrentFolder .= '/' ;
  63. if ( strpos( $sCurrentFolder, '/' ) !== 0 ) $sCurrentFolder = '/' . $sCurrentFolder ;
  64. // Check for invalid folder paths (..)
  65. if ( strpos( $sCurrentFolder, '..' ) )
  66. SendError( 102, "" ) ;
  67. // File Upload doesn't have to Return XML, so it must be intercepted before anything.
  68. if ( $sCommand == 'FileUpload' )
  69. {
  70. FileUpload( $sResourceType, $sCurrentFolder ) ;
  71. return ;
  72. }
  73. CreateXmlHeader( $sCommand, $sResourceType, $sCurrentFolder ) ;
  74. // Execute the required command.
  75. switch ( $sCommand )
  76. {
  77. case 'GetFolders' :
  78. GetFolders( $sResourceType, $sCurrentFolder ) ;
  79. break ;
  80. case 'GetFoldersAndFiles' :
  81. GetFoldersAndFiles( $sResourceType, $sCurrentFolder ) ;
  82. break ;
  83. case 'CreateFolder' :
  84. CreateFolder( $sResourceType, $sCurrentFolder ) ;
  85. break ;
  86. }
  87. CreateXmlFooter() ;
  88. exit ;
  89. }
  90. ?>