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

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: upload.php
  15.  *  This is the "File Uploader" for PHP.
  16.  * 
  17.  * File Authors:
  18.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  19.  */
  20. require('config.php') ;
  21. require('util.php') ;
  22. // This is the function that sends the results of the uploading process.
  23. function SendResults( $errorNumber, $fileUrl = '', $fileName = '', $customMsg = '' )
  24. {
  25. echo '<script type="text/javascript">' ;
  26. echo 'window.parent.OnUploadCompleted(' . $errorNumber . ',"' . str_replace( '"', '\"', $fileUrl ) . '","' . str_replace( '"', '\"', $fileName ) . '", "' . str_replace( '"', '\"', $customMsg ) . '") ;' ;
  27. echo '</script>' ;
  28. exit ;
  29. }
  30. // Check if this uploader has been enabled.
  31. if ( !$Config['Enabled'] )
  32. SendResults( '1', '', '', 'This file uploader is disabled. Please check the "editor/filemanager/upload/php/config.php" file' ) ;
  33. // Check if the file has been correctly uploaded.
  34. if ( !isset( $_FILES['NewFile'] ) || is_null( $_FILES['NewFile']['tmp_name'] ) || $_FILES['NewFile']['name'] == '' )
  35. SendResults( '202' ) ;
  36. // Get the posted file.
  37. $oFile = $_FILES['NewFile'] ;
  38. // Get the uploaded file name extension.
  39. $sFileName = $oFile['name'] ;
  40. // Replace dots in the name with underscores (only one dot can be there... security issue).
  41. if ( $Config['ForceSingleExtension'] )
  42. $sFileName = preg_replace( '/\.(?![^.]*$)/', '_', $sFileName ) ;
  43. $sOriginalFileName = $sFileName ;
  44. // Get the extension.
  45. $sExtension = substr( $sFileName, ( strrpos($sFileName, '.') + 1 ) ) ;
  46. $sExtension = strtolower( $sExtension ) ;
  47. // The the file type (from the QueryString, by default 'File').
  48. $sType = isset( $_GET['Type'] ) ? $_GET['Type'] : 'File' ;
  49. // Check if it is an allowed type.
  50. if ( !in_array( $sType, array('File','Image','Flash','Media') ) )
  51.     SendResults( 1, '', '', 'Invalid type specified' ) ;
  52. // Get the allowed and denied extensions arrays.
  53. $arAllowed = $Config['AllowedExtensions'][$sType] ;
  54. $arDenied = $Config['DeniedExtensions'][$sType] ;
  55. // Check if it is an allowed extension.
  56. if ( ( count($arAllowed) > 0 && !in_array( $sExtension, $arAllowed ) ) || ( count($arDenied) > 0 && in_array( $sExtension, $arDenied ) ) )
  57. SendResults( '202' ) ;
  58. $sErrorNumber = '0' ;
  59. $sFileUrl = '' ;
  60. // Initializes the counter used to rename the file, if another one with the same name already exists.
  61. $iCounter = 0 ;
  62. // Get the target directory.
  63. if ( isset( $Config['UserFilesAbsolutePath'] ) && strlen( $Config['UserFilesAbsolutePath'] ) > 0 )
  64. $sServerDir = $Config['UserFilesAbsolutePath'] ;
  65. else 
  66. $sServerDir = GetRootPath() . $Config["UserFilesPath"] ;
  67. if ( $Config['UseFileType'] )
  68. $sServerDir .= $sType . '/' ;
  69. while ( true )
  70. {
  71. // Compose the file path.
  72. $sFilePath = $sServerDir . $sFileName ;
  73. // If a file with that name already exists.
  74. if ( is_file( $sFilePath ) )
  75. {
  76. $iCounter++ ;
  77. $sFileName = RemoveExtension( $sOriginalFileName ) . '(' . $iCounter . ').' . $sExtension ;
  78. $sErrorNumber = '201' ;
  79. }
  80. else
  81. {
  82. move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ;
  83. if ( is_file( $sFilePath ) )
  84. {
  85. $oldumask = umask(0) ;
  86. chmod( $sFilePath, 0777 ) ;
  87. umask( $oldumask ) ;
  88. }
  89. if ( $Config['UseFileType'] )
  90. $sFileUrl = $Config["UserFilesPath"] . $sType . '/' . $sFileName ;
  91. else
  92. $sFileUrl = $Config["UserFilesPath"] . $sFileName ;
  93. break ;
  94. }
  95. }
  96. SendResults( $sErrorNumber, $sFileUrl, $sFileName ) ;
  97. ?>