123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613 |
- /**
- * ownCloud
- *
- * @author Juan Pablo Villafañez Ramos <jvillafanez@owncloud.com>
- * @author Jesus Macias Portela <jesus@owncloud.com>
- * @copyright (C) 2014 ownCloud, Inc.
- *
- * This file is licensed under the Affero General Public License version 3
- * or later.
- *
- * See the COPYING-README file.
- *
- */
- /** @global Handlebars */
- if (!OCA.Files_External) {
- OCA.Files_External = {};
- }
- if (!OCA.Files_External.StatusManager) {
- OCA.Files_External.StatusManager = {};
- }
- OCA.Files_External.StatusManager = {
- mountStatus: null,
- mountPointList: null,
- /**
- * Function
- * @param {callback} afterCallback
- */
- getMountStatus: function (afterCallback) {
- var self = this;
- if (typeof afterCallback !== 'function' || self.isGetMountStatusRunning) {
- return;
- }
- if (self.mountStatus) {
- afterCallback(self.mountStatus);
- }
- },
- /**
- * Function Check mount point status from cache
- * @param {string} mount_point
- */
- getMountPointListElement: function (mount_point) {
- var element;
- $.each(this.mountPointList, function (key, value) {
- if (value.mount_point === mount_point) {
- element = value;
- return false;
- }
- });
- return element;
- },
- /**
- * Function Check mount point status from cache
- * @param {string} mount_point
- * @param {string} mount_point
- */
- getMountStatusForMount: function (mountData, afterCallback) {
- var self = this;
- if (typeof afterCallback !== 'function' || self.isGetMountStatusRunning) {
- return $.Deferred().resolve();
- }
- var defObj;
- if (self.mountStatus[mountData.mount_point]) {
- defObj = $.Deferred();
- afterCallback(mountData, self.mountStatus[mountData.mount_point]);
- defObj.resolve(); // not really useful, but it'll keep the same behaviour
- } else {
- defObj = $.ajax({
- type: 'GET',
- url: OC.getRootPath() + '/index.php/apps/files_external/' + ((mountData.type === 'personal') ? 'userstorages' : 'userglobalstorages') + '/' + mountData.id,
- data: {'testOnly' : false},
- success: function (response) {
- if (response && response.status === 0) {
- self.mountStatus[mountData.mount_point] = response;
- } else {
- var statusCode = response.status ? response.status : 1;
- var statusMessage = response.statusMessage ? response.statusMessage : t('files_external', 'Empty response from the server')
- // failure response with error message
- self.mountStatus[mountData.mount_point] = {
- type: mountData.type,
- status: statusCode,
- id: mountData.id,
- error: statusMessage,
- userProvided: response.userProvided,
- authMechanism: response.authMechanism,
- canEdit: response.can_edit,
- };
- }
- afterCallback(mountData, self.mountStatus[mountData.mount_point]);
- },
- error: function (jqxhr, state, error) {
- var message;
- if (mountData.location === 3) {
- // In this case the error is because mount point use Login credentials and don't exist in the session
- message = t('files_external', 'Couldn\'t access. Please log out and in again to activate this mount point');
- } else {
- message = t('files_external', 'Couldn\'t get the information from the remote server: {code} {type}', {
- code: jqxhr.status,
- type: error
- });
- }
- self.mountStatus[mountData.mount_point] = {
- type: mountData.type,
- status: 1,
- location: mountData.location,
- error: message
- };
- afterCallback(mountData, self.mountStatus[mountData.mount_point]);
- }
- });
- }
- return defObj;
- },
- /**
- * Function to get external mount point list from the files_external API
- * @param {Function} afterCallback function to be executed
- */
- getMountPointList: function (afterCallback) {
- var self = this;
- if (typeof afterCallback !== 'function' || self.isGetMountPointListRunning) {
- return;
- }
- if (self.mountPointList) {
- afterCallback(self.mountPointList);
- } else {
- self.isGetMountPointListRunning = true;
- $.ajax({
- type: 'GET',
- url: OC.linkToOCS('apps/files_external/api/v1') + 'mounts?format=json',
- success: function (response) {
- self.mountPointList = [];
- _.each(response.ocs.data, function (mount) {
- var element = {};
- element.mount_point = mount.name;
- element.type = mount.scope;
- element.location = "";
- element.id = mount.id;
- element.backendText = mount.backend;
- element.backend = mount.class;
- self.mountPointList.push(element);
- });
- afterCallback(self.mountPointList);
- },
- error: function (jqxhr, state, error) {
- self.mountPointList = [];
- OC.Notification.show(t('files_external', 'Couldn\'t get the list of external mount points: {type}',
- {type: error}), {type: 'error'}
- );
- },
- complete: function () {
- self.isGetMountPointListRunning = false;
- }
- });
- }
- },
- /**
- * Function to manage action when a mountpoint status = 1 (Errored). Show a dialog to be redirected to settings page.
- * @param {string} name MountPoint Name
- */
- manageMountPointError: function (name) {
- this.getMountStatus($.proxy(function (allMountStatus) {
- if (allMountStatus.hasOwnProperty(name) && allMountStatus[name].status > 0 && allMountStatus[name].status < 7) {
- var mountData = allMountStatus[name];
- if (mountData.type === "system") {
- if (mountData.userProvided || mountData.authMechanism === 'password::global::user') {
- // personal mount whit credentials problems
- this.showCredentialsDialog(name, mountData);
- } else if (mountData.canEdit) {
- OC.dialogs.confirm(t('files_external', 'There was an error with message: ') + mountData.error + '. Do you want to review mount point config in admin settings page?', t('files_external', 'External mount error'), function (e) {
- if (e === true) {
- OC.redirect(OC.generateUrl('/settings/admin/externalstorages'));
- }
- });
- } else {
- OC.dialogs.info(t('files_external', 'There was an error with message: ') + mountData.error + '. Please contact your system administrator.', t('files_external', 'External mount error'), () => {});
- }
- } else {
- OC.dialogs.confirm(t('files_external', 'There was an error with message: ') + mountData.error + '. Do you want to review mount point config in personal settings page?', t('files_external', 'External mount error'), function (e) {
- if (e === true) {
- OC.redirect(OC.generateUrl('/settings/personal#' + t('files_external', 'external-storage')));
- }
- });
- }
- }
- }, this));
- },
- /**
- * Function to process a mount point in relation with their status, Called from Async Queue.
- * @param {object} mountData
- * @param {object} mountStatus
- */
- processMountStatusIndividual: function (mountData, mountStatus) {
- var mountPoint = mountData.mount_point;
- if (mountStatus.status > 0) {
- var trElement = FileList.findFileEl(OCA.Files_External.StatusManager.Utils.jqSelEscape(mountPoint));
- var route = OCA.Files_External.StatusManager.Utils.getIconRoute(trElement) + '-error';
- if (OCA.Files_External.StatusManager.Utils.isCorrectViewAndRootFolder()) {
- OCA.Files_External.StatusManager.Utils.showIconError(mountPoint, $.proxy(OCA.Files_External.StatusManager.manageMountPointError, OCA.Files_External.StatusManager), route);
- }
- return false;
- } else {
- if (OCA.Files_External.StatusManager.Utils.isCorrectViewAndRootFolder()) {
- OCA.Files_External.StatusManager.Utils.restoreFolder(mountPoint);
- OCA.Files_External.StatusManager.Utils.toggleLink(mountPoint, true, true);
- }
- return true;
- }
- },
- /**
- * Function to process a mount point in relation with their status
- * @param {object} mountData
- * @param {object} mountStatus
- */
- processMountList: function (mountList) {
- var elementList = null;
- $.each(mountList, function (name, value) {
- var trElement = $('.files-fileList tr[data-file=\"' + OCA.Files_External.StatusManager.Utils.jqSelEscape(value.mount_point) + '\"]'); //FileList.findFileEl(OCA.Files_External.StatusManager.Utils.jqSelEscape(value.mount_point));
- trElement.attr('data-external-backend', value.backend);
- if (elementList) {
- elementList = elementList.add(trElement);
- } else {
- elementList = trElement;
- }
- });
- if (elementList instanceof $) {
- if (OCA.Files_External.StatusManager.Utils.isCorrectViewAndRootFolder()) {
- // Put their custom icon
- OCA.Files_External.StatusManager.Utils.changeFolderIcon(elementList);
- // Save default view
- OCA.Files_External.StatusManager.Utils.storeDefaultFolderIconAndBgcolor(elementList);
- OCA.Files_External.StatusManager.Utils.toggleLink(elementList.find('a.name'), false, false);
- }
- }
- },
- /**
- * Function to process the whole mount point list in relation with their status (Async queue)
- */
- launchFullConnectivityCheckOneByOne: function () {
- var self = this;
- this.getMountPointList(function (list) {
- // check if we have a list first
- if (list === undefined && !self.emptyWarningShown) {
- self.emptyWarningShown = true;
- OC.Notification.show(t('files_external', 'Couldn\'t fetch list of Windows network drive mount points: Empty response from server'),
- {type: 'error'}
- );
- return;
- }
- if (list && list.length > 0) {
- self.processMountList(list);
- if (!self.mountStatus) {
- self.mountStatus = {};
- }
- var ajaxQueue = [];
- $.each(list, function (key, value) {
- var queueElement = {
- funcName: $.proxy(self.getMountStatusForMount, self),
- funcArgs: [value,
- $.proxy(self.processMountStatusIndividual, self)]
- };
- ajaxQueue.push(queueElement);
- });
- var rolQueue = new OCA.Files_External.StatusManager.RollingQueue(ajaxQueue, 4, function () {
- if (!self.notificationHasShown) {
- $.each(self.mountStatus, function (key, value) {
- if (value.status === 1) {
- self.notificationHasShown = true;
- }
- });
- }
- });
- rolQueue.runQueue();
- }
- });
- },
- /**
- * Function to process a mount point list in relation with their status (Async queue)
- * @param {object} mountListData
- * @param {boolean} recheck delete cached info and force api call to check mount point status
- */
- launchPartialConnectivityCheck: function (mountListData, recheck) {
- if (mountListData.length === 0) {
- return;
- }
- var self = this;
- var ajaxQueue = [];
- $.each(mountListData, function (key, value) {
- if (recheck && value.mount_point in self.mountStatus) {
- delete self.mountStatus[value.mount_point];
- }
- var queueElement = {
- funcName: $.proxy(self.getMountStatusForMount, self),
- funcArgs: [value,
- $.proxy(self.processMountStatusIndividual, self)]
- };
- ajaxQueue.push(queueElement);
- });
- new OCA.Files_External.StatusManager.RollingQueue(ajaxQueue, 4).runQueue();
- },
- /**
- * Function to relaunch some mount point status check
- * @param {string} mountListNames
- * @param {boolean} recheck delete cached info and force api call to check mount point status
- */
- recheckConnectivityForMount: function (mountListNames, recheck) {
- if (mountListNames.length === 0) {
- return;
- }
- var self = this;
- var mountListData = [];
- if (!self.mountStatus) {
- self.mountStatus = {};
- }
- $.each(mountListNames, function (key, value) {
- var mountData = self.getMountPointListElement(value);
- if (mountData) {
- mountListData.push(mountData);
- }
- });
- // for all mounts in the list, delete the cached status values
- if (recheck) {
- $.each(mountListData, function (key, value) {
- if (value.mount_point in self.mountStatus) {
- delete self.mountStatus[value.mount_point];
- }
- });
- }
- self.processMountList(mountListData);
- self.launchPartialConnectivityCheck(mountListData, recheck);
- },
- credentialsDialogTemplate:
- '<div id="files_external_div_form"><div>' +
- '<div>{{credentials_text}}</div>' +
- '<form>' +
- '<input type="text" name="username" placeholder="{{placeholder_username}}"/>' +
- '<input type="password" name="password" placeholder="{{placeholder_password}}"/>' +
- '</form>' +
- '</div></div>',
- /**
- * Function to display custom dialog to enter credentials
- * @param {any} mountPoint -
- * @param {any} mountData -
- */
- showCredentialsDialog: function (mountPoint, mountData) {
- var dialog = $(OCA.Files_External.Templates.credentialsDialog({
- credentials_text: t('files_external', 'Please enter the credentials for the {mount} mount', {
- 'mount': mountPoint
- }),
- placeholder_username: t('files_external', 'Username'),
- placeholder_password: t('files_external', 'Password')
- }));
- $('body').append(dialog);
- var apply = function () {
- var username = dialog.find('[name=username]').val();
- var password = dialog.find('[name=password]').val();
- var endpoint = OC.generateUrl('apps/files_external/userglobalstorages/{id}', {
- id: mountData.id
- });
- $('.oc-dialog-close').hide();
- $.ajax({
- type: 'PUT',
- url: endpoint,
- data: {
- backendOptions: {
- user: username,
- password: password
- }
- },
- success: function (data) {
- OC.Notification.show(t('files_external', 'Credentials saved'), {type: 'success'});
- dialog.ocdialog('close');
- /* Trigger status check again */
- OCA.Files_External.StatusManager.recheckConnectivityForMount([OC.basename(data.mountPoint)], true);
- },
- error: function () {
- $('.oc-dialog-close').show();
- OC.Notification.show(t('files_external', 'Credentials saving failed'), {type: 'error'});
- }
- });
- return false;
- };
- var ocdialogParams = {
- modal: true,
- title: t('files_external', 'Credentials required'),
- buttons: [{
- text: t('files_external', 'Save'),
- click: apply,
- closeOnEscape: true
- }],
- closeOnExcape: true
- };
- dialog.ocdialog(ocdialogParams)
- .bind('ocdialogclose', function () {
- dialog.ocdialog('destroy').remove();
- });
- dialog.find('form').on('submit', apply);
- dialog.find('form input:first').focus();
- dialog.find('form input').keyup(function (e) {
- if ((e.which && e.which === 13) || (e.keyCode && e.keyCode === 13)) {
- $(e.target).closest('form').submit();
- return false;
- } else {
- return true;
- }
- });
- }
- };
- OCA.Files_External.StatusManager.Utils = {
- showIconError: function (folder, clickAction, errorImageUrl) {
- var imageUrl = "url(" + errorImageUrl + ")";
- var trFolder = $('.files-fileList tr[data-file=\"' + OCA.Files_External.StatusManager.Utils.jqSelEscape(folder) + '\"]'); //FileList.findFileEl(OCA.Files_External.StatusManager.Utils.jqSelEscape(folder));
- this.changeFolderIcon(folder, imageUrl);
- this.toggleLink(folder, false, clickAction);
- trFolder.addClass('externalErroredRow');
- },
- /**
- * @param folder string with the folder or jQuery element pointing to the tr element
- */
- storeDefaultFolderIconAndBgcolor: function (folder) {
- var trFolder;
- if (folder instanceof $) {
- trFolder = folder;
- } else {
- trFolder = $('.files-fileList tr[data-file=\"' + OCA.Files_External.StatusManager.Utils.jqSelEscape(folder) + '\"]'); //FileList.findFileEl(OCA.Files_External.StatusManager.Utils.jqSelEscape(folder)); //$('.files-fileList tr[data-file=\"' + OCA.Files_External.StatusManager.Utils.jqSelEscape(folder) + '\"]');
- }
- trFolder.each(function () {
- var thisElement = $(this);
- if (thisElement.data('oldbgcolor') === undefined) {
- thisElement.data('oldbgcolor', thisElement.css('background-color'));
- }
- });
- var icon = trFolder.find('td.filename div.thumbnail');
- icon.each(function () {
- var thisElement = $(this);
- if (thisElement.data('oldImage') === undefined) {
- thisElement.data('oldImage', thisElement.css('background-image'));
- }
- });
- },
- /**
- * @param folder string with the folder or jQuery element pointing to the tr element
- */
- restoreFolder: function (folder) {
- var trFolder;
- if (folder instanceof $) {
- trFolder = folder;
- } else {
- // can't use here FileList.findFileEl(OCA.Files_External.StatusManager.Utils.jqSelEscape(folder)); return incorrect instance of filelist
- trFolder = $('.files-fileList tr[data-file=\"' + OCA.Files_External.StatusManager.Utils.jqSelEscape(folder) + '\"]');
- }
- var tdChilds = trFolder.find("td.filename div.thumbnail");
- tdChilds.each(function () {
- var thisElement = $(this);
- thisElement.css('background-image', thisElement.data('oldImage'));
- });
- },
- /**
- * @param folder string with the folder or jQuery element pointing to the first td element
- * of the tr matching the folder name
- */
- changeFolderIcon: function (filename) {
- var file;
- var route;
- if (filename instanceof $) {
- //trElementList
- $.each(filename, function (index) {
- route = OCA.Files_External.StatusManager.Utils.getIconRoute($(this));
- $(this).attr("data-icon", route);
- $(this).find('td.filename div.thumbnail').css('background-image', "url(" + route + ")").css('display', 'none').css('display', 'inline');
- });
- } else {
- file = $(".files-fileList tr[data-file=\"" + this.jqSelEscape(filename) + "\"] > td.filename div.thumbnail");
- var parentTr = file.parents('tr:first');
- route = OCA.Files_External.StatusManager.Utils.getIconRoute(parentTr);
- parentTr.attr("data-icon", route);
- file.css('background-image', "url(" + route + ")").css('display', 'none').css('display', 'inline');
- }
- },
- /**
- * @param backend string with the name of the external storage backend
- * of the tr matching the folder name
- */
- getIconRoute: function (tr) {
- if (OCA.Theming) {
- var icon = OC.generateUrl('/apps/theming/img/core/filetypes/folder-external.svg?v=' + OCA.Theming.cacheBuster);
- } else {
- var icon = OC.imagePath('core', 'filetypes/folder-external');
- }
- var backend = null;
- if (tr instanceof $) {
- backend = tr.attr('data-external-backend');
- }
- switch (backend) {
- case 'windows_network_drive':
- icon = OC.imagePath('windows_network_drive', 'folder-windows');
- break;
- }
- return icon;
- },
- toggleLink: function (filename, active, action) {
- var link;
- if (filename instanceof $) {
- link = filename;
- } else {
- link = $(".files-fileList tr[data-file=\"" + this.jqSelEscape(filename) + "\"] > td.filename a.name");
- }
- if (active) {
- link.off('click.connectivity');
- OCA.Files.App.fileList.fileActions.display(link.parent(), true, OCA.Files.App.fileList);
- } else {
- link.find('.fileactions, .nametext .action').remove(); // from files/js/fileactions (display)
- link.off('click.connectivity');
- link.on('click.connectivity', function (e) {
- if (action && $.isFunction(action)) {
- action(filename);
- }
- e.preventDefault();
- return false;
- });
- }
- },
- isCorrectViewAndRootFolder: function () {
- // correct views = files & extstoragemounts
- if (OCA.Files.App.getActiveView() === 'files' || OCA.Files.App.getActiveView() === 'extstoragemounts') {
- return OCA.Files.App.currentFileList.getCurrentDirectory() === '/';
- }
- return false;
- },
- /* escape a selector expression for jQuery */
- jqSelEscape: function (expression) {
- if (expression) {
- return expression.replace(/[!"#$%&'()*+,.\/:;<=>?@\[\\\]^`{|}~]/g, '\\$&');
- }
- return null;
- },
- /* Copied from http://stackoverflow.com/questions/2631001/javascript-test-for-existence-of-nested-object-key */
- checkNested: function (cobj /*, level1, level2, ... levelN*/) {
- var args = Array.prototype.slice.call(arguments),
- obj = args.shift();
- for (var i = 0; i < args.length; i++) {
- if (!obj || !obj.hasOwnProperty(args[i])) {
- return false;
- }
- obj = obj[args[i]];
- }
- return true;
- }
- };
|