-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
48 lines (39 loc) · 1.48 KB
/
index.js
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
/* jshint node: true */
'use strict';
module.exports = {
name: 'ember-gdrive',
contentFor: function(type) {
if (type === 'head') {
return '<script type="text/javascript" src="https://apis.google.com/js/api.js"></script>';
}
},
config: function (environment, baseConfig) {
var config = {};
config.contentSecurityPolicyHeader = 'Content-Security-Policy';
config.contentSecurityPolicy = baseConfig.contentSecurityPolicy || {};
var requiredCSP = {
'default-src': 'accounts.google.com content.googleapis.com drive.google.com',
'script-src': '\'unsafe-eval\' \'unsafe-inline\' apis.google.com drive.google.com',
'connect-src': '\'unsafe-eval\' apis.google.com drive.google.com',
'img-src': 'data: ssl.gstatic.com csi.gstatic.com',
'style-src': '\'unsafe-inline\''
};
if (config.contentSecurityPolicy['default-src'] === '\'none\'') {
config.contentSecurityPolicy['default-src'] = '';
}
var mergeValues = function (item) {
if (!config.contentSecurityPolicy[propertyName]) {
config.contentSecurityPolicy[propertyName] = item;
} else if (config.contentSecurityPolicy[propertyName].indexOf(item) === -1) {
config.contentSecurityPolicy[propertyName] += ' ' + item;
}
};
for (var propertyName in requiredCSP) {
requiredCSP[propertyName].split(' ').forEach(mergeValues);
}
return config;
},
included: function (app) {
app.import('vendor/share-modal.css');
}
};