summaryrefslogtreecommitdiffstats
path: root/core/js/shareconfigmodel.js
blob: 846b2692ecbe98b3367a2e5b954de4c4aa623de3 (plain)
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
/*
 * Copyright (c) 2015
 *
 * This file is licensed under the Affero General Public License version 3
 * or later.
 *
 * See the COPYING-README file.
 *
 */

(function() {
	if (!OC.Share) {
		OC.Share = {};
		OC.Share.Types = {};
	}

	var ShareConfigModel = OC.Backbone.Model.extend({
		defaults: {
			publicUploadEnabled: false,
			enforcePasswordForPublicLink: oc_appconfig.core.enforcePasswordForPublicLink
		},

		/**
		 * @returns {boolean}
		 */
		areAvatarsEnabled: function() {
			return oc_config.enable_avatars === true;
		},

		/**
		 * @returns {boolean}
		 */
		isPublicUploadEnabled: function() {
			var publicUploadEnabled = $('#filestable').data('allow-public-upload');
			return !_.isUndefined(publicUploadEnabled);
		},

		/**
		 * @returns {boolean}
		 */
		isMailPublicNotificationEnabled: function() {
			return $('input:hidden[name=mailPublicNotificationEnabled]').val() === 'yes';
		},

		/**
		 * @returns {boolean}
		 */
		isDefaultExpireDateEnforced: function() {
			return oc_appconfig.core.defaultExpireDateEnforced === true;
		},

		/**
		 * @returns {boolean}
		 */
		isRemoteShareAllowed: function() {
			return oc_appconfig.core.remoteShareAllowed;
		},

		/**
		 * @returns {boolean}
		 */
		isResharingAllowed: function() {
			return oc_appconfig.core.resharingAllowed
		},

		/**
		 * @returns {boolean}
		 */
		isShareWithLinkAllowed: function() {
			return $('#allowShareWithLink').val() === 'yes';
		},

		/**
		 * @returns {string}
		 */
		getFederatedShareDocLink: function() {
			return oc_appconfig.core.federatedCloudShareDoc;
		},

		/**
		 * @returns {number}
		 */
		getDefaultExpireDate: function () {
			return oc_appconfig.core.defaultExpireDate;
		}
	});


	OC.Share.ShareConfigModel = ShareConfigModel;
})();