123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- error_reporting(0); // Set E_ALL for debuging
- // // Optional exec path settings (Default is called with command name only)
- // define('ELFINDER_TAR_PATH', '/PATH/TO/tar');
- // define('ELFINDER_GZIP_PATH', '/PATH/TO/gzip');
- // define('ELFINDER_BZIP2_PATH', '/PATH/TO/bzip2');
- // define('ELFINDER_XZ_PATH', '/PATH/TO/xz');
- // define('ELFINDER_ZIP_PATH', '/PATH/TO/zip');
- // define('ELFINDER_UNZIP_PATH', '/PATH/TO/unzip');
- // define('ELFINDER_RAR_PATH', '/PATH/TO/rar');
- // define('ELFINDER_UNRAR_PATH', '/PATH/TO/unrar');
- // define('ELFINDER_7Z_PATH', '/PATH/TO/7za');
- // define('ELFINDER_CONVERT_PATH', '/PATH/TO/convert');
- // define('ELFINDER_IDENTIFY_PATH', '/PATH/TO/identify');
- // define('ELFINDER_EXIFTRAN_PATH', '/PATH/TO/exiftran');
- // define('ELFINDER_JPEGTRAN_PATH', '/PATH/TO/jpegtran');
- // define('ELFINDER_FFMPEG_PATH', '/PATH/TO/ffmpeg');
- // define('ELFINDER_CONNECTOR_URL', 'URL to this connector script'); // see elFinder::getConnectorUrl()
- // define('ELFINDER_DEBUG_ERRORLEVEL', -1); // Error reporting level of debug mode
- // // To Enable(true) handling of PostScript files by ImageMagick
- // // It is disabled by default as a countermeasure
- // // of Ghostscript multiple -dSAFER sandbox bypass vulnerabilities
- // // see https://www.kb.cert.org/vuls/id/332928
- // define('ELFINDER_IMAGEMAGICK_PS', true);
- // ===============================================
- // // load composer autoload before load elFinder autoload If you need composer
- // // You need to run the composer command in the php directory.
- is_readable('./vendor/autoload.php') && require './vendor/autoload.php';
- // // elFinder autoload
- require './autoload.php';
- // ===============================================
- // // Enable FTP connector netmount
- elFinder::$netDrivers['ftp'] = 'FTP';
- // ===============================================
- // // Required for Dropbox network mount
- // // Installation by composer
- // // `composer require kunalvarma05/dropbox-php-sdk` on php directory
- // // Enable network mount
- // elFinder::$netDrivers['dropbox2'] = 'Dropbox2';
- // // Dropbox2 Netmount driver need next two settings. You can get at https://www.dropbox.com/developers/apps
- // // AND require register redirect url to "YOUR_CONNECTOR_URL?cmd=netmount&protocol=dropbox2&host=1"
- // // If the elFinder HTML element ID is not "elfinder", you need to change "host=1" to "host=ElementID"
- // define('ELFINDER_DROPBOX_APPKEY', '');
- // define('ELFINDER_DROPBOX_APPSECRET', '');
- // ===============================================
- // // Required for Google Drive network mount
- // // Installation by composer
- // // `composer require google/apiclient:^2.0` on php directory
- // // Enable network mount
- // elFinder::$netDrivers['googledrive'] = 'GoogleDrive';
- // // GoogleDrive Netmount driver need next two settings. You can get at https://console.developers.google.com
- // // AND require register redirect url to "YOUR_CONNECTOR_URL?cmd=netmount&protocol=googledrive&host=1"
- // // If the elFinder HTML element ID is not "elfinder", you need to change "host=1" to "host=ElementID"
- // define('ELFINDER_GOOGLEDRIVE_CLIENTID', '');
- // define('ELFINDER_GOOGLEDRIVE_CLIENTSECRET', '');
- // // Required case when Google API is NOT added via composer
- // define('ELFINDER_GOOGLEDRIVE_GOOGLEAPICLIENT', '/path/to/google-api-php-client/vendor/autoload.php');
- // ===============================================
- // // Required for Google Drive network mount with Flysystem
- // // Installation by composer
- // // `composer require nao-pon/flysystem-google-drive:~1.1 nao-pon/elfinder-flysystem-driver-ext` on php directory
- // // Enable network mount
- // elFinder::$netDrivers['googledrive'] = 'FlysystemGoogleDriveNetmount';
- // // GoogleDrive Netmount driver need next two settings. You can get at https://console.developers.google.com
- // // AND require register redirect url to "YOUR_CONNECTOR_URL?cmd=netmount&protocol=googledrive&host=1"
- // // If the elFinder HTML element ID is not "elfinder", you need to change "host=1" to "host=ElementID"
- // define('ELFINDER_GOOGLEDRIVE_CLIENTID', '');
- // define('ELFINDER_GOOGLEDRIVE_CLIENTSECRET', '');
- // // And "php/.tmp" directory must exist and be writable by PHP.
- // ===============================================
- // // Required for One Drive network mount
- // // * cURL PHP extension required
- // // * HTTP server PATH_INFO supports required
- // // Enable network mount
- // elFinder::$netDrivers['onedrive'] = 'OneDrive';
- // // GoogleDrive Netmount driver need next two settings. You can get at https://dev.onedrive.com
- // // AND require register redirect url to "YOUR_CONNECTOR_URL/netmount/onedrive/1"
- // // If the elFinder HTML element ID is not "elfinder", you need to change "/1" to "/ElementID"
- // define('ELFINDER_ONEDRIVE_CLIENTID', '');
- // define('ELFINDER_ONEDRIVE_CLIENTSECRET', '');
- // ===============================================
- // // Required for Box network mount
- // // * cURL PHP extension required
- // // Enable network mount
- // elFinder::$netDrivers['box'] = 'Box';
- // // Box Netmount driver need next two settings. You can get at https://developer.box.com
- // // AND require register redirect url to "YOUR_CONNECTOR_URL?cmd=netmount&protocol=box&host=1"
- // // If the elFinder HTML element ID is not "elfinder", you need to change "host=1" to "host=ElementID"
- // define('ELFINDER_BOX_CLIENTID', '');
- // define('ELFINDER_BOX_CLIENTSECRET', '');
- // ===============================================
- // // Zoho Office Editor APIKey
- // // https://www.zoho.com/docs/help/office-apis.html
- // define('ELFINDER_ZOHO_OFFICE_APIKEY', '');
- // ===============================================
- // // Online converter (online-convert.com) APIKey
- // // https://apiv2.online-convert.com/docs/getting_started/api_key.html
- // define('ELFINDER_ONLINE_CONVERT_APIKEY', '');
- // ===============================================
- // // Zip Archive editor
- // // Installation by composer
- // // `composer require nao-pon/elfinder-flysystem-ziparchive-netmount` on php directory
- // define('ELFINDER_DISABLE_ZIPEDITOR', false); // set `true` to disable zip editor
- // ===============================================
- /**
- * Simple function to demonstrate how to control file access using "accessControl" callback.
- * This method will disable accessing files/folders starting from '.' (dot)
- *
- * @param string $attr attribute name (read|write|locked|hidden)
- * @param string $path absolute file path
- * @param string $data value of volume option `accessControlData`
- * @param object $volume elFinder volume driver object
- * @param bool|null $isDir path is directory (true: directory, false: file, null: unknown)
- * @param string $relpath file path relative to volume root directory started with directory separator
- * @return bool|null
- **/
- function access($attr, $path, $data, $volume, $isDir, $relpath) {
- $basename = basename($path);
- return $basename[0] === '.' // if file/folder begins with '.' (dot)
- && strlen($relpath) !== 1 // but with out volume root
- ? !($attr == 'read' || $attr == 'write') // set read+write to false, other (locked+hidden) set to true
- : null; // else elFinder decide it itself
- }
- // Documentation for connector options:
- // https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options
- $opts = array(
- // 'debug' => true,
- 'roots' => array(
- // Items volume
- array(
- 'driver' => 'LocalFileSystem', // driver for accessing file system (REQUIRED)
- 'path' => '../files/', // path to files (REQUIRED)
- 'URL' => dirname($_SERVER['PHP_SELF']) . '/../files/', // URL to files (REQUIRED)
- 'trashHash' => 't1_Lw', // elFinder's hash of trash folder
- 'winHashFix' => DIRECTORY_SEPARATOR !== '/', // to make hash same to Linux one on windows too
- 'uploadDeny' => array('all'), // All Mimetypes not allowed to upload
- 'uploadAllow' => array('image/x-ms-bmp', 'image/gif', 'image/jpeg', 'image/png', 'image/x-icon', 'text/plain'), // Mimetype `image` and `text/plain` allowed to upload
- 'uploadOrder' => array('deny', 'allow'), // allowed Mimetype `image` and `text/plain` only
- 'accessControl' => 'access' // disable and hide dot starting files (OPTIONAL)
- ),
- // Trash volume
- array(
- 'id' => '1',
- 'driver' => 'Trash',
- 'path' => '../files/.trash/',
- 'tmbURL' => dirname($_SERVER['PHP_SELF']) . '/../files/.trash/.tmb/',
- 'winHashFix' => DIRECTORY_SEPARATOR !== '/', // to make hash same to Linux one on windows too
- 'uploadDeny' => array('all'), // Recomend the same settings as the original volume that uses the trash
- 'uploadAllow' => array('image/x-ms-bmp', 'image/gif', 'image/jpeg', 'image/png', 'image/x-icon', 'text/plain'), // Same as above
- 'uploadOrder' => array('deny', 'allow'), // Same as above
- 'accessControl' => 'access', // Same as above
- ),
- )
- );
- // run elFinder
- $connector = new elFinderConnector(new elFinder($opts));
- $connector->run();
|