From ec59af3777f5ac88ee6ad44a502c0de5d35213e2 Mon Sep 17 00:00:00 2001 From: guillaume Date: Fri, 27 Jul 2018 18:08:09 +0200 Subject: Integration of matomo with env vars --- models/settings.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'models') diff --git a/models/settings.js b/models/settings.js index 308d867d..3b9b4eae 100644 --- a/models/settings.js +++ b/models/settings.js @@ -96,6 +96,14 @@ if (Meteor.isServer) { return (min + Math.round(rand * range)); } + function getEnvVar(name){ + const value = process.env[name]; + if (value){ + return value; + } + throw new Meteor.Error(['var-not-exist', `The environment variable ${name} does not exist`]); + } + function sendInvitationEmail (_id){ const icode = InvitationCodes.findOne(_id); const author = Users.findOne(Meteor.userId()); @@ -180,5 +188,14 @@ if (Meteor.isServer) { email: user.emails[0].address, }; }, + + getMatomoConf(){ + return { + address: getEnvVar('MATOMO_ADDRESS'), + siteId: getEnvVar('MATOMO_SITE_ID'), + doNotTrack: process.env.MATOMO_DO_NOT_TRACK || false, + withUserName: process.env.MATOMO_WITH_USERNAME || false, + }; + }, }); } -- cgit v1.2.3-1-g7c22