travis-web/config/environment.js
2016-03-21 14:02:18 +01:00

124 lines
3.9 KiB
JavaScript

/* jshint node: true */
module.exports = function(environment) {
var ENV = {
useV3API: false,
modulePrefix: 'travis',
environment: environment,
baseURL: '/',
locationType: 'auto',
defaultTitle: 'Travis CI',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
APP: {
// Here you can pass flags/options to your application instance
// when it is created
},
// defaults for running travis-web
apiEndpoint: 'https://api.travis-ci.org',
sourceEndpoint: 'https://github.com',
pusher: {
key: '5df8ac576dcccf4fd076',
host: 'ws.pusherapp.com'
},
pro: false,
enterprise: false,
endpoints: {},
intervals: { updateTimes: 1000 },
statusPageStatusUrl: 'https://pnpcptp8xh9k.statuspage.io/api/v2/status.json',
githubOrgsOauthAccessSettingsUrl: 'https://github.com/settings/connections/applications/f244293c729d5066cf27',
ajaxPolling: false
};
if (typeof process !== 'undefined') {
if (process.env.TRAVIS_PRO && !process.env.TRAVIS_ENTERPRISE) {
// set defaults for pro if it's used
// TODO: we have the same defaults also in ruby process,
// it would be nice to move it to one place. In theory
// we could just remove it from ruby process and rely
// on things set here, but I haven't tested that yet.
ENV.pro = true;
ENV.apiEndpoint = 'https://api.travis-ci.com';
ENV.pusher.key = '59236bc0716a551eab40';
ENV.pusher.channelPrefix = 'private-';
ENV.pagesEndpoint = 'https://billing.travis-ci.com';
ENV.billingEndpoint = 'https://billing.travis-ci.com';
ENV.endpoints = {
sshKey: true,
caches: true
};
ENV.userlike = true;
ENV.urls = {
legal: ENV.billingEndpoint + "/pages/legal",
imprint: ENV.billingEndpoint + "/pages/imprint",
security: ENV.billingEndpoint + "/pages/security",
terms: ENV.billingEndpoint + "/pages/terms"
};
}
if (process.env.API_ENDPOINT) {
ENV.apiEndpoint = process.env.API_ENDPOINT;
}
if (process.env.AUTH_ENDPOINT) {
ENV.authEndpoint = process.env.AUTH_ENDPOINT;
}
}
if (environment === 'development') {
// ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true;
// ENV.APP.LOG_TRANSITIONS = true;
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
// ENV.APP.LOG_VIEW_LOOKUPS = true;
ENV['ember-cli-mirage'] = {
enabled: false
};
}
if (environment === 'test') {
// Testem prefers this...
ENV.baseURL = '/';
ENV.locationType = 'none';
// keep test console output quieter
ENV.APP.LOG_ACTIVE_GENERATION = false;
ENV.APP.LOG_VIEW_LOOKUPS = false;
ENV.APP.rootElement = '#ember-testing';
ENV.apiEndpoint = '';
ENV.statusPageStatusUrl = null;
}
if (environment === 'production') {
ENV['ember-cli-mirage'] = {
enabled: false
};
}
// TODO: I insert values from ENV here, but in production
// this file is compiled and is not executed on runtime.
// We don't use CSP at the moment outside of development (ie. we don't
// set CSP headers), but it would be nice to do it and then we need to
// think about a better way to override it
ENV.contentSecurityPolicy = {
'default-src': "'none'",
'script-src': "'self'",
'font-src': "'self' https://fonts.googleapis.com/css https://fonts.gstatic.com",
'connect-src': "'self' " + ENV.apiEndpoint + " ws://ws.pusherapp.com wss://ws.pusherapp.com http://sockjs.pusher.com https://s3.amazonaws.com/archive.travis-ci.com/ https://s3.amazonaws.com/archive.travis-ci.org/",
'img-src': "'self' data: https://www.gravatar.com http://www.gravatar.com",
'style-src': "'self' https://fonts.googleapis.com",
'media-src': "'self'",
'frame-src': "'self' " + ENV.apiEndpoint
};
return ENV;
};