2013-04-09 18:20:06 +02:00
|
|
|
/**
|
2013-04-13 14:44:50 +02:00
|
|
|
* EGroupware - Filemanager - Javascript UI
|
2013-04-09 18:20:06 +02:00
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package filemanager
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @copyright (c) 2008-13 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2013-04-13 14:44:50 +02:00
|
|
|
/**
|
|
|
|
* UI for filemanager
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-13 14:44:50 +02:00
|
|
|
* @augments AppJS
|
|
|
|
*/
|
2013-11-04 21:54:23 +01:00
|
|
|
app.classes.filemanager = AppJS.extend(
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
|
|
|
appname: 'filemanager',
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* path widget
|
|
|
|
*/
|
|
|
|
path_widget: null,
|
|
|
|
/**
|
|
|
|
* Array of pathes from files in clipboard
|
|
|
|
*/
|
|
|
|
clipboard_files: [],
|
|
|
|
/**
|
|
|
|
* Are files cut into clipboard - need to be deleted at source on paste
|
|
|
|
*/
|
|
|
|
clipboard_is_cut: false,
|
|
|
|
/**
|
|
|
|
* Key for storing clipboard in browser localstorage
|
|
|
|
*/
|
|
|
|
clipboard_localstore_key: 'filemanager.clipboard',
|
2013-04-09 18:20:06 +02:00
|
|
|
|
|
|
|
/**
|
2013-04-10 19:11:32 +02:00
|
|
|
* Constructor
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-13 14:44:50 +02:00
|
|
|
* @memberOf app.filemanager
|
2013-04-09 18:20:06 +02:00
|
|
|
*/
|
2013-11-04 21:54:23 +01:00
|
|
|
init: function()
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
2013-04-10 19:11:32 +02:00
|
|
|
// call parent
|
|
|
|
this._super.apply(this, arguments);
|
2013-04-10 12:04:18 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Destructor
|
|
|
|
*/
|
|
|
|
destroy: function()
|
|
|
|
{
|
|
|
|
delete this.et2;
|
|
|
|
// call parent
|
|
|
|
this._super.apply(this, arguments);
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* This function is called when the etemplate2 object is loaded
|
|
|
|
* and ready. If you must store a reference to the et2 object,
|
|
|
|
* make sure to clean it up in destroy().
|
|
|
|
*
|
|
|
|
* @param et2 etemplate2 Newly ready object
|
|
|
|
*/
|
|
|
|
et2_ready: function(et2)
|
|
|
|
{
|
|
|
|
// call parent
|
|
|
|
this._super.apply(this, arguments);
|
|
|
|
|
|
|
|
this.path_widget = this.et2.getWidgetById('path');
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
// get clipboard from browser localstore and update button tooltips
|
|
|
|
if (typeof window.localStorage != 'undefined' && typeof window.localStorage[this.clipboard_localstore_key] != 'undefined')
|
|
|
|
{
|
|
|
|
this.clipboard_files = JSON.parse(window.localStorage[this.clipboard_localstore_key]);
|
|
|
|
}
|
|
|
|
this.clipboard_tooltips();
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-10-07 18:53:13 +02:00
|
|
|
if (typeof this.readonly != 'undefined')
|
|
|
|
{
|
|
|
|
this.set_readonly.apply(this, this.readonly);
|
|
|
|
delete this.readonly;
|
|
|
|
}
|
2013-04-10 19:11:32 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-13 14:44:50 +02:00
|
|
|
/**
|
|
|
|
* Regexp to convert id to a path, use this.id2path(_id)
|
|
|
|
*/
|
|
|
|
remove_prefix: /^filemanager::/,
|
|
|
|
/**
|
|
|
|
* Convert id to path (remove "filemanager::" prefix)
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-13 14:44:50 +02:00
|
|
|
* @param string _id
|
|
|
|
* @returns string
|
|
|
|
*/
|
|
|
|
id2path: function(_id)
|
|
|
|
{
|
|
|
|
return _id.replace(this.remove_prefix, '');
|
|
|
|
},
|
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* Convert array of elems to array of paths
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param array _elems selected items from actions
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
_elems2paths: function(_elems)
|
|
|
|
{
|
|
|
|
var paths = [];
|
|
|
|
for (var i = 0; i < _elems.length; i++)
|
|
|
|
{
|
2013-04-13 14:44:50 +02:00
|
|
|
paths.push(this.id2path(_elems[i].id));
|
2013-04-11 12:46:39 +02:00
|
|
|
}
|
|
|
|
return paths;
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 12:04:18 +02:00
|
|
|
/**
|
2013-04-13 14:44:50 +02:00
|
|
|
* Get directory of a path
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-13 14:44:50 +02:00
|
|
|
* @param string _path
|
|
|
|
* @returns string
|
|
|
|
*/
|
|
|
|
dirname: function(_path)
|
|
|
|
{
|
|
|
|
var parts = _path.split('/');
|
|
|
|
parts.pop();
|
|
|
|
return parts.join('/') || '/';
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-13 14:44:50 +02:00
|
|
|
/**
|
|
|
|
* Get name of a path
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-13 14:44:50 +02:00
|
|
|
* @param string _path
|
|
|
|
* @returns string
|
|
|
|
*/
|
|
|
|
basename: function(_path)
|
|
|
|
{
|
|
|
|
return _path.split('/').pop();
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-13 14:44:50 +02:00
|
|
|
/**
|
|
|
|
* Get current working directory
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-13 14:44:50 +02:00
|
|
|
* @return string
|
2013-04-10 12:04:18 +02:00
|
|
|
*/
|
2013-04-13 14:44:50 +02:00
|
|
|
get_path: function()
|
2013-04-10 12:04:18 +02:00
|
|
|
{
|
2013-04-13 14:44:50 +02:00
|
|
|
return this.path_widget ? this.path_widget.get_value() : null;
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Open compose with already attached files
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param string|array attachment path(s)
|
2013-04-10 19:11:32 +02:00
|
|
|
*/
|
2013-04-09 18:20:06 +02:00
|
|
|
open_mail: function(attachments)
|
|
|
|
{
|
2013-04-11 12:46:39 +02:00
|
|
|
if (typeof attachments == 'undefined') attachments = this.clipboard_files;
|
2013-04-09 18:20:06 +02:00
|
|
|
var params = {};
|
|
|
|
if (!(attachments instanceof Array)) attachments = [ attachments ];
|
|
|
|
for(var i=0; i < attachments.length; i++)
|
|
|
|
{
|
2013-04-11 12:46:39 +02:00
|
|
|
params['preset[file]['+i+']'] = 'vfs://default'+attachments[i];
|
2013-04-09 18:20:06 +02:00
|
|
|
}
|
|
|
|
egw.open('', 'felamimail', 'add', params);
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Mail files action: open compose with already attached files
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-10 19:11:32 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _elems
|
|
|
|
*/
|
2013-04-09 18:20:06 +02:00
|
|
|
mail: function(_action, _elems)
|
|
|
|
{
|
2013-04-11 12:46:39 +02:00
|
|
|
this.open_mail(this._elems2paths(_elems));
|
2013-04-09 18:20:06 +02:00
|
|
|
},
|
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
2013-04-20 21:23:36 +02:00
|
|
|
* Send names of uploaded files (again) to server, to process them: either copy to vfs or ask overwrite/rename
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-20 21:23:36 +02:00
|
|
|
* @param _event
|
|
|
|
* @param _file_count
|
2013-08-27 22:40:15 +02:00
|
|
|
* @param {string} [_path=current directory] Where the file is uploaded to.
|
2013-04-10 19:11:32 +02:00
|
|
|
*/
|
2013-08-27 22:40:15 +02:00
|
|
|
upload: function(_event, _file_count, _path)
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
2013-08-27 22:40:15 +02:00
|
|
|
if(typeof _path == 'undefined')
|
|
|
|
{
|
|
|
|
_path = this.get_path();
|
|
|
|
}
|
2013-08-10 01:34:42 +02:00
|
|
|
if (_file_count && !jQuery.isEmptyObject(_event.data.getValue()))
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
2013-04-20 21:23:36 +02:00
|
|
|
var widget = _event.data;
|
2013-11-04 21:54:23 +01:00
|
|
|
var request = egw.json('filemanager_ui::ajax_action', ['upload', widget.getValue(), _path],
|
2013-09-10 21:54:19 +02:00
|
|
|
this._upload_callback, this, true, this
|
|
|
|
).sendRequest();
|
2013-04-20 21:23:36 +02:00
|
|
|
widget.set_value('');
|
|
|
|
}
|
|
|
|
},
|
2013-11-14 22:38:45 +01:00
|
|
|
|
2013-11-08 00:30:50 +01:00
|
|
|
/**
|
|
|
|
* Finish callback for file a file dialog, to get the overwrite / rename prompt
|
|
|
|
*/
|
|
|
|
file_a_file_upload: function(_event, _file_count)
|
|
|
|
{
|
|
|
|
var widget = _event.data;
|
|
|
|
var value = widget.getValue();
|
|
|
|
var path = widget.getRoot().getWidgetById("path").getValue();
|
|
|
|
var action = widget.getRoot().getWidgetById("action").getValue();
|
|
|
|
var link = widget.getRoot().getWidgetById("entry").getValue();
|
|
|
|
if(action == 'save_as' && link.app && link.id)
|
|
|
|
{
|
|
|
|
path = "/apps/"+link.app+"/"+link.id;
|
|
|
|
}
|
2013-11-14 22:38:45 +01:00
|
|
|
|
2013-11-08 00:30:50 +01:00
|
|
|
var props = widget.getInstanceManager().getValues(widget.getRoot());
|
2013-11-14 22:38:45 +01:00
|
|
|
egw.json('filemanager_ui::ajax_action', [action == 'save_as' ? 'upload' : 'link', widget.getValue(), path, props],
|
|
|
|
function(_data)
|
|
|
|
{
|
|
|
|
app.filemanager._upload_callback(_data);
|
|
|
|
|
|
|
|
// Remove successful after a delay
|
|
|
|
for(var file in _data.uploaded)
|
|
|
|
{
|
|
|
|
if(!_data.uploaded[file].confirm || _data.uploaded[file].confirmed)
|
|
|
|
{
|
|
|
|
// Remove that file from file widget...
|
|
|
|
widget.remove_file(_data.uploaded[file].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, app.filemanager, true, this
|
|
|
|
).sendRequest(true);
|
2013-11-08 00:30:50 +01:00
|
|
|
return true;
|
|
|
|
},
|
2013-11-14 22:38:45 +01:00
|
|
|
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-20 21:23:36 +02:00
|
|
|
/**
|
|
|
|
* Callback for server response to upload request:
|
|
|
|
* - display message and refresh list
|
|
|
|
* - ask use to confirm overwritting existing files or rename upload
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-20 21:23:36 +02:00
|
|
|
* @param object _data values for attributes msg, files, ...
|
|
|
|
*/
|
|
|
|
_upload_callback: function(_data)
|
|
|
|
{
|
|
|
|
if (_data.msg) window.egw_refresh(_data.msg, this.appname);
|
|
|
|
|
2013-04-22 21:57:03 +02:00
|
|
|
var that = this;
|
2013-04-20 21:23:36 +02:00
|
|
|
for(var file in _data.uploaded)
|
|
|
|
{
|
|
|
|
if (_data.uploaded[file].confirm && !_data.uploaded[file].confirmed)
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
2013-04-23 18:52:39 +02:00
|
|
|
var buttons = [
|
2013-10-07 18:53:13 +02:00
|
|
|
{text: this.egw.lang("Yes"), id: "overwrite", class: "ui-priority-primary", "default": true},
|
|
|
|
{text: this.egw.lang("Rename"), id:"rename"},
|
|
|
|
{text: this.egw.lang("Cancel"), id:"cancel"},
|
2013-04-23 18:52:39 +02:00
|
|
|
];
|
|
|
|
if (_data.uploaded[file].confirm === "is_dir")
|
|
|
|
buttons.shift();
|
|
|
|
var dialog = et2_dialog.show_prompt(function(_button_id, _value) {
|
|
|
|
var uploaded = {};
|
|
|
|
uploaded[this.my_data.file] = this.my_data.data;
|
|
|
|
switch (_button_id)
|
|
|
|
{
|
|
|
|
case "overwrite":
|
|
|
|
uploaded[this.my_data.file].confirmed = true;
|
|
|
|
// fall through
|
|
|
|
case "rename":
|
|
|
|
uploaded[this.my_data.file].name = _value;
|
|
|
|
delete uploaded[this.my_data.file].confirm;
|
|
|
|
// send overwrite-confirmation and/or rename request to server
|
2013-11-14 22:38:45 +01:00
|
|
|
egw.json('filemanager_ui::ajax_action', [this.my_data.action, uploaded, this.my_data.path, this.my_data.props],
|
2013-09-10 21:54:19 +02:00
|
|
|
that._upload_callback, that, true, that
|
|
|
|
).sendRequest();
|
2013-04-23 18:52:39 +02:00
|
|
|
return;
|
2013-11-08 00:30:50 +01:00
|
|
|
case "cancel":
|
|
|
|
// Remove that file from every file widget...
|
|
|
|
that.et2.iterateOver(function(_widget) {
|
|
|
|
_widget.remove_file(this.my_data.data.name);
|
|
|
|
}, this, et2_file);
|
2013-04-23 18:52:39 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_data.uploaded[file].confirm === "is_dir" ?
|
2013-10-07 18:53:13 +02:00
|
|
|
this.egw.lang("There's already a directory with that name!") :
|
|
|
|
this.egw.lang('Do you want to overwrite existing file %1 in directory %2?', _data.uploaded[file].name, _data.path),
|
|
|
|
this.egw.lang('File %1 already exists', _data.uploaded[file].name),
|
2013-04-23 18:52:39 +02:00
|
|
|
_data.uploaded[file].name, buttons, file);
|
|
|
|
// setting required data for callback in as my_data
|
|
|
|
dialog.my_data = {
|
2013-11-14 22:38:45 +01:00
|
|
|
action: _data.action,
|
2013-04-23 18:52:39 +02:00
|
|
|
file: file,
|
|
|
|
path: _data.path,
|
2013-11-08 00:30:50 +01:00
|
|
|
data: _data.uploaded[file],
|
|
|
|
props: _data.props
|
2013-04-23 18:52:39 +02:00
|
|
|
};
|
2013-04-20 21:23:36 +02:00
|
|
|
}
|
2013-04-09 18:20:06 +02:00
|
|
|
}
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
2013-04-12 12:30:52 +02:00
|
|
|
* Update clickboard tooltips in buttons
|
2013-04-10 19:11:32 +02:00
|
|
|
*/
|
|
|
|
clipboard_tooltips: function()
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
2013-04-10 19:11:32 +02:00
|
|
|
var paste_buttons = ['button[paste]', 'button[linkpaste]', 'button[mailpaste]'];
|
|
|
|
for(var i=0; i < paste_buttons.length; ++i)
|
|
|
|
{
|
|
|
|
var button = this.et2.getWidgetById(paste_buttons[i]);
|
2013-04-12 12:30:52 +02:00
|
|
|
if (button) button.set_statustext(this.clipboard_files.join(",\n"));
|
2013-04-10 19:11:32 +02:00
|
|
|
}
|
2013-04-09 18:20:06 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Clip files into clipboard
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-10 19:11:32 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _elems
|
|
|
|
*/
|
2013-04-09 18:20:06 +02:00
|
|
|
clipboard: function(_action, _elems)
|
|
|
|
{
|
2013-04-10 19:11:32 +02:00
|
|
|
this.clipboard_is_cut = _action.id == "cut";
|
|
|
|
if (_action.id != "add") this.clipboard_files = [];
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
this.clipboard_files = this.clipboard_files.concat(this._elems2paths(_elems));
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
if (_action.id == "add" && this.clipboard_files.length > 1)
|
2013-04-09 18:20:06 +02:00
|
|
|
{
|
2013-04-11 12:46:39 +02:00
|
|
|
// ToDo: make sure files are unique
|
2013-04-10 19:11:32 +02:00
|
|
|
}
|
|
|
|
this.clipboard_tooltips();
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
// update localstore with files
|
|
|
|
if (typeof window.localStorage != 'undefined')
|
|
|
|
{
|
|
|
|
window.localStorage[this.clipboard_localstore_key] = JSON.stringify(this.clipboard_files);
|
|
|
|
}
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Paste files into current directory or mail them
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-10 19:11:32 +02:00
|
|
|
* @param _type 'paste', 'linkpaste', 'mailpaste'
|
|
|
|
*/
|
|
|
|
paste: function(_type)
|
|
|
|
{
|
2013-04-11 12:46:39 +02:00
|
|
|
if (this.clipboard_files.length == 0)
|
|
|
|
{
|
2013-10-07 18:53:13 +02:00
|
|
|
alert(this.egw.lang('Clipboard is empty!'));
|
2013-04-11 12:46:39 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-04-10 19:11:32 +02:00
|
|
|
switch(_type)
|
|
|
|
{
|
|
|
|
case 'mailpaste':
|
|
|
|
this.open_mail(this.clipboard_files);
|
|
|
|
break;
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
case 'paste':
|
2013-04-12 10:56:28 +02:00
|
|
|
this._do_action(this.clipboard_is_cut ? 'move' : 'copy', this.clipboard_files);
|
2013-04-11 12:46:39 +02:00
|
|
|
|
|
|
|
if (this.clipboard_is_cut)
|
|
|
|
{
|
|
|
|
this.clipboard_is_cut = false;
|
|
|
|
this.clipboard_files = [];
|
|
|
|
this.clipboard_tooltips();
|
|
|
|
}
|
|
|
|
break;
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
case 'linkpaste':
|
2013-04-12 10:56:28 +02:00
|
|
|
this._do_action('symlink', this.clipboard_files);
|
2013-04-11 12:46:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pass action to server
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _elems
|
|
|
|
*/
|
|
|
|
action: function(_action, _elems)
|
|
|
|
{
|
2013-04-23 18:52:39 +02:00
|
|
|
var paths = this._elems2paths(_elems);
|
2013-11-12 23:57:29 +01:00
|
|
|
this._do_action(_action.id, paths);
|
2013-04-09 18:20:06 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* Prompt user for directory to create
|
|
|
|
*/
|
|
|
|
createdir: function()
|
|
|
|
{
|
2013-10-07 18:53:13 +02:00
|
|
|
var dir = prompt(this.egw.lang('New directory'));
|
2013-04-11 12:46:39 +02:00
|
|
|
|
|
|
|
if (dir)
|
|
|
|
{
|
2013-04-13 14:44:50 +02:00
|
|
|
var path = this.get_path();
|
2013-04-11 15:16:40 +02:00
|
|
|
this._do_action('createdir', dir, true); // true=synchronous request
|
2013-04-11 12:46:39 +02:00
|
|
|
this.change_dir(path+'/'+dir);
|
|
|
|
}
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* Prompt user for directory to create
|
|
|
|
*/
|
|
|
|
symlink: function()
|
|
|
|
{
|
2013-10-07 18:53:13 +02:00
|
|
|
var target = prompt(this.egw.lang('Link target'));
|
2013-04-11 12:46:39 +02:00
|
|
|
|
|
|
|
if (target)
|
|
|
|
{
|
2013-04-11 15:16:40 +02:00
|
|
|
this._do_action('symlink', target);
|
2013-04-11 12:46:39 +02:00
|
|
|
}
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* Run a serverside action via an ajax call
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param _type 'move_file', 'copy_file', ...
|
|
|
|
* @param _selected selected paths
|
|
|
|
* @param _sync send a synchronous ajax request
|
2013-04-12 10:56:28 +02:00
|
|
|
* @param _path defaults to current path
|
2013-04-11 12:46:39 +02:00
|
|
|
*/
|
2013-04-12 10:56:28 +02:00
|
|
|
_do_action: function(_type, _selected, _sync, _path)
|
2013-04-11 12:46:39 +02:00
|
|
|
{
|
2013-04-13 14:44:50 +02:00
|
|
|
if (typeof _path == 'undefined') _path = this.get_path();
|
2013-09-10 21:56:22 +02:00
|
|
|
var request = egw.json('filemanager_ui::ajax_action', [_type, _selected, _path],
|
|
|
|
this._do_action_callback, this, !_sync, this
|
|
|
|
).sendRequest();
|
2013-04-11 12:46:39 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* Callback for _do_action ajax call
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param _data
|
|
|
|
*/
|
|
|
|
_do_action_callback: function(_data)
|
|
|
|
{
|
|
|
|
window.egw_refresh(_data.msg, this.appname);
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Force download of a file by appending '?download' to it's download url
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-10 19:11:32 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _senders
|
|
|
|
*/
|
2013-04-09 18:20:06 +02:00
|
|
|
force_download: function(_action, _senders)
|
|
|
|
{
|
|
|
|
var data = egw.dataGetUIDdata(_senders[0].id);
|
2013-04-13 14:44:50 +02:00
|
|
|
var url = data ? data.data.download_url : '/webdav.php'+this.id2path(_senders[0].id);
|
2013-04-09 18:20:06 +02:00
|
|
|
if (url[0] == '/') url = egw.link(url);
|
|
|
|
window.location = url+"?download";
|
2013-04-10 19:11:32 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Change directory
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-10 19:11:32 +02:00
|
|
|
* @param _dir directory to change to incl. '..' for one up
|
|
|
|
*/
|
|
|
|
change_dir: function(_dir)
|
|
|
|
{
|
|
|
|
switch (_dir)
|
|
|
|
{
|
|
|
|
case '..':
|
2013-04-13 14:44:50 +02:00
|
|
|
_dir = this.dirname(this.path_widget.getValue());
|
2013-04-10 19:11:32 +02:00
|
|
|
break;
|
|
|
|
case '~':
|
|
|
|
_dir = this.et2.getWidgetById('nm').options.settings.home_dir;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
this.path_widget.set_value(_dir);
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-10 19:11:32 +02:00
|
|
|
/**
|
|
|
|
* Open/active an item
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-10 19:11:32 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _senders
|
|
|
|
*/
|
|
|
|
open: function(_action, _senders)
|
|
|
|
{
|
|
|
|
var data = egw.dataGetUIDdata(_senders[0].id);
|
2013-04-13 14:44:50 +02:00
|
|
|
var path = this.id2path(_senders[0].id);
|
2013-10-14 11:01:03 +02:00
|
|
|
// symlinks dont have mime 'http/unix-directory', but server marks all directories with class 'isDir'
|
|
|
|
if (data.data.mime == 'httpd/unix-directory' || data.data['class'] && data.data['class'].split(/ +/).indexOf('isDir') != -1)
|
2013-04-10 19:11:32 +02:00
|
|
|
{
|
|
|
|
this.change_dir(path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-16 11:21:05 +02:00
|
|
|
egw.open({path: path, type: data.data.mime}, 'file');
|
2013-04-10 19:11:32 +02:00
|
|
|
}
|
2013-04-11 12:46:39 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-12 12:30:52 +02:00
|
|
|
/**
|
|
|
|
* Edit prefs of current directory
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-08-20 15:12:18 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _senders
|
2013-04-12 12:30:52 +02:00
|
|
|
*/
|
2013-08-20 15:12:18 +02:00
|
|
|
editprefs: function(_action, _senders)
|
2013-04-12 12:30:52 +02:00
|
|
|
{
|
2013-08-20 15:12:18 +02:00
|
|
|
var path = typeof _senders != 'undefined' ? this.id2path(_senders[0].id) : this.path_widget.getValue();
|
2013-04-12 12:30:52 +02:00
|
|
|
|
|
|
|
egw().open_link(egw.link('/index.php', {
|
|
|
|
menuaction: 'filemanager.filemanager_ui.file',
|
|
|
|
path: path,
|
|
|
|
}), 'fileprefs', '495x425');
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* File(s) droped
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _elems
|
|
|
|
* @param _target
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
drop: function(_action, _elems, _target)
|
|
|
|
{
|
|
|
|
var src = this._elems2paths(_elems);
|
2013-04-13 14:44:50 +02:00
|
|
|
var dst = this.id2path(_target.id);
|
2013-04-13 09:19:02 +02:00
|
|
|
//alert(_action.id+': '+src.join(', ')+' --> '+dst);
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-13 14:44:50 +02:00
|
|
|
// check if target is a file --> use it's directory instead
|
|
|
|
var data = egw.dataGetUIDdata(_target.id);
|
|
|
|
if (data.data.mime != 'httpd/unix-directory')
|
|
|
|
{
|
|
|
|
dst = this.dirname(dst);
|
|
|
|
}
|
|
|
|
|
2013-04-12 10:56:28 +02:00
|
|
|
this._do_action(_action.id == "file_drop_move" ? 'move' : 'copy', src, false, dst);
|
2013-04-11 12:46:39 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-08-27 22:40:15 +02:00
|
|
|
/**
|
|
|
|
* Handle a native / HTML5 file drop from system
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-08-27 22:40:15 +02:00
|
|
|
* This is a callback from nextmatch to prevent the default link action, and just upload instead.
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-08-27 22:40:15 +02:00
|
|
|
* @param {string} row_uid UID of the row the files were dropped on
|
2013-11-12 23:41:52 +01:00
|
|
|
* @param {et2_nextmatch} widget widget that got the drop
|
2013-08-27 22:40:15 +02:00
|
|
|
*/
|
2013-11-12 23:41:52 +01:00
|
|
|
filedrop: function(row_uid, widget ,files)
|
2013-08-27 22:40:15 +02:00
|
|
|
{
|
|
|
|
var self = this;
|
|
|
|
var data = egw.dataGetUIDdata(row_uid);
|
2013-11-12 23:41:52 +01:00
|
|
|
files = files || window.event.dataTransfer.files;
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-11-13 18:20:13 +01:00
|
|
|
var path = typeof data != 'undefined' && data.data.mime == "httpd/unix-directory" ? data.data.path : this.get_path();
|
2013-08-27 22:40:15 +02:00
|
|
|
var widget = this.et2.getWidgetById('upload');
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-08-27 22:40:15 +02:00
|
|
|
// Override finish to specify a potentially different path
|
|
|
|
var old_onfinish = widget.options.onFinish;
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-08-27 22:40:15 +02:00
|
|
|
widget.options.onFinish = function(_event, _file_count) {
|
|
|
|
widget.options.onFinish = old_onfinish;
|
|
|
|
self.upload(_event, _file_count, path);
|
|
|
|
}
|
|
|
|
// This triggers the upload
|
|
|
|
widget.set_value(files);
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-08-27 22:40:15 +02:00
|
|
|
// Return false to prevent the link
|
|
|
|
return false;
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
/**
|
|
|
|
* Get drag helper, called on drag start
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-11 12:46:39 +02:00
|
|
|
* @param _action
|
|
|
|
* @param _elems
|
|
|
|
* @return some dome objects
|
|
|
|
*/
|
|
|
|
drag: function(_action, _elems)
|
|
|
|
{
|
|
|
|
var icons = [];
|
|
|
|
for (var i = 0; i < _elems.length; i++)
|
|
|
|
{
|
2013-04-11 15:16:40 +02:00
|
|
|
var data = egw.dataGetUIDdata(_elems[i].id);
|
|
|
|
var src = egw.mime_icon(data.data.mime, data.data.path);
|
|
|
|
|
2013-04-11 12:46:39 +02:00
|
|
|
if (_elems[i].getFocused())
|
|
|
|
{
|
2013-04-11 15:16:40 +02:00
|
|
|
icons.unshift(src);
|
2013-04-11 12:46:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-11 15:16:40 +02:00
|
|
|
icons.push(src);
|
2013-04-11 12:46:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only take a maximum of 10 icons
|
|
|
|
var maxCnt = 10;
|
|
|
|
|
2013-08-29 00:31:14 +02:00
|
|
|
var div = $j(document.createElement("div"))
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
top: '0px',
|
|
|
|
left: '0px',
|
|
|
|
width: '300px'
|
|
|
|
});
|
2013-04-11 12:46:39 +02:00
|
|
|
|
|
|
|
var lastIcon = "";
|
|
|
|
var idx = 0;
|
|
|
|
|
|
|
|
for (var i = 0; i < icons.length; i++)
|
|
|
|
{
|
|
|
|
if (icons[i] != lastIcon)
|
|
|
|
{
|
|
|
|
lastIcon = icons[i];
|
|
|
|
|
|
|
|
// Create a stack of images
|
2013-04-11 15:16:40 +02:00
|
|
|
var img = $j(document.createElement('img'));
|
|
|
|
img.css({
|
2013-11-04 21:54:23 +01:00
|
|
|
position: 'absolute',
|
|
|
|
'z-index': 10000-i,
|
|
|
|
top: idx*5,
|
|
|
|
left: idx*5,
|
2013-04-11 15:16:40 +02:00
|
|
|
opacity: (maxCnt - idx) / maxCnt
|
|
|
|
});
|
|
|
|
img.attr('src', icons[i]);
|
2013-04-11 12:46:39 +02:00
|
|
|
div.append(img);
|
|
|
|
|
|
|
|
idx++;
|
|
|
|
if (idx == maxCnt)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-11 15:16:40 +02:00
|
|
|
var text = $j(document.createElement('div')).css({left: '30px', position: 'absolute'});
|
|
|
|
// add filename or number of files for multiple files
|
2013-10-07 18:53:13 +02:00
|
|
|
text.text(_elems.length > 1 ? _elems.length+' '+this.egw.lang('files') : this.basename(_elems[0].id));
|
2013-04-11 15:16:40 +02:00
|
|
|
div.append(text);
|
2013-04-11 12:46:39 +02:00
|
|
|
|
2013-08-29 00:31:14 +02:00
|
|
|
// Add notice of Ctrl key, if supported
|
2013-11-04 21:54:23 +01:00
|
|
|
if(window.FileReader && 'draggable' in document.createElement('span') &&
|
2013-08-29 00:31:14 +02:00
|
|
|
navigator && navigator.userAgent.indexOf('Chrome') >= 0)
|
|
|
|
{
|
2013-11-07 00:17:43 +01:00
|
|
|
var key = ["Mac68K","MacPPC","MacIntel"].indexOf(window.navigator.platform) < 0 ? 'Ctrl' : 'Command';
|
|
|
|
text.append('<br />' + this.egw.lang('Hold %1 to drag files to your computer',key));
|
2013-08-29 00:31:14 +02:00
|
|
|
}
|
2013-04-11 12:46:39 +02:00
|
|
|
return div;
|
2013-04-12 19:57:12 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-12 19:57:12 +02:00
|
|
|
/**
|
|
|
|
* Change readonly state for given directory
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-12 19:57:12 +02:00
|
|
|
* I get call/transported with each get_rows call, but should only by applied to UI if matching curent dir
|
2013-11-04 21:54:23 +01:00
|
|
|
*
|
2013-04-12 19:57:12 +02:00
|
|
|
* @param _path
|
|
|
|
* @param _ro
|
|
|
|
*/
|
|
|
|
set_readonly: function(_path, _ro)
|
|
|
|
{
|
|
|
|
//alert('set_readonly("'+_path+'", '+_ro+')');
|
2013-10-07 18:53:13 +02:00
|
|
|
if (!this.path_widget) // widget not yet ready, try later
|
|
|
|
{
|
|
|
|
this.readonly = [_path, _ro];
|
|
|
|
return;
|
|
|
|
}
|
2013-04-12 19:57:12 +02:00
|
|
|
var path = this.path_widget.getValue();
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-04-12 19:57:12 +02:00
|
|
|
if (_path == path)
|
|
|
|
{
|
2013-04-23 18:52:39 +02:00
|
|
|
var ids = ['button[linkpaste]', 'button[paste]', 'button[createdir]', 'button[symlink]', 'upload'];
|
2013-04-12 19:57:12 +02:00
|
|
|
for(var i=0; i < ids.length; ++i)
|
|
|
|
{
|
|
|
|
var widget = this.et2.getWidgetById(ids[i]);
|
2013-11-04 21:54:23 +01:00
|
|
|
if (widget)
|
2013-04-12 19:57:12 +02:00
|
|
|
{
|
|
|
|
if (widget._type == 'button' || widget._type == 'buttononly')
|
|
|
|
{
|
|
|
|
widget.set_readonly(_ro);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
widget.set_disabled(_ro);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-01 17:40:14 +02:00
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-10-01 17:40:14 +02:00
|
|
|
/**
|
|
|
|
* Functions for the select dialog
|
|
|
|
*/
|
|
|
|
select_goto: function(to,widget)
|
|
|
|
{
|
|
|
|
if (widget)
|
|
|
|
{
|
|
|
|
var path = null;
|
|
|
|
// Cannot do this, there are multiple widgets named path
|
|
|
|
// widget.getRoot().getWidgetById("path");
|
|
|
|
widget.getRoot().iterateOver(function(widget) {
|
|
|
|
if(widget.id == "path") path = widget;
|
|
|
|
},null, et2_textbox);
|
|
|
|
if(path)
|
|
|
|
{
|
|
|
|
path.set_value(to);
|
|
|
|
path.getInstanceManager().postSubmit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
2013-11-04 21:54:23 +01:00
|
|
|
|
2013-10-01 17:40:14 +02:00
|
|
|
select_show: function(file)
|
|
|
|
{
|
2013-10-04 11:28:10 +02:00
|
|
|
var editfield = this.et2.getWidgetById('name');
|
|
|
|
if(editfield)
|
|
|
|
{
|
|
|
|
editfield.set_value(file);
|
|
|
|
}
|
2013-10-01 17:40:14 +02:00
|
|
|
return false;
|
|
|
|
},
|
2013-10-01 18:27:50 +02:00
|
|
|
select_toggle: function(file,widget)
|
2013-10-01 17:40:14 +02:00
|
|
|
{
|
2013-10-02 09:34:23 +02:00
|
|
|
widget.getParent().iterateOver(function(widget) {
|
|
|
|
if(widget.options.selected_value == file)
|
|
|
|
{
|
|
|
|
widget.set_value(widget.get_value() == file ? widget.options.unselected_value : file);
|
|
|
|
}
|
|
|
|
}, null, et2_checkbox);
|
2013-11-13 00:51:05 +01:00
|
|
|
|
|
|
|
// Stop event or it will toggle back off
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
return false;
|
2013-04-12 10:56:28 +02:00
|
|
|
}
|
2013-04-23 01:00:29 +02:00
|
|
|
});
|