t('Operations'), 'colspan' => 2)); $rows = array(); foreach ($profiles as $pid => $profile) { $rows[] = array( check_plain($profile['name']), l(t('Edit'), 'admin/config/media/imce/profile/edit/' . $pid), $pid == 1 ? '' : l(t('Delete'), 'admin/config/media/imce/profile/delete/' . $pid), ); } $rows[] = array('', array('data' => l(t('Add new profile'), 'admin/config/media/imce/profile'), 'colspan' => 2)); $output['title'] = array( '#markup' => '

' . t('Configuration profiles') . '

', ); $output['table'] = array( '#theme' => 'table', '#header' => $header, '#rows' => $rows, '#attributes' => array('id' => 'imce-profiles-list'), ); $output['form'] = drupal_get_form('imce_admin_form'); // Display security warnings if (empty($_POST)) { $roles = variable_get('imce_roles_profiles', array()); if (!empty($roles[DRUPAL_ANONYMOUS_RID]['public_pid']) || !empty($roles[DRUPAL_ANONYMOUS_RID]['private_pid'])) { drupal_set_message(t('Anonymous user role has access to IMCE.') . ' ' . t('Make sure this is not a misconfiguration.'), 'warning'); } if (imce_admin_check_wildcard_upload(DRUPAL_AUTHENTICATED_RID, $roles)) { drupal_set_message(t('Authenticated user role is assigned a configuration profile with unrestricted file extensions.') . ' ' . t('Make sure this is not a misconfiguration.'), 'warning'); } } return $output; } /** * Admin form. */ function imce_admin_form($form, &$form_state) { //roles profiles $form['roles'] = array('#tree' => TRUE); $roles = imce_sorted_roles(); $form['#weighted'] = count($roles) > 3; foreach ($roles as $rid => $role) { $core = $rid == DRUPAL_ANONYMOUS_RID || $rid == DRUPAL_AUTHENTICATED_RID; $form['roles'][$rid] = imce_role_form($role, $form['#weighted'], $core); } //common settings $form['common'] = array( '#type' => 'fieldset', '#title' => t('Common settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['common']['textarea'] = array( '#type' => 'textfield', '#title' => t('Enable inline image/file insertion into plain textareas'), '#default_value' => variable_get('imce_settings_textarea', ''), '#maxlength' => NULL, '#description' => t('If you don\'t use any WYSIWYG editor, this feature will allow you to add your images or files as html code into any plain textarea. Enter comma separated textarea IDs under which you want to enable a link to IMCE. The * character is a wildcard. Hint: ID of Body fields in most node types starts with edit-body*.'), ); $form['common']['absurls'] = array( '#type' => 'checkbox', '#title' => t('Absolute URLs'), '#default_value' => variable_get('imce_settings_absurls', 0), '#description' => t('Check if you want IMCE to return absolute file URLs.'), ); $form['common']['replace'] = array( '#type' => 'radios', '#title' => t('Default behaviour for existing files during file uploads'), '#default_value' => variable_get('imce_settings_replace', FILE_EXISTS_RENAME), '#options' => array( FILE_EXISTS_RENAME => t('Keep the existing file renaming the new one'), FILE_EXISTS_ERROR => t('Keep the existing file rejecting the new one'), FILE_EXISTS_REPLACE => t('Replace the existing file with the new one') ), ); $form['common']['thumb_method'] = array( '#type' => 'radios', '#title' => t('Default method for creating thumbnails'), '#default_value' => variable_get('imce_settings_thumb_method', 'scale_and_crop'), '#options' => array( 'scale' => t('Scale the image with respect to the thumbnail dimensions.'), 'scale_and_crop' => t('First scale then crop the image to fit the thumbnail dimensions.') ), ); $form['common']['disable_private'] = array( '#type' => 'checkbox', '#title' => t('Disable serving of private files'), '#default_value' => variable_get('imce_settings_disable_private', 1), '#description' => t('IMCE serves all files under private files directory without applying any access restrictions. This allows anonymous access to any file(/system/files/filename) unless there is a module restricting access to the files. Here you can disable this feature.'), ); $form['common']['admin_theme'] = array( '#type' => 'checkbox', '#title' => t('Use admin theme for IMCE paths'), '#default_value' => variable_get('imce_settings_admin_theme', FALSE), '#description' => t('If you have user interface issues with the active theme you may consider switching to admin theme.'), ); $form['submit'] = array('#type' => 'submit', '#value' => t('Save configuration')); $form['#theme'] = 'imce_admin'; $form['#submit'][] = 'imce_admin_submit'; return $form; } /** * Admin form themed. */ function imce_admin_theme($variables) { $form = $variables['form']; $profile1 = imce_user1_profile(); $header = array(t('User role')); $rows = array(array(t('Site maintenance account'))); $keys = array('name'); //add each stream wrapper as a column $swrappers = file_get_stream_wrappers(STREAM_WRAPPERS_VISIBLE); foreach ($swrappers as $scheme => $info) { $header[] = l($info['name'], 'imce/' . $scheme); $rows[0][] = check_plain($profile1['name']); $keys[] = $scheme . '_pid'; } //in case we need profile weights. $weight_info = ''; if ($form['#weighted']) { $header[] = t('Weight'); $rows[0][] = t('n/a'); $keys[] = 'weight'; $weight_info = t('For users who have multiple roles, the weight property will determine the assigned profile. Lighter roles that are placed upper will take the precedence. So, an administrator role should be placed over other roles by having a smaller weight, ie. -10.'); } foreach (element_children($form['roles']) as $rid) { $cells = array(); foreach ($keys as $key) { $cells[] = drupal_render($form['roles'][$rid][$key]); } $rows[] = $cells; } $output = '

' . t('Role-profile assignments') . '

'; $output .= theme('table', array('header' => $header, 'rows' => $rows)); $output .= '
' . t('Assign profiles to user roles for available file systems. Your default file system is %name.', array('%name' => $swrappers[variable_get('file_default_scheme', 'public')]['name'])) . ' ' . $weight_info . '
'; $output .= drupal_render($form['common']); $output .= drupal_render_children($form); return $output; } /** * Validate admin form. */ function imce_admin_form_validate($form, &$form_state) { $roles = $form_state['values']['roles']; // Check anonymous profile. Do not allow wildcard upload. if ($key = imce_admin_check_wildcard_upload(DRUPAL_ANONYMOUS_RID, $roles)) { form_error($form['roles'][DRUPAL_ANONYMOUS_RID][$key], t('Anonymous user role can not have a configuration profile with unrestricted file extensions.')); } } /** * Submit admin form. */ function imce_admin_submit($form, &$form_state) { $roles = $form_state['values']['roles']; if (count($roles) > 3) { uasort($roles, 'imce_rolesort'); } variable_set('imce_roles_profiles', $roles); variable_set('imce_settings_textarea', $form_state['values']['textarea']); variable_set('imce_settings_absurls', $form_state['values']['absurls']); variable_set('imce_settings_replace', $form_state['values']['replace']); variable_set('imce_settings_thumb_method', $form_state['values']['thumb_method']); variable_set('imce_settings_disable_private', $form_state['values']['disable_private']); variable_set('imce_settings_admin_theme', $form_state['values']['admin_theme']); drupal_set_message(t('Changes have been saved.')); } /** * Add-Edit-Delete profiles. */ function imce_profile_operations($op = 'add', $pid = 0) { //delete if ($op == 'delete') { drupal_set_title(t('Delete configuration profile')); return drupal_get_form('imce_profile_delete_form', $pid); } //add-edit if ($op === 'add' || $op === 'edit') { return drupal_get_form('imce_profile_form', $pid); } drupal_access_denied(); } /** * Profile form. */ function imce_profile_form($form, &$form_state, $pid = 0) { if ($pid && $profile = imce_load_profile($pid)) { drupal_set_title($profile['name']); } else { $pid = 0; $profile = imce_sample_profile(); $profile['name'] = ''; } //import profile if (isset($_GET['import']) && $imported = imce_load_profile($_GET['import'])) { if (empty($form_state['post'])) { drupal_set_message(t('Settings were imported from the profile %name', array('%name' => $imported['name']))); } $imported['name'] = $profile['name']; //preserve the original name. $profile = $imported; } $form_state['profile'] = $profile;//store the original profile just in case. $form = array('#tree' => TRUE); $form['name'] = array( '#type' => 'textfield', '#title' => t('Profile name'), '#default_value' => $profile['name'], '#description' => t('Give a name to this profile.'), '#required' => TRUE, ); $form['import'] = array( '#markup' => imce_profile_import_html($pid), ); $form['usertab'] = array( '#type' => 'checkbox', '#title' => t('Display file browser tab in user profile pages.'), '#default_value' => $profile['usertab'], ); $form['filesize'] = array( '#type' => 'textfield', '#title' => t('Maximum file size per upload'), '#default_value' => $profile['filesize'], '#description' => t('Set to 0 to use the maximum value available.') . ' ' . t('Your PHP settings limit the maximum file size per upload to %size.', array('%size' => format_size(file_upload_max_size()))), '#field_suffix' => t('MB'), ); $form['quota'] = array( '#type' => 'textfield', '#title' => t('Directory quota'), '#default_value' => $profile['quota'], '#description' => t('Define the upload quota per directory.') . ' ' . t('Set to 0 to use the maximum value available.'), '#field_suffix' => t('MB'), ); $form['tuquota'] = array( '#type' => 'textfield', '#title' => t('Total user quota'), '#default_value' => $profile['tuquota'], '#description' => t('This quota measures the size of all user uploaded files in the database and does not include FTP files. You can either use both quotations together or safely ignore this by setting the value to 0.'), '#field_suffix' => t('MB'), ); $form['extensions'] = array( '#type' => 'textfield', '#title' => t('Permitted file extensions'), '#default_value' => $profile['extensions'], '#maxlength' => 255, '#description' => t('Specify the allowed file extensions for uploaded files. Separate extensions with a space and do not include the leading dot.') . ' ' . t('Set to * to remove the restriction.'), ); $form['dimensions'] = array( '#type' => 'textfield', '#title' => t('Maximum image dimensions'), '#default_value' => $profile['dimensions'], '#description' => t('The maximum allowed image size (e.g. 640x480). Set to 0 for no restriction. If an image toolkit is installed, files exceeding this value will be scaled down to fit.', array('!image-toolkit-link' => url('admin/config/media/image-toolkit'))), '#field_suffix' => '' . t('WIDTHxHEIGHT') . '', ); $form['filenum'] = array( '#type' => 'textfield', '#title' => t('Maximum number of files per operation'), '#default_value' => $profile['filenum'], '#description' => t('You can allow users to select multiple files for operations such as delete, resize, etc. Entire batch file operation is executed in a single drupal load, which may be good. However there will be an increase in script execution time, cpu load and memory consumption possibly exceeding the limits of your server, which is really bad. For unlimited number of file handling, set this to 0.'), ); //Directories $form['directories']['#theme'] = 'imce_directories'; $form['directories']['#weight'] = 1; for ($i = 0; $i < count($profile['directories']); $i++) { $form['directories'][$i] = imce_directory_form($profile['directories'][$i]); } $form['directories'][$i] = imce_directory_form(); $form['directories'][$i+1] = imce_directory_form(); //Thumbnails $form['thumbnails']['#theme'] = 'imce_thumbnails'; $form['thumbnails']['#weight'] = 2; for ($i = 0; $i < count($profile['thumbnails']); $i++) { $form['thumbnails'][$i] = imce_thumbnail_form($profile['thumbnails'][$i]); } $form['thumbnails'][$i] = imce_thumbnail_form(); $form['thumbnails'][$i+1] = imce_thumbnail_form(); $form = array('profile' => $form); $form['pid'] = array('#type' => 'hidden', '#value' => $pid); $form['submit'] = array('#type' => 'submit', '#value' => t('Save configuration')); $form['#validate'][] = 'imce_profile_validate'; $form['#submit'][] = 'imce_profile_submit'; return $form; } /** * Profile form validate. */ function imce_profile_validate($form, &$form_state) { $profile = &$form_state['values']['profile']; $dim_re = '/^\d+x\d+$/'; $dim_error = t('Dimensions must be specified in WIDTHxHEIGHT format.'); // Check max image dimensions if ($profile['dimensions'] && !preg_match($dim_re, $profile['dimensions'])) { return form_set_error('profile][dimensions', $dim_error); } // Check thumbnails dimensions foreach ($profile['thumbnails'] as $i => $thumb) { if (trim($thumb['name']) != '' && !preg_match($dim_re, $thumb['dimensions'])) { return form_set_error("profile][thumbnails][$i][dimensions", $dim_error); } } } /** * Profile form submit. */ function imce_profile_submit($form, &$form_state) { $profile = $form_state['values']['profile']; $pid = $form_state['values']['pid']; $message = $pid > 0 ? t('The changes have been saved.') : t('Profile has been added.'); //unset empty fields of directories and thumbnails. imce_clean_profile_fields($profile); //save profile. $pid = imce_update_profiles($pid, $profile); drupal_set_message($message); $form_state['redirect'] = 'admin/config/media/imce/profile/edit/' . $pid; } /** * directory settings form */ function imce_directory_form($directory = array()) { if (empty($directory)) { $directory = array('name' => '', 'subnav' => 0, 'browse' => 0, 'upload' => 0, 'thumb' => 0, 'delete' => 0, 'resize' => 0); } $form['name'] = array( '#type' => 'textfield', '#default_value' => $directory['name'], '#size' => 24, '#maxlength' => NULL, ); $form['subnav'] = array( '#type' => 'checkbox', '#title' => t('Including subdirectories'), '#default_value' => $directory['subnav'], ); $form['browse'] = array( '#type' => 'checkbox', '#title' => t('Browse'), '#default_value' => $directory['browse'], ); $form['upload'] = array( '#type' => 'checkbox', '#title' => t('Upload'), '#default_value' => $directory['upload'], ); $form['thumb'] = array( '#type' => 'checkbox', '#title' => t('Thumbnails'), '#default_value' => $directory['thumb'], ); $form['delete'] = array( '#type' => 'checkbox', '#title' => t('Delete'), '#default_value' => $directory['delete'], ); $form['resize'] = array( '#type' => 'checkbox', '#title' => t('Resize'), '#default_value' => $directory['resize'], ); return $form; } /** * Directorys form themed. */ function imce_directories_theme($variables) { $form = $variables['form']; $rows = array(); $root = t('root'); foreach (element_children($form) as $key) { //directory path $row = array('
<' . $root . '>' . '/' . drupal_render($form[$key]['name']) . '
' . drupal_render($form[$key]['subnav'])); unset($form[$key]['name'], $form[$key]['subnav']); //permissions $header = array(); foreach (element_children($form[$key]) as $perm) { $header[] = $form[$key][$perm]['#title']; unset($form[$key][$perm]['#title']); $row[] = drupal_render($form[$key][$perm]); } $rows[] = $row; } array_unshift($header, t('Directory path')); $output = '

' . t('Directories') . '

'; $output .= theme('table', array('header' => $header, 'rows' => $rows)); $output .= '
' . t('Define directories that users of this profile can access.

Note that thumbnails permission does not affect thumbnail creation on upload. See thumbnails decription below.

If you need more fields, just fill all and save, and you will get two more on the next page.

') . '
'; $output .= drupal_render_children($form); return $output; } /** * thumbnail settings form */ function imce_thumbnail_form($thumb = array()) { if (empty($thumb)) { $thumb = array('name' => '', 'dimensions' => '', 'prefix' => '', 'suffix' => ''); } $form['name'] = array( '#type' => 'textfield', '#default_value' => $thumb['name'], '#size' => 20, ); $form['dimensions'] = array( '#type' => 'textfield', '#default_value' => $thumb['dimensions'], '#size' => 20, ); $form['prefix'] = array( '#type' => 'textfield', '#default_value' => $thumb['prefix'], '#size' => 20, ); $form['suffix'] = array( '#type' => 'textfield', '#default_value' => $thumb['suffix'], '#size' => 20, ); return $form; } /** * Thumbnails form themed. */ function imce_thumbnails_theme($variables) { $form = $variables['form']; $header = array(t('Name'), t('Dimensions'), t('Prefix'), t('Suffix')); $rows = array(); foreach (element_children($form) as $key) { $rows[] = array( drupal_render($form[$key]['name']), drupal_render($form[$key]['dimensions']), drupal_render($form[$key]['prefix']), drupal_render($form[$key]['suffix']), ); } $output = '

' . t('Thumbnails') . '

'; $output .= theme('table', array('header' => $header, 'rows' => $rows)); $output .= '
' . t('You may create a list of thumbnail options that users can choose from.

Note that users will always be able to create these thumbnails on file upload no matter what the thumbnail permission is.

If you need more fields, just fill all and save, and you will get two more on the next page.

') . '
'; $output .= drupal_render_children($form); return $output; } /** * Role-profile form */ function imce_role_form($role, $weight = TRUE, $core = TRUE) { $form['name'] = array( '#markup' => check_plain($role['name']), ); if ($weight) { $form['weight'] = $core ? array( '#type' => 'textfield', '#value' => $role['weight'], '#attributes' => array('readonly' => 'readonly', 'style' => 'border: none; width: 2em; background-color: transparent;'), ) : array( '#type' => 'weight', '#default_value' => $role['weight'], ); } foreach (array_keys(file_get_stream_wrappers(STREAM_WRAPPERS_VISIBLE)) as $scheme) { $form[$scheme . '_pid'] = array( '#type' => 'select', '#options' => imce_profile_options(), '#default_value' => $role[$scheme . '_pid'], '#empty_value' => 0, ); } return $form; } /** * Profile delete form */ function imce_profile_delete_form($form, &$form_state, $pid) { if ($pid > 1 && $profile = imce_load_profile($pid)) { $form['#submit'][] = 'imce_profile_delete_submit'; $form['pid'] = array('#type' => 'hidden', '#value' => $pid); return confirm_form($form, t('Are you sure you want to delete the profile %name?', array('%name' => $profile['name'])), 'admin/config/media/imce', '', t('Delete'), t('Cancel') ); } drupal_goto('admin/config/media/imce'); } /** * Profile delete form submit */ function imce_profile_delete_submit($form, &$form_state) { imce_update_profiles($form_state['values']['pid'], NULL); drupal_set_message(t('Profile has been deleted.')); $form_state['redirect'] = 'admin/config/media/imce'; } /** * Profile options. */ function imce_profile_options() { $options = array(); foreach (variable_get('imce_profiles', array()) as $pid => $profile) { $options[$pid] = $profile['name']; } return $options; } /** * Profile import links. */ function imce_profile_import_html($pid = 0) { $output = ''; $links = array(); foreach (variable_get('imce_profiles', array()) as $id => $profile) { if ($pid != $id) { $links[] = l($profile['name'], $_GET['q'], array('query' => array('import' => $id))); } } if (!empty($links)) { $output = '

' . t('Import settings from other profiles') . ': '; $output .= implode(', ', $links) . '

'; } return $output; } /** * Update role-profile assignments. */ function imce_update_roles($pid) { $roles = variable_get('imce_roles_profiles', array()); foreach ($roles as $rid => $role) { foreach ($role as $key => $value) { if (substr($key, -4) == '_pid') { if ($value == $pid) { $roles[$rid][$key] = 0; } elseif ($value > $pid) { $roles[$rid][$key]--; } } } } variable_set('imce_roles_profiles', $roles); } /** * Add, update or delete a profile. */ function imce_update_profiles($pid, $profile = NULL) { $profiles = variable_get('imce_profiles', array()); //add or update if (isset($profile)) { $pid = isset($profiles[$pid]) ? $pid : count($profiles)+1; $profiles[$pid] = $profile; } //delete elseif (isset($profiles[$pid]) && $pid > 1) { unset($profiles[$pid]); for ($i = $pid+1; isset($profiles[$i]); $i++) { $profiles[$i-1] = $profiles[$i]; unset($profiles[$i]); } imce_update_roles($pid); } variable_set('imce_profiles', $profiles); return $pid; } /** * Unset empty fields in thumbnails and directory paths. */ function imce_clean_profile_fields(&$profile) { $clean = array(); foreach ($profile['thumbnails'] as $thumb) { if (trim($thumb['name']) != '') { $clean[] = $thumb; } } $profile['thumbnails'] = $clean; $clean = array(); $names = array(); foreach ($profile['directories'] as $dir) { $dir['name'] = trim($dir['name'], '/ '); if ($dir['name'] == '') { continue; } if (isset($names[$dir['name']])) { drupal_set_message(t('Duplicate directory paths are not allowed.'), 'error'); continue; } if (!imce_reg_dir($dir['name'])) { drupal_set_message(t('%dirname is not accepted as a proper directory name.', array('%dirname' => $dir['name'])), 'error'); continue; } $clean[] = $dir; $names[$dir['name']] = 1; } $profile['directories'] = $clean; } /** * Profile load. */ function imce_load_profile($pid) { $profiles = variable_get('imce_profiles', array()); return isset($profiles[$pid]) ? $profiles[$pid] : NULL; } /** * Sort roles according to their weights. */ function imce_sorted_roles() { static $sorted; if (!isset($sorted)) { $sorted = array(); $roles = user_roles(); $profiles = variable_get('imce_profiles', array()); $roles_profiles = variable_get('imce_roles_profiles', array()); $roles_profiles[DRUPAL_ANONYMOUS_RID]['weight'] = 12; $roles_profiles[DRUPAL_AUTHENTICATED_RID]['weight'] = 11; $schemes = array_keys(file_get_stream_wrappers(STREAM_WRAPPERS_VISIBLE)); foreach ($roles as $rid => $name) { $sorted[$rid] = array( 'name' => $name, 'weight' => isset($roles_profiles[$rid]['weight']) ? $roles_profiles[$rid]['weight'] : 0 ); foreach ($schemes as $scheme) { $key = $scheme . '_pid'; $sorted[$rid][$key] = isset($roles_profiles[$rid][$key]) && isset($profiles[$roles_profiles[$rid][$key]]) ? $roles_profiles[$rid][$key] : 0; } } uasort($sorted, 'imce_rolesort'); } return $sorted; } /** * Sorting function for roles. */ function imce_rolesort($r1, $r2) { return $r1['weight']-$r2['weight']; } /** * Checks if the given role can upload all extensions. */ function imce_admin_check_wildcard_upload($rid, $conf = NULL) { if (!isset($conf)) { $conf = variable_get('imce_roles_profiles', array()); } if (!empty($conf[$rid])) { foreach ($conf[$rid] as $key => $pid) { if ($pid && substr($key, -4) == '_pid') { if ($profile = imce_load_profile($pid)) { if ($profile['extensions'] === '*' && !empty($profile['directories'])) { foreach ($profile['directories'] as $dirconf) { if (!empty($dirconf['upload'])) { return $key; } } } } } } } return FALSE; } //Include core profile functions. include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'imce') . '/inc/imce.core.profiles.inc';