2015-08-13 00:38:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
* or later.
|
|
|
|
*
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-08-19 19:03:25 +00:00
|
|
|
/* global moment, oc_appconfig, oc_config */
|
2016-01-28 11:28:30 +00:00
|
|
|
|
2015-08-13 00:38:14 +00:00
|
|
|
(function() {
|
|
|
|
if (!OC.Share) {
|
|
|
|
OC.Share = {};
|
|
|
|
OC.Share.Types = {};
|
|
|
|
}
|
|
|
|
|
2015-09-15 08:27:33 +00:00
|
|
|
// FIXME: the config model should populate its own model attributes based on
|
|
|
|
// the old DOM-based config
|
2015-08-13 00:38:14 +00:00
|
|
|
var ShareConfigModel = OC.Backbone.Model.extend({
|
|
|
|
defaults: {
|
2015-09-03 13:53:17 +00:00
|
|
|
publicUploadEnabled: false,
|
2015-09-04 13:31:45 +00:00
|
|
|
enforcePasswordForPublicLink: oc_appconfig.core.enforcePasswordForPublicLink,
|
2016-10-14 07:58:24 +00:00
|
|
|
endorsePasswordForPublicLink: oc_appconfig.core.endorsePasswordForPublicLink,
|
2015-09-04 13:31:45 +00:00
|
|
|
isDefaultExpireDateEnforced: oc_appconfig.core.defaultExpireDateEnforced === true,
|
2015-09-12 12:21:14 +00:00
|
|
|
isDefaultExpireDateEnabled: oc_appconfig.core.defaultExpireDateEnabled === true,
|
|
|
|
isRemoteShareAllowed: oc_appconfig.core.remoteShareAllowed,
|
2016-10-31 10:52:00 +00:00
|
|
|
isMailShareAllowed: oc_appconfig.shareByMailEnabled !== undefined,
|
2015-09-04 13:31:45 +00:00
|
|
|
defaultExpireDate: oc_appconfig.core.defaultExpireDate,
|
2016-03-21 18:47:10 +00:00
|
|
|
isResharingAllowed: oc_appconfig.core.resharingAllowed,
|
|
|
|
allowGroupSharing: oc_appconfig.core.allowGroupSharing
|
2015-08-13 00:38:14 +00:00
|
|
|
},
|
|
|
|
|
2015-08-18 10:13:08 +00:00
|
|
|
/**
|
|
|
|
* @returns {boolean}
|
2017-02-13 23:49:05 +00:00
|
|
|
* @deprecated here for legacy reasons - will always return true
|
2015-08-18 10:13:08 +00:00
|
|
|
*/
|
|
|
|
areAvatarsEnabled: function() {
|
2017-02-13 23:49:05 +00:00
|
|
|
return true;
|
2015-08-18 10:13:08 +00:00
|
|
|
},
|
|
|
|
|
2015-08-13 00:38:14 +00:00
|
|
|
/**
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
isPublicUploadEnabled: function() {
|
|
|
|
var publicUploadEnabled = $('#filestable').data('allow-public-upload');
|
2015-09-13 22:43:11 +00:00
|
|
|
return publicUploadEnabled === 'yes';
|
2015-08-13 00:38:14 +00:00
|
|
|
},
|
|
|
|
|
2015-08-18 10:13:08 +00:00
|
|
|
/**
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
isShareWithLinkAllowed: function() {
|
|
|
|
return $('#allowShareWithLink').val() === 'yes';
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
getFederatedShareDocLink: function() {
|
|
|
|
return oc_appconfig.core.federatedCloudShareDoc;
|
2015-09-12 12:21:14 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultExpirationDateString: function () {
|
|
|
|
var expireDateString = '';
|
|
|
|
if (this.get('isDefaultExpireDateEnabled')) {
|
2016-01-28 11:28:30 +00:00
|
|
|
var date = moment.utc();
|
|
|
|
var expireAfterDays = this.get('defaultExpireDate');
|
|
|
|
date.add(expireAfterDays, 'days');
|
|
|
|
expireDateString = date.format('YYYY-MM-DD 00:00:00');
|
2015-09-12 12:21:14 +00:00
|
|
|
}
|
|
|
|
return expireDateString;
|
2015-08-13 00:38:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
OC.Share.ShareConfigModel = ShareConfigModel;
|
|
|
|
})();
|