File size: 16,383 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 |
/* global Handlebars, Gallery */
(function ($, _, OC, t, Gallery) {
"use strict";
var TEMPLATE_ADDBUTTON = '<a href="#" class="button new"><img src="{{iconUrl}}" alt="{{addText}}"></img></a>';
/**
* Builds and updates the Gallery view
*
* @constructor
*/
var View = function () {
this.element = $('#gallery');
this.loadVisibleRows.loading = false;
this._setupUploader();
this.breadcrumb = new Gallery.Breadcrumb();
this.emptyContentElement = $('#emptycontent');
this.controlsElement = $('#controls');
};
View.prototype = {
element: null,
breadcrumb: null,
requestId: -1,
emptyContentElement: null,
controlsElement: null,
/**
* Removes all thumbnails from the view
*/
clear: function () {
this.loadVisibleRows.processing = false;
this.loadVisibleRows.loading = null;
// We want to keep all the events
this.element.children().detach();
this.showLoading();
},
/**
* Populates the view if there are images or albums to show
*
* @param {string} albumPath
* @param {string|undefined} errorMessage
*/
init: function (albumPath, errorMessage) {
// Only do it when the app is initialised
if (this.requestId === -1) {
this._initButtons();
this._blankUrl();
}
if ($.isEmptyObject(Gallery.imageMap)) {
Gallery.view.showEmptyFolder(albumPath, errorMessage);
} else {
this.viewAlbum(albumPath);
}
this._setBackgroundColour();
},
/**
* Starts the slideshow
*
* @param {string} path
* @param {string} albumPath
*/
startSlideshow: function (path, albumPath) {
var album = Gallery.albumMap[albumPath];
var images = album.images;
var startImage = Gallery.imageMap[path];
Gallery.slideShow(images, startImage, false);
},
/**
* Sets up the controls and starts loading the gallery rows
*
* @param {string|null} albumPath
*/
viewAlbum: function (albumPath) {
albumPath = albumPath || '';
if (!Gallery.albumMap[albumPath]) {
return;
}
this.clear();
if (albumPath !== Gallery.currentAlbum
|| (albumPath === Gallery.currentAlbum &&
Gallery.albumMap[albumPath].etag !== Gallery.currentEtag)) {
Gallery.currentAlbum = albumPath;
Gallery.currentEtag = Gallery.albumMap[albumPath].etag;
this._setupButtons(albumPath);
}
Gallery.albumMap[albumPath].viewedItems = 0;
Gallery.albumMap[albumPath].preloadOffset = 0;
// Each request has a unique ID, so that we can track which request a row belongs to
this.requestId = Math.random();
Gallery.albumMap[Gallery.currentAlbum].requestId = this.requestId;
// Loading rows without blocking the execution of the rest of the script
setTimeout(function () {
this.loadVisibleRows.activeIndex = 0;
this.loadVisibleRows(Gallery.albumMap[Gallery.currentAlbum]);
}.bind(this), 0);
},
/**
* Manages the sorting interface
*
* @param {string} sortType name or date
* @param {string} sortOrder asc or des
*/
sortControlsSetup: function (sortType, sortOrder) {
var reverseSortType = 'date';
if (sortType === 'date') {
reverseSortType = 'name';
}
this._setSortButton(sortType, sortOrder, true);
this._setSortButton(reverseSortType, 'asc', false); // default icon
},
/**
* Loads and displays gallery rows on screen
*
* view.loadVisibleRows.loading holds the Promise of a row
*
* @param {Album} album
*/
loadVisibleRows: function (album) {
var view = this;
// Wait for the previous request to be completed
if (this.loadVisibleRows.processing) {
return;
}
/**
* At this stage, there is no loading taking place, so we can look for new rows
*/
var scroll = $('#content-wrapper').scrollTop() + $(window).scrollTop();
// 2 windows worth of rows is the limit from which we need to start loading new rows.
// As we scroll down, it grows
var targetHeight = ($(window).height() * 2) + scroll;
// We throttle rows in order to try and not generate too many CSS resizing events at
// the same time
var showRows = _.throttle(function (album) {
// If we've reached the end of the album, we kill the loader
if (!(album.viewedItems < album.subAlbums.length + album.images.length)) {
view.loadVisibleRows.processing = false;
view.loadVisibleRows.loading = null;
return;
}
// Prevents creating rows which are no longer required. I.e when changing album
if (view.requestId !== album.requestId) {
return;
}
// We can now safely create a new row
var row = album.getRow($(window).width());
var rowDom = row.getDom();
view.element.append(rowDom);
return album.fillNextRow(row).then(function () {
if (album.viewedItems < album.subAlbums.length + album.images.length &&
view.element.height() < targetHeight) {
return showRows(album);
}
// No more rows to load at the moment
view.loadVisibleRows.processing = false;
view.loadVisibleRows.loading = null;
}, function () {
// Something went wrong, so kill the loader
view.loadVisibleRows.processing = false;
view.loadVisibleRows.loading = null;
});
}, 100);
if (this.element.height() < targetHeight) {
this._showNormal();
this.loadVisibleRows.processing = true;
album.requestId = view.requestId;
this.loadVisibleRows.loading = showRows(album);
}
},
/**
* Shows an empty gallery message
*
* @param {string} albumPath
* @param {string|null} errorMessage
*/
showEmptyFolder: function (albumPath, errorMessage) {
var message = '<div class="icon-gallery"></div>';
var uploadAllowed = true;
this.element.children().detach();
this.removeLoading();
if (!_.isUndefined(errorMessage) && errorMessage !== null) {
message += '<h2>' + t('gallery',
'Album cannot be shown') + '</h2>';
// BUG: CWE-79 Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
// message += '<p>' + errorMessage + '</p>';
// FIXED:
message += '<p>' + escapeHTML(errorMessage) + '</p>';
uploadAllowed = false;
} else {
message += '<h2>' + t('gallery',
'No media files found') + '</h2>';
// We can't upload yet on the public side
if (Gallery.token) {
message += '<p>' + t('gallery',
'Upload pictures in the files app to display them here') + '</p>';
} else {
message += '<p>' + t('gallery',
'Upload new files via drag and drop or by using the [+] button above') +
'</p>';
}
}
this.emptyContentElement.html(message);
this.emptyContentElement.removeClass('hidden');
this._hideButtons(uploadAllowed);
Gallery.currentAlbum = albumPath;
var availableWidth = $(window).width() - Gallery.buttonsWidth;
this.breadcrumb.init(albumPath, availableWidth);
Gallery.config.albumDesign = null;
},
/**
* Dims the controls bar when retrieving new content. Matches the effect in Files
*/
dimControls: function () {
// Use the existing mask if its already there
var $mask = this.controlsElement.find('.mask');
if ($mask.exists()) {
return;
}
$mask = $('<div class="mask transparent"></div>');
this.controlsElement.append($mask);
$mask.removeClass('transparent');
},
/**
* Shows the infamous loading spinner
*/
showLoading: function () {
this.emptyContentElement.addClass('hidden');
this.controlsElement.removeClass('hidden');
$('#content').addClass('icon-loading');
this.dimControls();
},
/**
* Removes the spinner in the main area and restore normal visibility of the controls bar
*/
removeLoading: function () {
$('#content').removeClass('icon-loading');
this.controlsElement.find('.mask').remove();
},
/**
* Shows thumbnails
*/
_showNormal: function () {
this.emptyContentElement.addClass('hidden');
this.controlsElement.removeClass('hidden');
this.removeLoading();
},
/**
* Sets up our custom handlers for folder uploading operations
*
* We only want it to be called for that specific case as all other file uploading
* operations will call Files.highlightFiles
*
* @see OC.Upload.init/file_upload_param.done()
*
* @private
*/
_setupUploader: function () {
$('#file_upload_start').on('fileuploaddone', function (e, data) {
if (data.files[0] === data.originalFiles[data.originalFiles.length - 1]
&& data.files[0].relativePath) {
//Ask for a refresh of the photowall
Gallery.getFiles(Gallery.currentAlbum).done(function () {
Gallery.view.init(Gallery.currentAlbum);
});
}
});
// Since 9.0
if (OC.Upload) {
OC.Upload._isReceivedSharedFile = function (file) {
var path = file.name;
var sharedWith = false;
if (Gallery.currentAlbum !== '' && Gallery.currentAlbum !== '/') {
path = Gallery.currentAlbum + '/' + path;
}
if (Gallery.imageMap[path] && Gallery.imageMap[path].sharedWithUser) {
sharedWith = true;
}
return sharedWith;
};
}
},
/**
* Adds all the click handlers to buttons the first time they appear in the interface
*
* @private
*/
_initButtons: function () {
this.element.on("contextmenu", function(e) { e.preventDefault(); });
$('#filelist-button').click(Gallery.switchToFilesView);
$('#download').click(Gallery.download);
$('#share-button').click(Gallery.share);
Gallery.infoBox = new Gallery.InfoBox();
$('#album-info-button').click(Gallery.showInfo);
$('#sort-name-button').click(Gallery.sorter);
$('#sort-date-button').click(Gallery.sorter);
$('#save #save-button').click(Gallery.showSaveForm);
$('.save-form').submit(Gallery.saveForm);
this._renderNewButton();
// Trigger cancelling of file upload
$('#uploadprogresswrapper .stop').on('click', function () {
OC.Upload.cancelUploads();
});
this.requestId = Math.random();
},
/**
* Sets up all the buttons of the interface and the breadcrumbs
*
* @param {string} albumPath
* @private
*/
_setupButtons: function (albumPath) {
this._shareButtonSetup(albumPath);
this._infoButtonSetup();
var availableWidth = $(window).width() - Gallery.buttonsWidth;
this.breadcrumb.init(albumPath, availableWidth);
var album = Gallery.albumMap[albumPath];
var sum = album.images.length + album.subAlbums.length;
//If sum of the number of images and subalbums exceeds 1 then show the buttons.
if(sum > 1)
{
$('#sort-name-button').show();
$('#sort-date-button').show();
}
else
{
$('#sort-name-button').hide();
$('#sort-date-button').hide();
}
var currentSort = Gallery.config.albumSorting;
this.sortControlsSetup(currentSort.type, currentSort.order);
Gallery.albumMap[Gallery.currentAlbum].images.sort(
Gallery.utility.sortBy(currentSort.type,
currentSort.order));
Gallery.albumMap[Gallery.currentAlbum].subAlbums.sort(Gallery.utility.sortBy('name',
currentSort.albumOrder));
$('#save-button').show();
$('#download').show();
$('a.button.new').show();
},
/**
* Hide buttons in the controls bar
*
* @param uploadAllowed
*/
_hideButtons: function (uploadAllowed) {
$('#album-info-button').hide();
$('#share-button').hide();
$('#sort-name-button').hide();
$('#sort-date-button').hide();
$('#save-button').hide();
$('#download').hide();
if (!uploadAllowed) {
$('a.button.new').hide();
}
},
/**
* Shows or hides the share button depending on if we're in a public gallery or not
*
* @param {string} albumPath
* @private
*/
_shareButtonSetup: function (albumPath) {
var shareButton = $('#share-button');
if (albumPath === '' || Gallery.token) {
shareButton.hide();
} else {
shareButton.show();
}
},
/**
* Shows or hides the info button based on the information we've received from the server
*
* @private
*/
_infoButtonSetup: function () {
var infoButton = $('#album-info-button');
infoButton.find('span').hide();
var infoContentContainer = $('.album-info-container');
infoContentContainer.slideUp();
infoContentContainer.css('max-height',
$(window).height() - Gallery.browserToolbarHeight);
var albumInfo = Gallery.config.albumInfo;
if (Gallery.config.albumError) {
infoButton.hide();
var text = '<strong>' + t('gallery', 'Configuration error') + '</strong></br>' +
Gallery.config.albumError.message + '</br></br>';
Gallery.utility.showHtmlNotification(text, 7);
} else if ($.isEmptyObject(albumInfo)) {
infoButton.hide();
} else {
infoButton.show();
if (albumInfo.inherit !== 'yes' || albumInfo.level === 0) {
infoButton.find('span').delay(1000).slideDown();
}
}
},
/**
* Sets the background colour of the photowall
*
* @private
*/
_setBackgroundColour: function () {
var wrapper = $('#content-wrapper');
var albumDesign = Gallery.config.albumDesign;
if (!$.isEmptyObject(albumDesign) && albumDesign.background) {
wrapper.css('background-color', albumDesign.background);
} else {
wrapper.css('background-color', '#fff');
}
},
/**
* Picks the image which matches the sort order
*
* @param {string} sortType name or date
* @param {string} sortOrder asc or des
* @param {boolean} active determines if we're setting up the active sort button
* @private
*/
_setSortButton: function (sortType, sortOrder, active) {
var button = $('#sort-' + sortType + '-button');
// Removing all the classes which control the image in the button
button.removeClass('active-button');
button.find('img').removeClass('front');
button.find('img').removeClass('back');
// We need to determine the reverse order in order to send that image to the back
var reverseSortOrder = 'des';
if (sortOrder === 'des') {
reverseSortOrder = 'asc';
}
// We assign the proper order to the button images
button.find('img.' + sortOrder).addClass('front');
button.find('img.' + reverseSortOrder).addClass('back');
// The active button needs a hover action for the flip effect
if (active) {
button.addClass('active-button');
if (button.is(":hover")) {
button.removeClass('hover');
}
// We can't use a toggle here
button.hover(function () {
$(this).addClass('hover');
},
function () {
$(this).removeClass('hover');
});
}
},
/**
* If no url is entered then do not show the error box.
*
*/
_blankUrl: function() {
$('#remote_address').on("change keyup paste", function() {
if ($(this).val() === '') {
$('#save-button-confirm').prop('disabled', true);
} else {
$('#save-button-confirm').prop('disabled', false);
}
});
},
/**
* Creates the [+] button allowing users who can't drag and drop to upload files
*
* @see core/apps/files/js/filelist.js
* @private
*/
_renderNewButton: function () {
// if no actions container exist, skip
var $actionsContainer = $('.actions');
if (!$actionsContainer.length) {
return;
}
if (!this._addButtonTemplate) {
this._addButtonTemplate = Handlebars.compile(TEMPLATE_ADDBUTTON);
}
var $newButton = $(this._addButtonTemplate({
addText: t('gallery', 'New'),
iconUrl: OC.imagePath('core', 'actions/add')
}));
$actionsContainer.prepend($newButton);
$newButton.tooltip({'placement': 'bottom'});
$newButton.click(_.bind(this._onClickNewButton, this));
this._newButton = $newButton;
},
/**
* Creates the click handler for the [+] button
* @param event
* @returns {boolean}
*
* @see core/apps/files/js/filelist.js
* @private
*/
_onClickNewButton: function (event) {
var $target = $(event.target);
if (!$target.hasClass('.button')) {
$target = $target.closest('.button');
}
this._newButton.tooltip('hide');
event.preventDefault();
if ($target.hasClass('disabled')) {
return false;
}
if (!this._newFileMenu) {
this._newFileMenu = new Gallery.NewFileMenu();
$('body').append(this._newFileMenu.$el);
}
this._newFileMenu.showAt($target);
if (Gallery.currentAlbum === '') {
$('.menuitem[data-action="hideAlbum"]').parent().hide();
}
return false;
}
};
Gallery.View = View;
})(jQuery, _, OC, t, Gallery);
|