aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js/public.js
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-04 18:42:51 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-09-06 03:38:47 +0200
commit11fdf4e2a7435a337db920d751583c83cdf74c91 (patch)
treec3104306915693e07d530f3d8cd7710e64bbf18a /apps/files_sharing/js/public.js
parent80033bde88a58724948bff8dbf6c0b683ac485eb (diff)
downloadnextcloud-server-11fdf4e2a7435a337db920d751583c83cdf74c91.tar.gz
nextcloud-server-11fdf4e2a7435a337db920d751583c83cdf74c91.zip
chore(files_sharing): Remove now unused legacy scripts
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files_sharing/js/public.js')
-rw-r--r--apps/files_sharing/js/public.js392
1 files changed, 0 insertions, 392 deletions
diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js
deleted file mode 100644
index 7b255c7de1e..00000000000
--- a/apps/files_sharing/js/public.js
+++ /dev/null
@@ -1,392 +0,0 @@
-/**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
-
-/* global FileActions, Files, FileList */
-/* global dragOptions, folderDropOptions */
-if (!OCA.Sharing) {
- OCA.Sharing = {};
-}
-if (!OCA.Files) {
- OCA.Files = {};
-}
-/**
- * @namespace
- */
-OCA.Sharing.PublicApp = {
- _initialized: false,
-
- /**
- * Initializes the public share app.
- *
- * @param $el container
- */
- initialize: function ($el) {
- var self = this;
- var fileActions;
- if (this._initialized) {
- return;
- }
- fileActions = new OCA.Files.FileActions();
- // default actions
- fileActions.registerDefaultActions();
- // regular actions
- fileActions.merge(OCA.Files.fileActions);
-
- // in case apps would decide to register file actions later,
- // replace the global object with this one
- OCA.Files.fileActions = fileActions;
-
- this._initialized = true;
- var urlParams = OC.Util.History.parseUrlQuery();
- this.initialDir = urlParams.path || '/';
-
- var token = $('#sharingToken').val();
- var hideDownload = $('#hideDownload').val();
-
- // Prevent all right-click options if hideDownload is enabled
- if (hideDownload === 'true') {
- window.oncontextmenu = function(event) {
- event.preventDefault();
- event.stopPropagation();
- return false;
- };
- }
-
- // file list mode ?
- if ($el.find('.files-filestable').length) {
- // Toggle for grid view
- this.$showGridView = $('input#showgridview');
- this.$showGridView.on('change', _.bind(this._onGridviewChange, this));
-
- var filesClient = new OC.Files.Client({
- host: OC.getHost(),
- port: OC.getPort(),
- // note: password not be required, the endpoint
- // will recognize previous validation from the session
- root: OC.getRootPath() + '/public.php/dav/files/' + token + '/',
- useHTTPS: OC.getProtocol() === 'https'
- });
-
- this.fileList = new OCA.Files.FileList(
- $el,
- {
- id: 'files.public',
- dragOptions: dragOptions,
- folderDropOptions: folderDropOptions,
- fileActions: fileActions,
- detailsViewEnabled: false,
- filesClient: filesClient,
- enableUpload: true,
- multiSelectMenu: [
- {
- name: 'copyMove',
- displayName: t('files', 'Move or copy'),
- iconClass: 'icon-external',
- },
- {
- name: 'download',
- displayName: t('files', 'Download'),
- iconClass: 'icon-download',
- },
- {
- name: 'delete',
- displayName: t('files', 'Delete'),
- iconClass: 'icon-delete',
- }
- ]
- }
- );
- if (hideDownload === 'true') {
- this.fileList._allowSelection = false;
- }
- this.files = OCA.Files.Files;
- this.files.initialize();
- // TODO: move to PublicFileList.initialize() once
- // the code was split into a separate class
- OC.Plugins.attach('OCA.Sharing.PublicFileList', this.fileList);
- }
-
- var mimetype = $('#mimetype').val();
- var mimetypeIcon = $('#mimetypeIcon').val();
- mimetypeIcon = mimetypeIcon.substring(0, mimetypeIcon.length - 3);
- mimetypeIcon = mimetypeIcon + 'svg';
-
- var previewSupported = $('#previewSupported').val();
-
- if (typeof FileActions !== 'undefined') {
- // Show file preview if previewer is available, images are already handled by the template
- if (mimetype.substr(0, mimetype.indexOf('/')) !== 'image' && $('.publicpreview').length === 0) {
- // Trigger default action if not download TODO
- var spec = FileActions.getDefaultFileAction(mimetype, 'file', OC.PERMISSION_READ);
- if (spec && spec.action) {
- spec.action($('#filename').val());
- }
- }
- }
-
- // dynamically load image previews
- var bottomMargin = 350;
- var previewWidth = $(window).width();
- var previewHeight = $(window).height() - bottomMargin;
- previewHeight = Math.max(200, previewHeight);
- var params = {
- x: Math.ceil(previewWidth * window.devicePixelRatio),
- y: Math.ceil(previewHeight * window.devicePixelRatio),
- a: 'true',
- file: encodeURIComponent(this.initialDir + $('#filename').val()),
- scalingup: 0
- };
-
- var imgcontainer = $('<img class="publicpreview" alt="">');
- if (hideDownload === 'false') {
- imgcontainer = $('<a href="' + $('#previewURL').val() + '" target="_blank"></a>').append(imgcontainer);
- }
- var img = imgcontainer.hasClass('publicpreview')? imgcontainer: imgcontainer.find('.publicpreview');
- img.css({
- 'max-width': previewWidth,
- 'max-height': previewHeight
- });
-
- if (OCA.Viewer && OCA.Viewer.mimetypes.includes(mimetype)
- && (mimetype.startsWith('image/') || mimetype.startsWith('video/') || mimetype.startsWith('audio'))) {
- OCA.Viewer.setRootElement('#imgframe')
- OCA.Viewer.open({ path: '/' })
- } else if (mimetype.substr(0, mimetype.indexOf('/')) === 'text' && window.btoa) {
- if (OC.appswebroots['files_texteditor'] !== undefined ||
- OC.appswebroots['text'] !== undefined) {
- // the text editor handles the previewing
- return;
- }
- // Undocumented Url to public WebDAV endpoint
- var url = parent.location.protocol + '//' + location.host + OC.linkTo('', 'public.php/dav/files/'+ token);
- $.ajax({
- url: url,
- headers: {
- Range: 'bytes=0-10000'
- }
- }).then(function (data) {
- self._showTextPreview(data, previewHeight);
- });
- } else if ((previewSupported === 'true' && mimetype.substr(0, mimetype.indexOf('/')) !== 'video') ||
- mimetype.substr(0, mimetype.indexOf('/')) === 'image' &&
- mimetype !== 'image/svg+xml') {
- img.attr('src', OC.generateUrl('/apps/files_sharing/publicpreview/' + token + '?' + OC.buildQueryString(params)));
- imgcontainer.appendTo('#imgframe');
- } else if (mimetype.substr(0, mimetype.indexOf('/')) !== 'video') {
- img.attr('src', mimetypeIcon);
- img.attr('width', 128);
- // "#imgframe" is either empty or it contains an audio preview that
- // the icon should appear before, so the container should be
- // prepended to the frame.
- imgcontainer.prependTo('#imgframe');
- } else if (previewSupported === 'true') {
- $('#imgframe > video').attr('poster', OC.generateUrl('/apps/files_sharing/publicpreview/' + token + '?' + OC.buildQueryString(params)));
- }
-
- if (this.fileList) {
- // TODO: move this to a separate PublicFileList class that extends OCA.Files.FileList (+ unit tests)
- this.fileList.getDownloadUrl = function (filename, dir, isDir) {
- var path = dir || this.getCurrentDirectory();
- if (_.isArray(filename)) {
- filename = JSON.stringify(filename);
- }
- var params = {
- path: path
- };
- if (filename) {
- params.files = filename;
- }
- return OC.generateUrl('/s/' + token + '/download') + '?' + OC.buildQueryString(params);
- };
-
- this.fileList._createRow = function(fileData) {
- var $tr = OCA.Files.FileList.prototype._createRow.apply(this, arguments);
- if (hideDownload === 'true') {
- this.fileActions.currentFile = $tr.find('td');
-
- // Remove the link. This means that files without a default action fail hard
- $tr.find('a.name').attr('href', '#');
-
- delete this.fileActions.actions.all.Download;
- }
- return $tr;
- };
-
- this.fileList.isSelectedDownloadable = function () {
- return hideDownload !== 'true';
- };
-
- this.fileList.getUploadUrl = function(fileName, dir) {
- if (_.isUndefined(dir)) {
- dir = this.getCurrentDirectory();
- }
-
- var pathSections = dir.split('/');
- if (!_.isUndefined(fileName)) {
- pathSections.push(fileName);
- }
- var encodedPath = '';
- _.each(pathSections, function(section) {
- if (section !== '') {
- encodedPath += '/' + encodeURIComponent(section);
- }
- });
- var base = '';
-
- if (!this._uploader.isXHRUpload()) {
- // also add auth in URL due to POST workaround
- base = OC.getProtocol() + '://' + token + '@' + OC.getHost() + (OC.getPort() ? ':' + OC.getPort() : '');
- }
-
- // encodedPath starts with a leading slash
- return base + OC.getRootPath() + '/public.php/dav/files/' + token + encodedPath;
- };
-
- this.fileList.getAjaxUrl = function (action, params) {
- params = params || {};
- params.t = token;
- return OC.filePath('files_sharing', 'ajax', action + '.php') + '?' + OC.buildQueryString(params);
- };
-
- this.fileList.linkTo = function (dir) {
- return OC.generateUrl('/s/' + token + '') + '?' + OC.buildQueryString({path: dir});
- };
-
- this.fileList.generatePreviewUrl = function (urlSpec) {
- urlSpec = urlSpec || {};
- if (!urlSpec.x) {
- urlSpec.x = this.$table.data('preview-x') || 250;
- }
- if (!urlSpec.y) {
- urlSpec.y = this.$table.data('preview-y') || 250;
- }
- urlSpec.x *= window.devicePixelRatio;
- urlSpec.y *= window.devicePixelRatio;
- urlSpec.x = Math.ceil(urlSpec.x);
- urlSpec.y = Math.ceil(urlSpec.y);
- var token = $('#dirToken').val();
- return OC.generateUrl('/apps/files_sharing/publicpreview/' + token + '?' + OC.buildQueryString(urlSpec));
- };
-
- this.fileList.updateEmptyContent = function() {
- this.$el.find('.emptycontent .uploadmessage').text(
- t('files_sharing', 'You can upload into this folder')
- );
- OCA.Files.FileList.prototype.updateEmptyContent.apply(this, arguments);
- };
-
- this.fileList._uploader.on('fileuploadadd', function(e, data) {
- if (!data.headers) {
- data.headers = {};
- }
-
- data.headers.Authorization = 'Basic ' + btoa(token + ':');
- });
-
- // do not allow sharing from the public page
- delete this.fileList.fileActions.actions.all.Share;
-
- this.fileList.changeDirectory(this.initialDir || '/', false, true);
-
- // URL history handling
- this.fileList.$el.on('changeDirectory', _.bind(this._onDirectoryChanged, this));
- OC.Util.History.addOnPopStateHandler(_.bind(this._onUrlChanged, this));
-
- $('#download').click(function (e) {
- e.preventDefault();
- OC.redirect(FileList.getDownloadUrl());
- });
-
- if (hideDownload === 'true') {
- this.fileList.$el.find('.summary').find('td:first-child').remove();
- }
- }
-
- self._bindShowTermsAction();
-
- // legacy
- window.FileList = this.fileList;
- },
-
- /**
- * Binds the click action for the "terms of service" action.
- * Shows an OC info dialog on click.
- *
- * @private
- */
- _bindShowTermsAction: function() {
- $('#show-terms-dialog').on('click', function() {
- OC.dialogs.info($('#disclaimerText').val(), t('files_sharing', 'Terms of service'));
- });
- },
-
- _showTextPreview: function (data, previewHeight) {
- var textDiv = $('<div></div>').addClass('text-preview');
- textDiv.text(data);
- textDiv.appendTo('#imgframe');
- var divHeight = textDiv.height();
- if (data.length > 999) {
- var ellipsis = $('<div></div>').addClass('ellipsis');
- ellipsis.html('(&#133;)');
- ellipsis.appendTo('#imgframe');
- }
- if (divHeight > previewHeight) {
- textDiv.height(previewHeight);
- }
- },
-
- /**
- * Toggle showing gridview by default or not
- *
- * @returns {undefined}
- */
- _onGridviewChange: function() {
- const isGridView = this.$showGridView.is(':checked');
- this.$showGridView.next('#view-toggle')
- .removeClass('icon-toggle-filelist icon-toggle-pictures')
- .addClass(isGridView ? 'icon-toggle-filelist' : 'icon-toggle-pictures')
- this.$showGridView.next('#view-toggle').attr(
- 'title',
- isGridView ? t('files', 'Show list view') : t('files', 'Show grid view'),
- )
-
- if (this.fileList) {
- this.fileList.setGridView(isGridView);
- }
- },
-
- _onDirectoryChanged: function (e) {
- OC.Util.History.pushState({
- // arghhhh, why is this not called "dir" !?
- path: e.dir
- });
- },
-
- _onUrlChanged: function (params) {
- this.fileList.changeDirectory(params.path || params.dir, false, true);
- },
-};
-
-window.addEventListener('DOMContentLoaded', function () {
- // FIXME: replace with OC.Plugins.register()
- if (window.TESTING) {
- return;
- }
-
- var App = OCA.Sharing.PublicApp;
- // defer app init, to give a chance to plugins to register file actions
- _.defer(function () {
- App.initialize($('#preview'));
- });
-
- if (window.Files) {
- // HACK: for oc-dialogs previews that depends on Files:
- Files.generatePreviewUrl = function (urlSpec) {
- return App.fileList.generatePreviewUrl(urlSpec);
- };
- }
-
-});